:root {
  --color-blue: #5d96ef;
  --color-blue-deep: #3169b7;
  --color-orange: #f08b20;
  --color-orange-deep: #d87415;
  --color-text: #ffffff;
  --color-dark: #1f1f1f;
  --color-muted: #4b4b4b;
  --color-gray-bg: #efefef;
  --color-footer: #23211f;
  --color-outline: rgba(255,255,255,0.75);
  --shadow-soft: 0 14px 28px rgba(28, 50, 88, 0.14);
  --shadow-card: 0 12px 35px rgba(0, 0, 0, 0.12);
  --radius-xl: 28px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1680px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #17202b;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}

.narrow-container {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  padding-top: 22px;
}

.nav-shell {
  min-height: 62px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  padding: 10px 18px 10px 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 44px;
  max-width: 170px;
  object-fit: contain;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.76rem;
  font-weight: 600;
  color: #20538a;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--color-orange);
}

.login-button {
  flex: 0 0 auto;
  min-width: 104px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-blue) 0%, #7faaf3 40%, #f7a234 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f4f4f4;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.menu-toggle span {
  width: 18px;
  height: 2.5px;
  border-radius: 999px;
  background: #4b5f68;
}

.hero-section {
  position: relative;
  min-height: 720px;
  padding: 120px 0 48px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-color: #4f6172;
  background-image: url('assets/hero-bg.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(9, 26, 47, 0.72) 0%, rgba(14, 36, 53, 0.62) 32%, rgba(25, 46, 67, 0.36) 58%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: 24px;
  min-height: 540px;
}

.hero-copy {
  color: var(--color-text);
  max-width: 650px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.55rem, 3.35vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-shadow: -1px -1px 0 rgba(255,255,255,0.65), 1px -1px 0 rgba(255,255,255,0.65), -1px 1px 0 rgba(255,255,255,0.65), 1px 1px 0 rgba(255,255,255,0.65), 0 4px 10px rgba(0, 0, 0, 0.18);
}

/* Dua baris judul dikunci seperti frame Figma desktop. */
.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-kicker {
  display: block;
  margin-bottom: 10px;
  color: #71a7fb;
  font-weight: 800;
}

.hero-copy p {
  margin: 0;
  max-width: 610px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.18rem;
  line-height: 1.35;
}

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

.pill-button {
  min-width: 170px;
  min-height: 46px;
  padding: 11px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(8, 25, 43, 0.18);
}

.pill-button.blue {
  background: linear-gradient(90deg, #6ca2fa 0%, #5c8de1 100%);
}

.pill-button.orange {
  background: linear-gradient(90deg, #ef8a2a 0%, #db7c1c 100%);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  width: min(560px, 100%);
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.18));
}

.guide-section {
  position: relative;
  padding: 42px 0 64px;
  background: linear-gradient(90deg, rgba(95, 150, 239, 0.95) 0%, rgba(121, 140, 211, 0.6) 50%, rgba(240, 139, 32, 0.92) 100%);
  overflow: hidden;
}

.guide-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0 100%, transparent 22px, rgba(255,255,255,0.18) 23px, rgba(255,255,255,0.18) 25px, transparent 26px),
    radial-gradient(circle at 25px 100%, transparent 22px, rgba(255,255,255,0.18) 23px, rgba(255,255,255,0.18) 25px, transparent 26px);
  background-size: 50px 26px;
  background-position: 0 0, 25px 13px;
  opacity: 0.9;
  pointer-events: none;
}

.section-title {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  font-weight: 800;
  line-height: 1.1;
}

.section-title.white {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.section-title.blue-text {
  color: var(--color-blue);
}

.guide-box {
  position: relative;
  z-index: 1;
  min-height: 470px;
  border-radius: 22px;
  background: #efefef;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.guide-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: #7a7a7a;
  font-size: 1rem;
  padding: 24px;
}

.category-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-gray-bg);
  padding: 58px 0 46px;
}

/* Ornamen background sangat tipis supaya section hidup tanpa mengganggu Figma. */
.category-section::before,
.category-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  opacity: .42;
}
.category-section::before {
  width: 380px;
  height: 380px;
  left: -250px;
  top: 14%;
  background: radial-gradient(circle, rgba(93,150,239,.16), rgba(93,150,239,0) 70%);
  animation: categoryAmbientLeft 10s ease-in-out infinite alternate;
}
.category-section::after {
  width: 430px;
  height: 430px;
  right: -270px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(240,139,32,.13), rgba(240,139,32,0) 70%);
  animation: categoryAmbientRight 12s ease-in-out infinite alternate;
}

.category-container {
  width: min(1250px, calc(100% - 44px));
}

.category-section .section-title {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}
.category-section .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: min(160px, 42%);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--color-blue), var(--color-orange), transparent);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform .75s cubic-bezier(.2,.8,.2,1) .15s, opacity .4s ease .15s;
}
.category-section .section-title.is-visible::after {
  transform: translateX(-50%) scaleX(1);
  opacity: .85;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(28px, 5vw, 74px);
  row-gap: 44px;
  align-items: start;
  justify-items: center;
}

.category-card {
  width: 100%;
  max-width: 350px;
  min-width: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
}

/*
  FIX UTAMA:
  frame lingkaran memiliki ukuran pasti dan overflow:hidden.
  Jadi ilustrasi tinggi seperti Fisika tidak dapat keluar dan menimpa baris bawah.
*/
.category-circle {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: clamp(190px, 15.2vw, 236px);
  max-width: none;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  border-radius: 50%;
  padding: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--color-orange) 0%, #c29a57 43%, #3d9bd0 100%);
  background-size: 100% 180%;
  background-position: center top;
  box-shadow: 0 10px 22px rgba(48, 91, 142, .08);
  transition: transform .32s cubic-bezier(.2,.8,.2,1), box-shadow .32s ease, filter .32s ease;
  animation: categoryRingFlow 5.8s ease-in-out infinite alternate;
}

.category-circle::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 0;
  border-radius: 50%;
  background: #f8f8f8;
  box-shadow: inset 0 0 0 1px rgba(28,63,100,.025);
}

.category-circle img {
  position: absolute;
  z-index: 1;
  inset: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  background: transparent;
  transform-origin: center bottom;
  will-change: transform;
  animation: categoryCharacterFloat 4.4s ease-in-out infinite;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), filter .32s ease;
}
.category-card:nth-child(2) .category-circle img,
.category-card:nth-child(5) .category-circle img { animation-duration: 4.9s; animation-delay: -.9s; }
.category-card:nth-child(3) .category-circle img,
.category-card:nth-child(6) .category-circle img { animation-duration: 5.2s; animation-delay: -1.6s; }

/* Pantulan cahaya kecil di dalam lingkaran. */
.category-circle::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: -46%;
  top: 2%;
  width: 42%;
  height: 96%;
  border-radius: 50%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent);
  opacity: 0;
  pointer-events: none;
  animation: categoryCircleShine 5.8s ease-in-out infinite;
}

.category-label {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(88%, 280px);
  margin-top: 15px;
  min-height: 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6ea4f7 0%, #5c8fe7 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.15;
  box-shadow: 0 8px 20px rgba(42, 104, 194, 0.15);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.category-label::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -48%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-24deg);
  pointer-events: none;
  animation: categoryLabelShine 5s ease-in-out infinite;
}
.category-label.multi-line {
  min-height: 56px;
}

.category-card:focus-visible {
  outline: none;
}
.category-card:focus-visible .category-circle {
  outline: 4px solid rgba(93,150,239,.30);
  outline-offset: 6px;
}

@media (hover: hover) and (pointer: fine) {
  .category-card:hover .category-circle {
    transform: translateY(-9px) scale(1.025);
    box-shadow: 0 22px 40px rgba(48,91,142,.20);
    filter: saturate(1.06);
  }
  .category-card:hover .category-circle img {
    animation-play-state: paused;
    transform: translate3d(0,-5px,0) scale(1.045) rotate(.7deg);
    filter: drop-shadow(0 10px 8px rgba(35,76,120,.12));
  }
  .category-card:hover .category-label {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 27px rgba(42,104,194,.22);
  }
}

@keyframes categoryRingFlow {
  from { background-position: center top; }
  to { background-position: center bottom; }
}
@keyframes categoryCharacterFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0,-5px,0) scale(1.014); }
}
@keyframes categoryCircleShine {
  0%, 55% { left: -46%; opacity: 0; }
  64% { opacity: .32; }
  82% { left: 112%; opacity: .18; }
  100% { left: 112%; opacity: 0; }
}
@keyframes categoryLabelShine {
  0%, 62% { left: -48%; opacity: 0; }
  69% { opacity: 1; }
  84% { left: 118%; opacity: .75; }
  100% { left: 118%; opacity: 0; }
}
@keyframes categoryAmbientLeft {
  from { transform: translate3d(0,-20px,0) scale(.95); }
  to { transform: translate3d(85px,42px,0) scale(1.12); }
}
@keyframes categoryAmbientRight {
  from { transform: translate3d(0,30px,0) scale(1.08); }
  to { transform: translate3d(-88px,-38px,0) scale(.96); }
}

.timeline-section {
  background: var(--color-gray-bg);
  padding: 8px 0 56px;
}

.timeline-container {
  width: min(1040px, calc(100% - 44px));
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 54px;
  align-items: start;
}

.timeline-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 14px;
}

.timeline-number {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
}

.blue-fill {
  background: var(--color-blue);
}

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

.timeline-copy h3 {
  margin: 0 0 2px;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 700;
  color: #225391;
}

.timeline-copy p {
  margin: 0;
  font-size: 1rem;
  color: #3a4d63;
}

.highlight-section {
  position: relative;
  overflow: hidden;
  padding: 44px 0 48px;
  min-height: 370px;
  background: #b69384;
}

.highlight-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(218, 188, 180, 0.42) 0%, rgba(176, 124, 108, 0.24) 100%),
    url('assets/video-section-bg.jpg') center 48% / cover no-repeat;
  opacity: 1;
  transform: scale(1.02);
}

.highlight-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.6fr);
  align-items: center;
  gap: clamp(34px, 4vw, 64px);
  min-height: 278px;
}

.video-card {
  position: relative;
  width: 100%;
  height: clamp(255px, 18vw, 305px);
  border-radius: 17px;
  overflow: hidden;
  border: 2px solid var(--color-orange);
  box-shadow: 0 16px 38px rgba(54, 40, 35, 0.22);
  background: rgba(24, 33, 48, 0.58);
  transition: transform .35s ease, box-shadow .35s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(54, 40, 35, 0.28);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 68px;
  border-radius: 18px;
  background: #f06443;
  color: #ffffff;
  font-size: 2.2rem;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.07);
  box-shadow: 0 12px 26px rgba(0,0,0,.24);
}

.highlight-copy {
  color: #ffffff;
  padding: 4px 0;
  min-width: 0;
}

.highlight-copy h2 {
  margin: 0 0 20px;
  max-width: 860px;
  font-size: clamp(2.35rem, 3.4vw, 3.85rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  background: linear-gradient(90deg, #5c9df4 0%, #79aef8 26%, #ffffff 49%, #ef9b45 72%, #ec7e2c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.92);
  filter: drop-shadow(0 2px 2px rgba(30, 56, 88, .16));
}

.highlight-copy p {
  margin: 0;
  max-width: 860px;
  font-size: clamp(.98rem, 1.22vw, 1.12rem);
  line-height: 1.58;
  color: rgba(255,255,255,.97);
  text-align: justify;
  text-shadow: 0 1px 4px rgba(0,0,0,.16);
}

.site-footer {
  background: var(--color-footer);
  color: #ffffff;
  padding: 38px 0 44px;
  min-height: 245px;
  display: flex;
  align-items: center;
}

.footer-grid {
  width: min(1320px, calc(100% - 72px));
  display: grid;
  grid-template-columns: minmax(300px, 1.55fr) minmax(115px, .52fr) minmax(185px, .68fr) minmax(235px, .86fr);
  gap: clamp(28px, 4vw, 66px);
  align-items: center;
}

.footer-brand-block {
  align-self: center;
}

.footer-logo {
  width: min(330px, 100%);
}

.footer-column {
  align-self: center;
}

.footer-column h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
}

.footer-column p,
.footer-column a {
  display: block;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  line-height: 1.35;
}

.footer-column a {
  width: fit-content;
  transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover {
  color: #79aaf5;
  transform: translateX(3px);
}

.social-list {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-list a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5ff;
  color: #5a8ae5;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin: 0;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.social-list a:hover {
  transform: translateY(-3px) scale(1.05);
  background: #ffffff;
  color: #ef8a25;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  background: #ededed;
  border-radius: 0 0 24px 24px;
  padding: 38px 42px 32px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.22);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #6a6a6a;
  font-size: 2rem;
  line-height: 1;
}

.modal-image-wrap {
  width: min(790px, 100%);
  margin: 0 auto 18px;
  border-radius: 12px;
  overflow: hidden;
}

.modal-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f8f8f8;
}

.modal-panel h2 {
  margin: 0 0 14px;
  text-align: center;
  color: var(--color-blue);
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 700;
}

.modal-content {
  color: #303030;
  font-size: 1rem;
  line-height: 1.42;
}

.modal-content .topic-block {
  margin-bottom: 10px;
}

.modal-content h3 {
  margin: 0 0 2px;
  color: var(--color-orange);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.modal-content p {
  margin: 0;
}

.modal-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px auto 0;
  min-width: 126px;
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 24px;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(90deg, #6fa5f7 0%, #618fdf 40%, #f3a032 100%);
}


/* ==============================
   FALLBACK ASSET
   Jika gambar belum dimasukkan ke folder assets, browser tidak akan
   menampilkan ikon gambar rusak / alt text yang mengganggu layout.
   ============================== */
.asset-missing-image {
  display: none !important;
}

.brand.asset-missing,
.hero-visual.asset-missing,
.category-circle.asset-missing,
.video-card.asset-missing,
.modal-image-wrap.asset-missing,
.footer-brand-block.asset-missing {
  position: relative;
}

.brand.asset-missing::after {
  content: "ISKIA";
  color: #245a89;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-visual.asset-missing::after,
.video-card.asset-missing::after,
.modal-image-wrap.asset-missing::after {
  content: attr(data-missing-asset);
  width: 100%;
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}

.modal-image-wrap.asset-missing::after {
  min-height: 260px;
  border-color: #c6c6c6;
  color: #777;
  background: #f7f7f7;
}

.category-circle.asset-missing::after {
  content: attr(data-missing-asset);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  color: #7c8794;
  background: #f8f8f8;
  font-size: 0.72rem;
  line-height: 1.3;
}

.video-card.asset-missing::after {
  min-height: 100%;
  border: none;
  color: rgba(255,255,255,0.9);
  background: rgba(32, 46, 60, 0.5);
}

.footer-brand-block.asset-missing::after {
  content: "ISKIA";
  color: #fff;
  font-weight: 800;
  font-size: 2rem;
}

@media (max-width: 1080px) {
  .hero-section {
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual img {
    width: min(420px, 72vw);
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 40px;
  }

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

  .nav-column {
    grid-column: 2;
  }

  .social-column {
    grid-column: 3;
  }

  .contact-column {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 860px) {
  .container,
  .narrow-container,
  .category-container,
  .timeline-container {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    padding-top: 12px;
  }

  .nav-shell {
    min-height: 58px;
    padding: 8px 10px 8px 14px;
  }

  .brand img {
    width: auto;
    height: 36px;
    max-width: 115px;
  }

  .login-button,
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links.is-open {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 30px rgba(0,0,0,0.15);
  }

  .nav-links.is-open a {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.9rem;
  }

  .nav-links.is-open a:last-child {
    border-bottom: none;
  }

  .hero-section {
    padding-top: 88px;
  }

  .hero-bg {
    background-position: center top;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(16, 29, 45, 0.42) 0%, rgba(16, 29, 45, 0.58) 36%, rgba(16, 29, 45, 0.72) 100%);
  }

  .hero-grid {
    gap: 14px;
    min-height: auto;
  }

  .hero-visual {
    order: -1;
    margin-top: 8px;
  }

  .hero-visual img {
    width: min(250px, 70vw);
  }

  .hero-copy h1 {
    font-size: 2.36rem;
    text-shadow: -1px -1px 0 rgba(255,255,255,0.4), 1px -1px 0 rgba(255,255,255,0.4), -1px 1px 0 rgba(255,255,255,0.4), 1px 1px 0 rgba(255,255,255,0.4), 0 2px 8px rgba(0,0,0,0.18);
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-kicker {
    margin-bottom: 8px;
  }

  .hero-copy p {
    font-size: 0.82rem;
    max-width: 330px;
    line-height: 1.38;
  }

  .hero-actions {
    margin-top: 14px;
    gap: 8px;
  }

  .pill-button {
    min-width: auto;
    min-height: 30px;
    padding: 7px 14px;
    font-size: 0.68rem;
  }

  .guide-section {
    padding: 34px 0 44px;
  }

  .section-title {
    font-size: 1.85rem;
    margin-bottom: 16px;
  }

  .guide-box {
    min-height: 230px;
    border-radius: 20px;
  }

  .category-section {
    padding: 40px 0 26px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .category-card {
    max-width: 330px;
  }

  .category-circle {
    width: min(58vw, 196px);
  }

  .category-circle img {
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
  }

  .category-label {
    width: min(310px, 92%);
    font-size: 0.9rem;
    min-height: 36px;
    margin-top: 14px;
  }

  .category-label.multi-line {
    min-height: 46px;
  }

  .timeline-section {
    padding: 0 0 34px;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .desktop-only-column {
    display: none;
  }

  .timeline-column {
    gap: 12px;
  }

  .timeline-item {
    grid-template-columns: 48px 1fr;
    gap: 10px;
  }

  .timeline-number {
    width: 44px;
    height: 44px;
    font-size: 1.65rem;
  }

  .timeline-copy h3 {
    font-size: 0.98rem;
  }

  .timeline-copy p {
    font-size: 0.86rem;
  }

  .highlight-section {
    padding-top: 14px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 12px;
  }

  .video-card {
    height: 150px;
  }

  .play-button {
    width: 68px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.6rem;
  }

  .highlight-copy {
    text-align: left;
  }

  .highlight-copy h2 {
    font-size: 1.9rem;
    margin-bottom: 8px;
  }

  .highlight-copy p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .site-footer {
    padding: 18px 0 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-brand-block {
    order: 1;
  }

  .order-mobile-2 {
    order: 2;
  }

  .order-mobile-3 {
    order: 3;
  }

  .order-mobile-4 {
    order: 4;
  }

  .footer-logo {
    width: 168px;
  }

  .footer-column h3 {
    font-size: 1rem;
  }

  .footer-column p,
  .footer-column a {
    font-size: 0.9rem;
  }

  .modal {
    align-items: flex-start;
    padding: 0;
  }

  .modal-panel {
    width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    border-radius: 0;
    padding: 20px 14px 28px;
  }

  .modal-close {
    right: 10px;
    top: 8px;
  }

  .modal-image-wrap {
    margin-top: 22px;
    margin-bottom: 14px;
  }

  .modal-image-wrap img {
    aspect-ratio: 4 / 3;
  }

  .modal-panel h2 {
    font-size: 1.72rem;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .modal-content {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .modal-content h3 {
    font-size: 0.96rem;
  }

  .modal-button {
    min-width: 112px;
    min-height: 38px;
    font-size: 0.95rem;
  }
}

/* =========================================================
   V4 — DESKTOP GUTTERS + PREMIUM INTERACTIVE MOTION
   ========================================================= */

:root {
  --page-gutter: clamp(34px, 4.6vw, 78px);
  --container: 1540px;
  --ease-premium: cubic-bezier(.2,.8,.2,1);
}

/* Beri ruang aman kiri-kanan pada desktop agar konten tidak mepet viewport. */
.container,
.narrow-container,
.category-container,
.timeline-container {
  width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
}

.narrow-container {
  max-width: 1120px;
}

.category-container {
  max-width: 1250px;
}

.timeline-container {
  max-width: 1040px;
}

.site-header {
  padding-top: clamp(18px, 1.8vw, 28px);
  pointer-events: none;
}

.site-header .container,
.nav-shell,
.nav-shell * {
  pointer-events: auto;
}

.nav-shell {
  min-height: 70px;
  padding: 10px 22px 10px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(4, 22, 43, 0.13);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  animation: navEnter .9s var(--ease-premium) both;
  transition: transform .35s var(--ease-premium), box-shadow .35s var(--ease-premium), background .35s ease;
}

.brand img {
  height: 46px;
  transition: transform .4s var(--ease-premium), filter .4s ease;
}

.brand:hover img {
  transform: rotate(-3deg) scale(1.05);
  filter: drop-shadow(0 7px 10px rgba(33, 94, 154, .18));
}

.nav-links a {
  position: relative;
  padding: 10px 1px;
  transition: color .25s ease, transform .25s var(--ease-premium);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
  transition: left .3s var(--ease-premium), right .3s var(--ease-premium);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  left: 0;
  right: 0;
}

.login-button,
.pill-button,
.modal-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .28s var(--ease-premium), box-shadow .28s ease, filter .28s ease;
}

.login-button::before,
.pill-button::before,
.modal-button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -120%;
  left: -45%;
  width: 34%;
  height: 340%;
  transform: rotate(24deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transition: left .6s var(--ease-premium);
}

.login-button:hover,
.pill-button:hover,
.modal-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 28px rgba(25, 69, 117, .22);
  filter: saturate(1.08);
}

.login-button:hover::before,
.pill-button:hover::before,
.modal-button:hover::before {
  left: 120%;
}

.hero-section {
  min-height: 760px;
  padding-top: clamp(138px, 10vw, 168px);
}

.hero-bg {
  transform: scale(1.035);
  animation: heroBackgroundDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  background:
    radial-gradient(circle at 77% 47%, rgba(89,151,239,.13), transparent 29%),
    linear-gradient(90deg, rgba(7, 24, 42, 0.77) 0%, rgba(11, 31, 49, 0.65) 34%, rgba(20, 39, 56, 0.35) 64%, rgba(0, 0, 0, 0.16) 100%);
}

.hero-grid {
  min-height: 570px;
  grid-template-columns: minmax(0, .98fr) minmax(410px, 1.02fr);
  gap: clamp(30px, 4vw, 70px);
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  font-size: clamp(3rem, 4.25vw, 4.55rem);
}

.hero-copy p {
  max-width: 690px;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
}

/* Stagger intro pada isi hero. */
.hero-copy .hero-kicker,
.hero-copy h1,
.hero-copy p,
.hero-actions {
  opacity: 0;
  transform: translateY(24px);
  animation: heroTextEnter .9s var(--ease-premium) forwards;
}

.hero-copy .hero-kicker { animation-delay: .18s; }
.hero-copy h1 { animation-delay: .27s; }
.hero-copy p { animation-delay: .42s; }
.hero-actions { animation-delay: .56s; }

.hero-visual {
  position: relative;
  min-height: 470px;
  perspective: 1100px;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
}

.hero-visual::before {
  width: 440px;
  height: 440px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(98, 163, 255, .16) 0%, rgba(98, 163, 255, .05) 42%, transparent 69%);
  animation: auraPulse 4.4s ease-in-out infinite;
}

.hero-visual::after {
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 0 0 22px rgba(255,255,255,.025), 0 0 0 52px rgba(83,157,238,.018);
  animation: ringBreath 5.6s ease-in-out infinite;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(560px, 92%);
  transform: translate3d(0,0,0);
  filter: drop-shadow(0 30px 34px rgba(0,0,0,.28));
  animation: logoFloat 5.2s ease-in-out infinite;
  transition: transform .2s ease-out;
  will-change: transform;
}

/* Scroll reveal: JS menambahkan .will-reveal agar tetap aman jika JS mati. */
.will-reveal {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  transition: opacity .75s var(--ease-premium), transform .75s var(--ease-premium);
}

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

.category-card.will-reveal {
  opacity: 0;
  transform: translateY(58px) scale(.90) rotate(1.5deg);
}
.category-card.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0);
  transition-duration: .84s;
  transition-timing-function: cubic-bezier(.16,.88,.26,1.08);
}

.category-card.will-reveal:nth-child(2),
.timeline-item.will-reveal:nth-child(2) { transition-delay: .07s; }
.category-card.will-reveal:nth-child(3),
.timeline-item.will-reveal:nth-child(3) { transition-delay: .14s; }
.category-card.will-reveal:nth-child(4),
.timeline-item.will-reveal:nth-child(4) { transition-delay: .21s; }
.category-card.will-reveal:nth-child(5) { transition-delay: .28s; }
.category-card.will-reveal:nth-child(6) { transition-delay: .35s; }

.category-card {
  perspective: 900px;
  transform-style: preserve-3d;
  transition: transform .22s ease-out;
  will-change: transform;
}

.timeline-number {
  box-shadow: 0 8px 22px rgba(44, 93, 157, .14);
  transition: transform .28s var(--ease-premium), box-shadow .28s ease;
}

.timeline-item:hover .timeline-number {
  transform: scale(1.09) rotate(-4deg);
  box-shadow: 0 13px 26px rgba(44, 93, 157, .22);
}

.video-card {
  transition: transform .38s var(--ease-premium), box-shadow .38s ease;
}

.video-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 48px rgba(44, 32, 27, .25);
}

.play-button {
  transition: transform .3s var(--ease-premium), box-shadow .3s ease;
  animation: playPulse 2.6s ease-in-out infinite;
}

.video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.08);
}

.modal-backdrop {
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  animation: backdropIn .3s ease both;
}

.modal-panel {
  transform-origin: center 35%;
  animation: modalIn .48s var(--ease-premium) both;
}

.modal-image-wrap,
.modal-panel h2,
.modal-content,
.modal-button {
  animation: modalContentIn .55s var(--ease-premium) both;
}

.modal-panel h2 { animation-delay: .06s; }
.modal-content { animation-delay: .11s; }
.modal-button { animation-delay: .16s; }

@keyframes navEnter {
  from { opacity: 0; transform: translateY(-24px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroTextEnter {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroBackgroundDrift {
  0% { transform: scale(1.035) translate3d(0,0,0); }
  100% { transform: scale(1.07) translate3d(-.7%, -.4%, 0); }
}

@keyframes logoFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(.01deg); }
  50% { transform: translate3d(0, -13px, 0) rotate(.8deg); }
}

@keyframes auraPulse {
  0%, 100% { opacity: .7; transform: translate(-50%, -50%) scale(.96); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes ringBreath {
  0%, 100% { opacity: .48; transform: translate(-50%, -50%) scale(.96); }
  50% { opacity: .9; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(0,0,0,.18), 0 0 0 0 rgba(240,100,67,.32); }
  50% { box-shadow: 0 8px 20px rgba(0,0,0,.18), 0 0 0 14px rgba(240,100,67,0); }
}

@keyframes backdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(38px) scale(.965); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes modalContentIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 1500px) {
  .hero-copy {
    padding-left: 4px;
  }

  .nav-shell {
    padding-left: 20px;
    padding-right: 24px;
  }
}

@media (max-width: 1100px) {
  :root {
    --page-gutter: clamp(28px, 4vw, 48px);
  }
}

@media (max-width: 860px) {
  :root {
    --page-gutter: 14px;
  }

  .container,
  .narrow-container,
  .category-container,
  .timeline-container {
    width: calc(100% - (var(--page-gutter) * 2));
  }

  .site-header {
    padding-top: 10px;
  }

  .nav-shell {
    min-height: 54px;
    padding: 7px 8px 7px 12px;
  }

  .brand img {
    height: 35px;
  }

  .hero-section {
    padding-top: 82px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10.6vw, 2.7rem);
  }

  .hero-visual {
    min-height: 245px;
  }

  .hero-visual::before {
    width: 255px;
    height: 255px;
  }

  .hero-visual::after {
    width: 220px;
    height: 220px;
  }

  .hero-visual img {
    width: min(245px, 72vw);
  }

  .will-reveal {
    transform: translateY(24px) scale(.99);
  }
}


/* ===== Video section + footer responsive refinement ===== */
@media (max-width: 1100px) {
  .highlight-grid {
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.4fr);
    gap: 30px;
  }

  .footer-grid {
    width: min(100% - 48px, 1180px);
    grid-template-columns: minmax(280px, 1.3fr) .62fr .78fr .88fr;
    gap: 30px;
  }
}

@media (max-width: 860px) {
  .highlight-section {
    padding: 30px 0 34px;
    min-height: 0;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .video-card {
    width: min(100%, 560px);
    height: clamp(220px, 56vw, 310px);
    margin: 0 auto;
  }

  .highlight-copy {
    text-align: left;
  }

  .highlight-copy h2 {
    font-size: clamp(2rem, 8vw, 2.75rem);
    margin-bottom: 14px;
  }

  .highlight-copy p {
    font-size: .9rem;
    line-height: 1.5;
    text-align: left;
  }

  .site-footer {
    min-height: 0;
    padding: 30px 0 34px;
  }

  .footer-grid {
    width: min(100% - 36px, 720px);
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    align-items: start;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 210px;
  }

  .nav-column, .contact-column, .social-column {
    grid-column: auto;
  }

  .social-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .highlight-section {
    padding: 24px 0 28px;
  }

  .video-card {
    height: 210px;
    border-radius: 14px;
  }

  .play-button {
    width: 74px;
    height: 52px;
    border-radius: 15px;
    font-size: 1.7rem;
  }

  .highlight-copy h2 {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .highlight-copy p {
    font-size: .82rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 520px);
    gap: 22px;
  }

  .footer-brand-block,
  .nav-column,
  .contact-column,
  .social-column {
    grid-column: 1;
  }

  .footer-logo {
    width: 190px;
  }
}

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

  .will-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   V5 — HERO WAVE PUSH / RIGHT-TO-LEFT TEXT ENTRANCE
   Animasi aktif saat halaman pertama dibuka dan diputar ulang
   ketika pengguna kembali ke section hero.
   ========================================================= */

.hero-copy {
  position: relative;
  isolation: isolate;
}

/* Matikan intro V4 khusus hero agar tidak bertabrakan dengan wave push V5. */
.hero-copy .hero-kicker,
.hero-copy h1,
.hero-copy p,
.hero-actions {
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-copy > h1,
.hero-copy > p,
.hero-copy > .hero-actions {
  position: relative;
  z-index: 2;
}

/* Setiap kata tetap responsif dan mempertahankan wrapping normal. */
.wave-word {
  display: inline-block;
  transform-origin: center;
  will-change: transform, opacity, filter;
}

/* Sprite ombak berupa SVG vertikal yang melintas dari kanan ke kiri. */
.hero-wave-sprite {
  position: absolute;
  z-index: 4;
  top: -38px;
  left: 108%;
  width: 150px;
  height: calc(100% + 82px);
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 9px 16px rgba(28, 105, 168, .24));
  will-change: left, opacity, transform;
}

.hero-wave-sprite svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.wave-sprite-path {
  stroke-dasharray: 780;
  stroke-dashoffset: 780;
  will-change: stroke-dashoffset, transform;
}

.wave-droplet {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

/* Saat class ini ditambahkan, ombak menyapu hero dari kanan ke kiri. */
.hero-section.hero-wave-active .hero-wave-sprite {
  animation: heroWaveSpriteSweep 1.58s cubic-bezier(.14,.78,.18,1) .03s both;
}

.hero-section.hero-wave-active .wave-main {
  animation: heroWaveDraw 1.15s ease-out .04s both, heroWaveFlex .58s ease-in-out .18s 2 alternate;
}

.hero-section.hero-wave-active .wave-foam {
  animation: heroWaveDraw .98s ease-out .11s both, heroWaveFlex .46s ease-in-out .22s 2 alternate-reverse;
}

.hero-section.hero-wave-active .wave-accent {
  animation: heroWaveDraw .92s ease-out .18s both, heroWaveFlex .52s ease-in-out .26s 2 alternate;
}

.hero-section.hero-wave-active .droplet-one {
  animation: heroDroplet .75s ease-out .22s both;
}

.hero-section.hero-wave-active .droplet-two {
  animation: heroDroplet .72s ease-out .37s both;
}

.hero-section.hero-wave-active .droplet-three {
  animation: heroDroplet .8s ease-out .49s both;
}

/* Judul masuk dari kanan, bergelombang sedikit, lalu tepat kembali ke posisi Figma. */
.hero-section.hero-wave-active .wave-word {
  animation: heroWordWavePush 1.02s cubic-bezier(.16,.84,.18,1) both;
  animation-delay: calc(.12s + (var(--word-index) * .055s));
}

.hero-section.hero-wave-active .hero-wave-block {
  animation: heroBlockWavePush 1.05s cubic-bezier(.16,.84,.18,1) .54s both;
}

.hero-section.hero-wave-active .hero-wave-button:nth-child(1) {
  animation: heroButtonWavePush .9s cubic-bezier(.16,.84,.18,1) .68s both;
}

.hero-section.hero-wave-active .hero-wave-button:nth-child(2) {
  animation: heroButtonWavePush .9s cubic-bezier(.16,.84,.18,1) .77s both;
}

/* Logo bereaksi sangat tipis ketika ombak melintas agar scene terasa menyatu. */
.hero-section.hero-wave-active .hero-visual {
  animation: heroLogoWaveReaction 1.35s cubic-bezier(.2,.8,.2,1) .18s both;
}

@keyframes heroWaveSpriteSweep {
  0% {
    left: 108%;
    opacity: 0;
    transform: translate3d(35px, 0, 0) rotate(2deg) scaleX(.9);
  }
  9% {
    opacity: .92;
  }
  48% {
    opacity: .88;
    transform: translate3d(0, -4px, 0) rotate(-2deg) scaleX(1.03);
  }
  88% {
    opacity: .72;
  }
  100% {
    left: -190px;
    opacity: 0;
    transform: translate3d(-18px, 5px, 0) rotate(-5deg) scaleX(1.08);
  }
}

@keyframes heroWaveDraw {
  0% {
    stroke-dashoffset: 780;
    opacity: .2;
  }
  28% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes heroWaveFlex {
  from { transform: translateX(-2px) scaleX(.96); }
  to { transform: translateX(4px) scaleX(1.06); }
}

@keyframes heroDroplet {
  0% {
    opacity: 0;
    transform: translate3d(22px, 0, 0) scale(.2);
  }
  36% {
    opacity: .95;
  }
  100% {
    opacity: 0;
    transform: translate3d(-35px, -14px, 0) scale(1.25);
  }
}

@keyframes heroWordWavePush {
  0% {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(145px, 5px, 0) skewX(-7deg) rotate(.01deg);
  }
  46% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(-20px, -7px, 0) skewX(2.2deg) rotate(-.5deg);
  }
  64% {
    transform: translate3d(10px, 4px, 0) skewX(-1.1deg) rotate(.25deg);
  }
  79% {
    transform: translate3d(-4px, -2px, 0) skewX(.45deg) rotate(-.08deg);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) skewX(0) rotate(0);
  }
}

@keyframes heroBlockWavePush {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(118px, 9px, 0) skewX(-4deg);
  }
  48% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(-14px, -4px, 0) skewX(1.2deg);
  }
  68% {
    transform: translate3d(7px, 2px, 0) skewX(-.5deg);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) skewX(0);
  }
}

@keyframes heroButtonWavePush {
  0% {
    opacity: 0;
    transform: translate3d(95px, 6px, 0) scale(.93);
  }
  52% {
    opacity: 1;
    transform: translate3d(-12px, -3px, 0) scale(1.025);
  }
  72% {
    transform: translate3d(6px, 1px, 0) scale(.99);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroLogoWaveReaction {
  0%, 100% { transform: translate3d(0,0,0); }
  40% { transform: translate3d(-9px, -2px, 0) rotate(-.35deg); }
  63% { transform: translate3d(5px, 2px, 0) rotate(.2deg); }
}

@media (max-width: 860px) {
  .hero-wave-sprite {
    top: -26px;
    width: 104px;
    height: calc(100% + 55px);
  }

  .hero-section.hero-wave-active .wave-word {
    animation-duration: .88s;
    animation-delay: calc(.1s + (var(--word-index) * .042s));
  }

  .hero-section.hero-wave-active .hero-wave-block {
    animation-duration: .9s;
    animation-delay: .43s;
  }

  .hero-section.hero-wave-active .hero-wave-button:nth-child(1) {
    animation-delay: .55s;
  }

  .hero-section.hero-wave-active .hero-wave-button:nth-child(2) {
    animation-delay: .62s;
  }

  @keyframes heroWordWavePush {
    0% {
      opacity: 0;
      filter: blur(5px);
      transform: translate3d(82px, 4px, 0) skewX(-5deg);
    }
    48% {
      opacity: 1;
      filter: blur(0);
      transform: translate3d(-12px, -4px, 0) skewX(1.5deg);
    }
    70% {
      transform: translate3d(6px, 2px, 0) skewX(-.5deg);
    }
    100% {
      opacity: 1;
      filter: blur(0);
      transform: translate3d(0,0,0) skewX(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wave-sprite {
    display: none !important;
  }

  .hero-section.hero-wave-active .wave-word,
  .hero-section.hero-wave-active .hero-wave-block,
  .hero-section.hero-wave-active .hero-wave-button,
  .hero-section.hero-wave-active .hero-visual {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* =========================================================
   FIGMA HERO TITLE FIX
   Desktop dikunci menjadi 2 baris seperti frame Figma:
   1) Indonesian Science &
   2) Keystone Innovation Award
   ========================================================= */
@media (min-width: 861px) {
  .hero-copy h1 {
    font-size: clamp(2.7rem, 3.45vw, 3.55rem);
    line-height: 1.13;
    letter-spacing: -0.025em;
  }

  .hero-title-line {
    display: block;
    white-space: nowrap;
  }
}

@media (max-width: 860px) {
  .hero-title-line {
    display: block;
    white-space: normal;
  }
}

/* =========================================================
   FINAL BILINGUAL + COMING SOON + SECTION MOTION OVERRIDES
   ========================================================= */
.hero-copy .hero-kicker {
  font-size: 1.28em !important;
  line-height: .92;
  margin-bottom: 14px !important;
}

.hero-visual {
  flex-direction: column;
  gap: 18px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(8,31,55,.16);
  border: 1px solid rgba(255,255,255,.65);
  backdrop-filter: blur(12px);
}
.lang-button {
  border: 0;
  min-width: 84px;
  min-height: 38px;
  padding: 7px 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #315071;
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .04em;
  transition: transform .25s ease, color .25s ease, background .25s ease, box-shadow .25s ease;
}
.lang-button .flag { font-size: 1.1rem; line-height: 1; }
.lang-button.active {
  color: #fff;
  background: linear-gradient(100deg, #639ef4 0%, #77aaf4 46%, #f19a37 100%);
  box-shadow: 0 7px 16px rgba(65,125,211,.22);
}
.lang-button:hover { transform: translateY(-2px); }
.hero-language-switch { position: relative; z-index: 7; margin-top: -4px; }
.modal-language-switch { width: max-content; margin: 0 auto 20px; }

.contact-us-button { min-width: 136px; }

.coming-soon-guide {
  min-height: 470px !important;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(100,161,244,.20), transparent 28%),
    radial-gradient(circle at 82% 74%, rgba(240,139,32,.18), transparent 32%),
    rgba(255,255,255,.95) !important;
}
.coming-soon-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 58px 34px;
  text-align: center;
}
.coming-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: #355a83;
  font-size: clamp(.75rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.gradient-coming-soon,
.video-coming-text {
  display: block;
  background: linear-gradient(90deg, #5d96ef 0%, #82b2f5 24%, #fff 49%, #f3aa55 72%, #f08b20 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 8px rgba(59,92,138,.12));
  animation: comingGradient 3.8s linear infinite, comingFloat 3s ease-in-out infinite;
}
.gradient-coming-soon {
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.05em;
}
.coming-soon-content p {
  max-width: 690px;
  margin: 24px auto 0;
  color: #506275;
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  line-height: 1.65;
}
.guide-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(92,150,239,.22);
  pointer-events: none;
}
.orbit-one { width: 420px; height: 420px; left: -100px; top: -130px; animation: orbitSpin 12s linear infinite; }
.orbit-two { width: 300px; height: 300px; right: -70px; bottom: -110px; border-color: rgba(240,139,32,.22); animation: orbitSpin 9s linear infinite reverse; }
.guide-orbit::after { content:""; position:absolute; width:14px; height:14px; border-radius:50%; background: linear-gradient(135deg,#5d96ef,#f08b20); left:50%; top:-7px; box-shadow:0 0 22px rgba(93,150,239,.5); }
.loading-wave { display:flex; justify-content:center; align-items:end; gap:6px; height:28px; margin-top:22px; }
.loading-wave span { width:6px; border-radius:999px; background:linear-gradient(180deg,#5d96ef,#f08b20); animation: loadingWave 1s ease-in-out infinite; }
.loading-wave span:nth-child(1){height:9px;animation-delay:0s}.loading-wave span:nth-child(2){height:16px;animation-delay:.1s}.loading-wave span:nth-child(3){height:24px;animation-delay:.2s}.loading-wave span:nth-child(4){height:16px;animation-delay:.3s}.loading-wave span:nth-child(5){height:9px;animation-delay:.4s}

.video-coming-card {
  min-height: 300px;
  height: clamp(280px, 22vw, 340px) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  isolation: isolate;
  background: linear-gradient(135deg, rgba(21,39,59,.88), rgba(44,48,62,.66));
}
.video-coming-card::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background: url('assets/video-section-bg.jpg') center / cover no-repeat;
  opacity:.25;
  transform:scale(1.08);
  animation: videoBgDrift 11s ease-in-out infinite alternate;
}
.video-glow { position:absolute; width:180px; height:180px; border-radius:50%; background:radial-gradient(circle,rgba(240,100,67,.28),transparent 70%); animation: videoGlow 2.5s ease-in-out infinite; }
.video-coming-card .play-button { position:relative; left:auto; top:auto; transform:none; flex:0 0 auto; animation: youtubePulse 2.3s ease-in-out infinite; }
.video-coming-card:hover .play-button { transform: scale(1.08); }
.video-coming-text { position:relative; font-size: clamp(1.65rem,3vw,2.65rem); font-weight:800; line-height:1; }
.video-coming-card small { position:relative; color:rgba(255,255,255,.90); font-size:.86rem; font-weight:600; }

/* Different reveal behavior for every section. */
.guide-box.will-reveal { opacity:0; transform: perspective(900px) rotateX(10deg) translateY(52px) scale(.94); }
.guide-box.will-reveal.is-visible { opacity:1; transform:perspective(900px) rotateX(0) translateY(0) scale(1); transition: opacity .9s ease, transform 1s cubic-bezier(.16,.84,.22,1); }
.timeline-column:first-child .timeline-item.will-reveal { opacity:0; transform:translateX(-58px); }
.timeline-column:last-child .timeline-item.will-reveal { opacity:0; transform:translateX(58px); }
.timeline-item.will-reveal.is-visible { opacity:1; transform:translateX(0); transition: opacity .72s ease, transform .78s cubic-bezier(.16,.84,.22,1); }
.timeline-item.will-reveal:nth-child(2){transition-delay:.08s}.timeline-item.will-reveal:nth-child(3){transition-delay:.16s}.timeline-item.will-reveal:nth-child(4){transition-delay:.24s}
.video-card.will-reveal { opacity:0; transform:translateX(-70px) rotate(-2deg) scale(.95); }
.video-card.will-reveal.is-visible { opacity:1; transform:translateX(0) rotate(0) scale(1); transition:opacity .85s ease, transform .9s cubic-bezier(.16,.84,.22,1); }
.highlight-copy.will-reveal { opacity:0; transform:translateX(70px); }
.highlight-copy.will-reveal.is-visible { opacity:1; transform:translateX(0); transition:opacity .85s .08s ease, transform .9s .08s cubic-bezier(.16,.84,.22,1); }
.footer-grid > *.will-reveal { opacity:0; transform:translateY(32px); }
.footer-grid > *.will-reveal.is-visible { opacity:1; transform:translateY(0); transition:opacity .7s ease, transform .7s cubic-bezier(.16,.84,.22,1); }
.footer-grid > *.will-reveal:nth-child(2){transition-delay:.08s}.footer-grid > *.will-reveal:nth-child(3){transition-delay:.16s}.footer-grid > *.will-reveal:nth-child(4){transition-delay:.24s}

@keyframes comingGradient { 0%{background-position:0% 50%}100%{background-position:220% 50%} }
@keyframes comingFloat { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }
@keyframes orbitSpin { to{transform:rotate(360deg)} }
@keyframes loadingWave { 0%,100%{transform:scaleY(.6);opacity:.55}50%{transform:scaleY(1.2);opacity:1} }
@keyframes videoBgDrift { from{transform:scale(1.06) translateX(-5px)}to{transform:scale(1.14) translateX(8px)} }
@keyframes videoGlow { 0%,100%{transform:scale(.8);opacity:.45}50%{transform:scale(1.15);opacity:.8} }
@keyframes youtubePulse { 0%,100%{transform:scale(1);box-shadow:0 8px 20px rgba(0,0,0,.18)}50%{transform:scale(1.07);box-shadow:0 12px 32px rgba(240,100,67,.35)} }

@media (max-width: 860px) {
  .hero-copy .hero-kicker { font-size: 1.12em !important; margin-bottom: 10px !important; }
  .hero-language-switch { margin-top: 4px; }
  .lang-button { min-width: 76px; min-height: 36px; font-size:.72rem; }
  .coming-soon-guide { min-height: 310px !important; }
  .coming-soon-content { padding: 42px 18px; }
  .gradient-coming-soon { font-size: clamp(3rem,15vw,5rem); }
  .video-coming-card { min-height: 230px; height: 250px !important; }
  .modal-language-switch { margin-top: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  .gradient-coming-soon, .video-coming-text, .guide-orbit, .loading-wave span, .video-coming-card::before, .video-glow, .video-coming-card .play-button { animation:none !important; }
}


/* V2 bilingual selector refinements */
.language-control { display:flex; flex-direction:column; align-items:center; gap:7px; }
.flag-icon { width:24px; height:16px; object-fit:cover; border-radius:2px; box-shadow:0 1px 4px rgba(0,0,0,.18); flex:0 0 auto; }
.language-help { margin:0; max-width:280px; text-align:center; color:rgba(255,255,255,.78); font-size:.68rem; line-height:1.35; letter-spacing:.01em; }
.modal-language-help { color:#718096; }
.timeline-copy h3 { margin-bottom:0; }
.timeline-item { min-height:72px; }
.timeline-item .timeline-copy h3 { position:relative; display:inline-block; background:linear-gradient(100deg,#3169b7 0%,#5d96ef 38%,#f08b20 82%,#3169b7 100%); background-size:220% auto; -webkit-background-clip:text; background-clip:text; color:transparent; animation:timelineComingShimmer 4.2s linear infinite; }
@keyframes timelineComingShimmer { to { background-position:220% center; } }
@media(max-width:860px){ .language-help{font-size:.63rem;max-width:230px}.timeline-grid{grid-template-columns:1fr!important}.timeline-column{display:flex!important}.timeline-item{min-height:58px} }
@media(prefers-reduced-motion:reduce){ .timeline-item .timeline-copy h3{animation:none!important} }


/* =========================================================
   V3 FIX — FLAG PROPORTIONS + TIMELINE ALWAYS VISIBLE
   ========================================================= */

/* Keep both flag logos at a true, compact flag proportion.
   The wrapper prevents flex/button rules or SVG internals from stretching them. */
.language-switch {
  gap: 6px;
  padding: 6px;
}
.lang-button {
  min-width: 78px;
  min-height: 40px;
  padding: 6px 10px;
  gap: 7px;
  flex: 0 0 auto;
}
.flag-frame {
  width: 28px;
  height: 19px;
  aspect-ratio: 3 / 2;
  flex: 0 0 28px;
  display: inline-block;
  overflow: hidden;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
}
.flag-frame .flag-icon,
.lang-button .flag-icon {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.language-help {
  margin-top: 2px;
  max-width: 250px;
  font-size: .66rem;
}

/* Timeline stays visible even if IntersectionObserver / reveal JS does not run.
   This prevents the blank section shown in the browser screenshot. */
.timeline-section {
  padding: 18px 0 62px;
  min-height: 0 !important;
}
.timeline-section .section-title {
  margin-bottom: 30px;
}
.timeline-coming-grid {
  width: min(900px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(64px, 9vw, 150px);
  row-gap: 0;
}
.timeline-coming-grid .timeline-column {
  display: flex !important;
  flex-direction: column;
  gap: 18px;
}
.timeline-coming-grid .timeline-item,
.timeline-coming-grid .timeline-item.will-reveal,
.timeline-coming-grid .timeline-item.will-reveal.is-visible {
  min-height: 68px;
  display: grid !important;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}
.timeline-coming-grid .timeline-number {
  width: 62px;
  height: 62px;
  font-size: 1.9rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(47, 94, 150, .12);
}
.timeline-coming-grid .timeline-copy {
  min-width: 0;
}
.timeline-coming-grid .timeline-copy h3 {
  display: inline-block;
  margin: 0;
  color: #225391; /* fallback: never invisible */
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.15;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .timeline-coming-grid .timeline-copy h3 {
    background: linear-gradient(100deg,#3169b7 0%,#5d96ef 42%,#f08b20 82%,#3169b7 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: timelineComingShimmer 4.2s linear infinite;
  }
}

/* Scroll animation is added as a progressive enhancement only.
   Without JS the timeline remains fully readable. */
.timeline-section.timeline-enter .timeline-item {
  animation: timelineFigmaEnter .72s cubic-bezier(.16,.84,.22,1) both;
  animation-delay: calc(var(--timeline-index, 0) * 85ms);
}
.timeline-section.timeline-enter .timeline-number {
  animation: timelineNumberPop .72s cubic-bezier(.16,.84,.22,1) both;
  animation-delay: calc(var(--timeline-index, 0) * 85ms + 50ms);
}
@keyframes timelineFigmaEnter {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  70% { opacity: 1; transform: translate3d(0, -4px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes timelineNumberPop {
  from { transform: scale(.72) rotate(-10deg); }
  72% { transform: scale(1.08) rotate(3deg); }
  to { transform: scale(1) rotate(0); }
}

@media (max-width: 860px) {
  .flag-frame { width: 26px; height: 18px; flex-basis: 26px; }
  .lang-button { min-width: 72px; min-height: 38px; padding: 6px 9px; }
  .timeline-coming-grid { grid-template-columns: 1fr !important; width: min(360px, 100%); row-gap: 14px; }
  .timeline-coming-grid .timeline-column { gap: 12px; }
  .timeline-coming-grid .timeline-item,
  .timeline-coming-grid .timeline-item.will-reveal,
  .timeline-coming-grid .timeline-item.will-reveal.is-visible {
    grid-template-columns: 50px minmax(0,1fr);
    min-height: 52px;
    gap: 12px;
  }
  .timeline-coming-grid .timeline-number { width: 46px; height: 46px; font-size: 1.45rem; }
  .timeline-coming-grid .timeline-copy h3 { font-size: .95rem; }
}
@media (prefers-reduced-motion: reduce) {
  .timeline-section.timeline-enter .timeline-item,
  .timeline-section.timeline-enter .timeline-number { animation: none !important; }
}

/* =========================================================
   V4 HERO KICKER + STATIC HERO LANGUAGE CONTROL
   ========================================================= */

/* ISKIA 2026 dibuat lebih menonjol daripada judul utama.
   Gradient bergerak memakai animasi warna yang sama dengan Coming Soon. */
.hero-copy .hero-kicker {
  font-size: 1.46em !important;
  line-height: .9 !important;
  margin-bottom: 17px !important;
  background: linear-gradient(
    90deg,
    #5d96ef 0%,
    #7eaff6 22%,
    #ffffff 47%,
    #f4b162 72%,
    #f08b20 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 9px rgba(41, 76, 124, .18));
  animation:
    heroTextEnter .9s var(--ease-premium) .18s forwards,
    comingGradient 3.8s linear 1.05s infinite !important;
}

.hero-copy .hero-kicker .wave-word {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

/* Bahasa dipisah dari elemen logo yang floating/wave-reactive.
   Dengan begitu logo tetap hidup, tetapi bendera + tombol IDN/ENG benar-benar diam. */
.hero-right-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 5;
}

.hero-right-column .hero-visual {
  width: 100%;
  margin: 0;
}

.hero-language-control {
  position: relative;
  z-index: 12;
  margin-top: -12px !important;
  animation: none !important;
  transition: none !important;
  transform: none !important;
}

.hero-language-control,
.hero-language-control .language-switch,
.hero-language-control .lang-button,
.hero-language-control .flag-frame,
.hero-language-control .flag-icon,
.hero-language-control .language-help {
  animation: none !important;
  transition: none !important;
}

.hero-language-control .lang-button,
.hero-language-control .lang-button:hover,
.hero-language-control .lang-button:focus-visible,
.hero-language-control .lang-button:active {
  transform: none !important;
}

@media (max-width: 860px) {
  .hero-right-column {
    order: -1;
    gap: 8px;
  }

  .hero-copy .hero-kicker {
    font-size: 1.24em !important;
    line-height: .94 !important;
    margin-bottom: 11px !important;
  }

  .hero-language-control {
    margin-top: -2px !important;
  }
}

/* =========================================================
   V5.1 — FIX HERO KICKER GRADIENT
   Kicker dibuat menjadi satu text node agar background-clip
   tidak bertabrakan dengan animasi .wave-word per kata.
   ========================================================= */
.hero-copy .hero-kicker {
  display: block !important;
  width: fit-content;
  max-width: 100%;
  font-size: 1.40em !important;
  line-height: .94 !important;
  margin-bottom: 16px !important;
  font-weight: 800 !important;
  letter-spacing: -.03em;
  white-space: nowrap;

  background: linear-gradient(
    90deg,
    #5d96ef 0%,
    #82b2f5 22%,
    #ffffff 48%,
    #f3aa55 72%,
    #f08b20 100%
  ) !important;
  background-size: 240% 100% !important;
  background-position: 0% 50%;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 4px 8px rgba(24, 55, 95, .18));

  /* Hanya gradient yang terus berjalan saat hero idle. */
  animation: heroKickerGradient 4.2s linear infinite !important;
  transform: none;
  opacity: 1;
}

/* Ketika wave hero diputar ulang, kicker ikut terdorong sekali,
   tapi gradient tetap berjalan sebagai animasi kedua. */
.hero-section.hero-wave-active .hero-copy .hero-kicker {
  animation:
    heroKickerWavePush 1.08s cubic-bezier(.16,.84,.18,1) .08s both,
    heroKickerGradient 4.2s linear infinite !important;
}

@keyframes heroKickerGradient {
  0%   { background-position: 0% 50%; }
  100% { background-position: 240% 50%; }
}

@keyframes heroKickerWavePush {
  0% {
    opacity: 0;
    filter: blur(5px) drop-shadow(0 4px 8px rgba(24,55,95,.18));
    transform: translate3d(125px, 3px, 0) skewX(-5deg);
  }
  58% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 4px 8px rgba(24,55,95,.18));
    transform: translate3d(-16px, -2px, 0) skewX(1.5deg);
  }
  80% {
    transform: translate3d(7px, 1px, 0) skewX(-.4deg);
  }
  100% {
    opacity: 1;
    filter: drop-shadow(0 4px 8px rgba(24,55,95,.18));
    transform: translate3d(0,0,0) skewX(0);
  }
}

@media (max-width: 860px) {
  .hero-copy .hero-kicker {
    width: 100%;
    font-size: 1.24em !important;
    line-height: .96 !important;
    margin-bottom: 12px !important;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy .hero-kicker,
  .hero-section.hero-wave-active .hero-copy .hero-kicker {
    animation: none !important;
    background-position: 42% 50% !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* =========================================================
   V6 — WAVE-TRIGGERED KICKER GRADIENT + PUSPRESNAS TAC
   ========================================================= */

/* ISKIA 2026 kembali putih saat idle. Gradient hanya muncul
   tepat ketika ombak mencapai area judul. */
.hero-copy .hero-kicker {
  position: relative !important;
  display: block !important;
  width: fit-content;
  max-width: 100%;
  background: none !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  animation: none !important;
  isolation: isolate;
}

.hero-copy .hero-kicker::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  white-space: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  background: linear-gradient(
    90deg,
    #5d96ef 0%,
    #7eb0f7 20%,
    #ffffff 46%,
    #f4b262 68%,
    #f08b20 86%,
    #5d96ef 100%
  );
  background-size: 260% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  filter: drop-shadow(0 4px 10px rgba(20, 53, 92, .18));
}

.hero-section.hero-wave-active .hero-copy .hero-kicker {
  animation: heroKickerWavePush 1.08s cubic-bezier(.16,.84,.18,1) .08s both !important;
}

/* Delay .55s: gradient muncul ketika wave sudah sampai area teks,
   bergerak cepat, lalu hilang dan kembali menjadi putih. */
.hero-section.hero-wave-active .hero-copy .hero-kicker::after {
  animation: heroKickerGradientHit 1.16s cubic-bezier(.2,.72,.22,1) .55s both;
}

@keyframes heroKickerGradientHit {
  0%   { opacity: 0; background-position: 0% 50%; }
  12%  { opacity: .35; }
  25%  { opacity: 1; }
  72%  { opacity: 1; background-position: 190% 50%; }
  100% { opacity: 0; background-position: 260% 50%; }
}

/* Tombol putih Kurasi Puspresnas */
.pill-button.white {
  background: #ffffff;
  color: #161b22;
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
}
.pill-button.white::before {
  background: linear-gradient(90deg, transparent, rgba(93,150,239,.22), rgba(240,139,32,.20), transparent);
}
.pill-button.white:hover {
  color: #0f315d;
  background: #ffffff;
}

/* Terms & Conditions modal */
.tac-modal { z-index: 260; }
.tac-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 34px clamp(20px, 4vw, 44px) 30px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 8%, rgba(93,150,239,.12), transparent 26%),
    radial-gradient(circle at 10% 95%, rgba(240,139,32,.10), transparent 26%),
    #f7f8fa;
  box-shadow: 0 28px 90px rgba(10, 27, 47, .30);
  animation: tacPanelIn .48s cubic-bezier(.18,.82,.2,1) both;
}
.tac-close { position: absolute; top: 16px; right: 16px; }
.tac-header { max-width: 760px; margin: 0 auto; text-align: center; }
.tac-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #315f9c;
  background: rgba(93,150,239,.10);
  border: 1px solid rgba(93,150,239,.18);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tac-header h2 {
  margin: 12px 0 8px;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(90deg,#5d96ef 0%,#7eacf2 28%,#f0a153 72%,#f08b20 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tac-header p { margin: 0; color: #596678; line-height: 1.6; font-size: .96rem; }
.tac-language-control { margin: 18px auto 8px; text-align: center; }
.tac-language-switch { width: max-content; margin: 0 auto; }
.tac-list {
  counter-reset: tac-counter;
  list-style: none;
  margin: 22px 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.tac-list li {
  counter-increment: tac-counter;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 15px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(27,63,101,.08);
  color: #354354;
  line-height: 1.52;
  font-size: .9rem;
  box-shadow: 0 5px 16px rgba(35,70,110,.04);
}
.tac-list li::before {
  content: counter(tac-counter);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg,#5d96ef,#f08b20);
  color: #fff;
  font-weight: 800;
  font-size: .78rem;
}
.tac-curation-note {
  margin: 16px 0;
  padding: 16px 18px;
  border-radius: 16px;
  border-left: 4px solid #f08b20;
  background: linear-gradient(100deg, rgba(93,150,239,.09), rgba(240,139,32,.09));
  color: #3e4d5f;
}
.tac-curation-note strong { display: block; margin-bottom: 4px; color: #264f83; }
.tac-curation-note p { margin: 0; line-height: 1.55; font-size: .9rem; }
.tac-agreement {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 11px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 15px;
  background: #ffffff;
  border: 1px solid rgba(28,64,103,.12);
  cursor: pointer;
  color: #27384b;
  font-size: .92rem;
  font-weight: 600;
}
.tac-agreement input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tac-checkmark {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 2px solid #9ba9b9;
  background: #fff;
  transition: .2s ease;
}
.tac-agreement input:checked + .tac-checkmark {
  border-color: #5d96ef;
  background: linear-gradient(135deg,#5d96ef,#f08b20);
  box-shadow: 0 4px 12px rgba(93,150,239,.22);
}
.tac-agreement input:checked + .tac-checkmark::after {
  content: "✓";
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: .85rem;
  font-weight: 900;
}
.tac-agreement:focus-within { outline: 3px solid rgba(93,150,239,.18); outline-offset: 2px; }
.tac-actions { display: flex; justify-content: center; margin-top: 18px; }
.tac-understand-button {
  min-width: 150px;
  min-height: 44px;
  padding: 10px 24px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(90deg,#5d96ef,#7caaf1 48%,#f08b20);
  box-shadow: 0 10px 24px rgba(43,91,151,.16);
  transition: transform .2s ease, opacity .2s ease, filter .2s ease;
}
.tac-understand-button:disabled {
  cursor: not-allowed;
  opacity: .38;
  filter: grayscale(.35);
  box-shadow: none;
}
.tac-understand-button:not(:disabled):hover { transform: translateY(-2px) scale(1.02); }

@keyframes tacPanelIn {
  0% { opacity: 0; transform: translateY(24px) scale(.975); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 860px) {
  .hero-actions { justify-content: center; }
  .pill-button.white { flex-basis: auto; }
  .tac-modal { align-items: flex-end; padding: 0; }
  .tac-panel {
    width: 100%;
    max-height: 94vh;
    border-radius: 24px 24px 0 0;
    padding: 26px 14px 24px;
  }
  .tac-list li { grid-template-columns: 30px 1fr; padding: 11px 10px; font-size: .84rem; }
  .tac-list li::before { width: 27px; height: 27px; }
  .tac-header p { font-size: .88rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy .hero-kicker::after,
  .hero-section.hero-wave-active .hero-copy .hero-kicker::after {
    animation: none !important;
    opacity: 0 !important;
  }
  .tac-panel { animation: none !important; }
}

/* Third hero CTA joins the wave entrance after Panduan. */
.hero-section.hero-wave-active .hero-wave-button:nth-child(3) {
  animation: heroButtonWavePush .9s cubic-bezier(.16,.84,.18,1) .86s both;
}
@media (max-width: 860px) {
  .hero-section.hero-wave-active .hero-wave-button:nth-child(3) {
    animation-delay: .69s;
  }
}

/* =========================================================
   V7 — PERSISTENT GRADIENT AFTER WAVE HIT
   ========================================================= */
/* Idle: ISKIA 2026 remains white. Once the wave reaches it,
   JS adds .hero-gradient-on and the gradient keeps moving. */
.hero-section.hero-gradient-on .hero-copy .hero-kicker::after {
  opacity: 1 !important;
  animation: heroKickerGradientLoop 4.2s linear infinite !important;
  background-size: 260% 100% !important;
  filter: drop-shadow(0 4px 10px rgba(20, 53, 92, .18));
}

@keyframes heroKickerGradientLoop {
  0%   { background-position: 0% 50%; }
  100% { background-position: 260% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section.hero-gradient-on .hero-copy .hero-kicker::after {
    animation: none !important;
    background-position: 56% 50% !important;
    opacity: 1 !important;
  }
}

/* =========================================================
   V8 — ROBUST ACTUAL-TEXT GRADIENT FIX
   Gradient diterapkan langsung pada teks ISKIA 2026, bukan
   pseudo-element. Ini menghindari overlay putih / class timer
   yang sebelumnya dapat membuat gradient tidak terlihat.
   ========================================================= */

/* Matikan layer duplikat lama agar tidak menutupi teks asli. */
.hero-copy .hero-kicker::after {
  display: none !important;
  content: none !important;
}

/* Kondisi awal: putih. */
.hero-copy .hero-kicker {
  background: none !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

/* Begitu wave dimulai, gradient baru aktif setelah delay ±0,62 detik,
   kira-kira saat ombak mencapai area judul. Setelah itu gradient terus
   bergerak selama hero masih aktif. */
.hero-section.hero-wave-active .hero-copy .hero-kicker {
  animation:
    heroKickerWavePush 1.08s cubic-bezier(.16,.84,.18,1) .08s both,
    heroKickerActualGradient 4.2s linear .62s infinite !important;
}

@keyframes heroKickerActualGradient {
  0% {
    background: linear-gradient(
      90deg,
      #5d96ef 0%,
      #7eb0f7 20%,
      #ffffff 46%,
      #f4b262 68%,
      #f08b20 86%,
      #5d96ef 100%
    );
    background-size: 260% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  100% {
    background: linear-gradient(
      90deg,
      #5d96ef 0%,
      #7eb0f7 20%,
      #ffffff 46%,
      #f4b262 68%,
      #f08b20 86%,
      #5d96ef 100%
    );
    background-size: 260% 100%;
    background-position: 260% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

/* Jika class persistent dari JS ikut aktif, pastikan actual text tetap gradient. */
.hero-section.hero-gradient-on .hero-copy .hero-kicker {
  background: linear-gradient(
    90deg,
    #5d96ef 0%,
    #7eb0f7 20%,
    #ffffff 46%,
    #f4b262 68%,
    #f08b20 86%,
    #5d96ef 100%
  ) !important;
  background-size: 260% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

/* Tetap tampil jelas bila pengguna memilih reduce motion: gradient statis. */
@media (prefers-reduced-motion: reduce) {
  .hero-section.hero-wave-active .hero-copy .hero-kicker,
  .hero-section.hero-gradient-on .hero-copy .hero-kicker {
    animation: none !important;
    background: linear-gradient(90deg,#5d96ef 0%,#ffffff 48%,#f08b20 100%) !important;
    background-size: 100% 100% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
  }
}

/* =========================================================
   V8.3 — HERO KICKER GRADIENT: INNER-SPAN FIX
   ---------------------------------------------------------
   Perbaikan final untuk Chrome:
   - Outer .hero-kicker khusus untuk wave/position animation.
   - Inner .hero-kicker-text khusus untuk gradient fill.
   Dengan demikian animation shorthand pada outer tidak dapat
   mereset background gradient, dan background: ... !important
   dari rule lama tidak lagi menahan background-position.
   ========================================================= */

/* Neutralize every older gradient implementation on the outer span. */
.hero-copy .hero-kicker,
.hero-section.hero-gradient-on .hero-copy .hero-kicker,
.hero-section.hero-wave-active .hero-copy .hero-kicker {
  background: none !important;
  background-image: none !important;
  background-size: auto !important;
  background-position: 0 0 !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.hero-copy .hero-kicker::after {
  display: none !important;
  content: none !important;
}

/* The actual visible letters live here. White before the wave arrives. */
.hero-copy .hero-kicker .hero-kicker-text {
  display: inline-block;
  background: none;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  text-shadow:
    -1px -1px 0 rgba(255,255,255,.18),
     1px  1px 0 rgba(0,0,0,.13),
     0 5px 14px rgba(0,0,0,.14);
}

/* JS adds .hero-gradient-on roughly when the wave reaches ISKIA 2026. */
.hero-section.hero-gradient-on .hero-copy .hero-kicker .hero-kicker-text {
  background-image: linear-gradient(
    105deg,
    #397fe4 0%,
    #5d96ef 13%,
    #8bc4ff 28%,
    #ffffff 43%,
    #ffd094 57%,
    #f5a13e 70%,
    #f08b20 82%,
    #5d96ef 100%
  ) !important;
  background-repeat: no-repeat !important;
  background-size: 320% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
  filter: drop-shadow(0 4px 8px rgba(11, 40, 74, .20));
  animation: heroKickerGradientSweepV83 2.7s linear infinite !important;
}

@keyframes heroKickerGradientSweepV83 {
  0%   { background-position: 0% 50%; }
  100% { background-position: 160% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section.hero-gradient-on .hero-copy .hero-kicker .hero-kicker-text {
    animation: none !important;
    background-position: 55% 50% !important;
  }
}

/* =========================================================
   V8.4 — MOBILE HERO FIGMA LAYOUT HARD FIX
   Tujuan:
   - Navbar -> hero illustration -> language -> title -> description -> buttons.
   - Tidak ada title/flag yang keluar viewport.
   - Desktop tidak berubah.
   ========================================================= */
@media (max-width: 860px) {
  .hero-section {
    min-height: auto !important;
    padding: 86px 0 38px !important;
    overflow: hidden !important;
  }

  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: calc(100% - 28px) !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  /* Logo utama selalu berada di atas teks seperti frame Figma mobile. */
  .hero-right-column {
    order: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    margin: 0 auto 15px !important;
    position: relative !important;
  }

  .hero-right-column .hero-visual,
  .hero-visual {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 285px !important;
    height: auto !important;
    margin: 0 auto !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .hero-visual::before {
    width: 270px !important;
    height: 270px !important;
  }

  .hero-visual::after {
    width: 232px !important;
    height: 232px !important;
  }

  .hero-visual img {
    display: block !important;
    width: min(278px, 73vw) !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: contain !important;
  }

  /* Language selector ikut flow normal, bukan melayang/menimpa konten. */
  .hero-language-control {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    margin: -4px auto 4px !important;
    transform: none !important;
    opacity: 1 !important;
    align-items: center !important;
  }

  .hero-language-control .language-switch {
    position: static !important;
    margin: 0 auto !important;
    max-width: calc(100vw - 56px) !important;
  }

  .hero-language-control .language-help {
    position: static !important;
    width: min(280px, 88vw) !important;
    max-width: 100% !important;
    margin: 2px auto 0 !important;
    text-align: center !important;
    line-height: 1.3 !important;
  }

  .hero-copy {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
    overflow: visible !important;
  }

  /* Dua baris judul utama tetap utuh seperti desain Figma. */
  .hero-copy h1 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 16px !important;
    padding: 0 !important;
    font-size: clamp(1.70rem, 6.5vw, 2.15rem) !important;
    line-height: 1.10 !important;
    letter-spacing: -.025em !important;
    text-align: center !important;
    overflow: visible !important;
  }

  .hero-title-line {
    display: block !important;
    width: 100% !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  .hero-copy .hero-kicker {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 12px !important;
    font-size: 1.55em !important;
    line-height: .96 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .hero-copy .hero-kicker .hero-kicker-text {
    display: inline-block !important;
    max-width: 100% !important;
  }

  .hero-copy p,
  .hero-copy .hero-wave-block {
    width: min(100%, 380px) !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    padding: 0 2px !important;
    font-size: clamp(.80rem, 3.15vw, .91rem) !important;
    line-height: 1.48 !important;
    text-align: center !important;
    overflow-wrap: anywhere !important;
  }

  /* 2 tombol utama di atas, Kurasi Puspresnas satu baris penuh di bawah. */
  .hero-actions {
    width: min(100%, 370px) !important;
    margin: 19px auto 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 9px !important;
    align-items: stretch !important;
    justify-content: center !important;
  }

  .hero-actions .pill-button,
  .hero-actions button.pill-button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 39px !important;
    padding: 8px 10px !important;
    font-size: clamp(.66rem, 2.8vw, .78rem) !important;
    line-height: 1.15 !important;
    white-space: normal !important;
  }

  .hero-actions .hero-wave-button:nth-child(3),
  .hero-actions .curation-button {
    grid-column: 1 / -1 !important;
    width: min(230px, 100%) !important;
    justify-self: center !important;
  }

  /* Ombak tetap boleh lewat tetapi tidak menambah lebar layout. */
  .hero-wave-sprite {
    max-width: 96px !important;
    pointer-events: none !important;
  }
}

/* Extra-small phones: jangan paksa line judul keluar layar. */
@media (max-width: 350px) {
  .hero-copy h1 {
    font-size: 1.58rem !important;
  }

  .hero-title-line {
    white-space: normal !important;
  }

  .hero-copy .hero-kicker {
    font-size: 1.48em !important;
  }

  .hero-right-column .hero-visual,
  .hero-visual {
    min-height: 248px !important;
  }

  .hero-visual img {
    width: min(245px, 74vw) !important;
  }
}
