:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --surface: #1a1a1a;
  --text: #f0f0f0;
  --text-muted: #b0b0b0;
  --accent: #f5f5f5;
  --accent-dim: rgba(245, 245, 245, 0.55);
  --red: #e50914;
  --red-hover: #ff1a26;
  --border: #2a2a2a;
  --font: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --font-display: "DM Sans", system-ui, sans-serif;
  --radius: 5px;
  --radius-lg: 10px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

.text-red {
  color: var(--red);
}

.text-accent {
  color: var(--accent);
}

.text-white {
  color: #fff;
}
/* Header + nav desktop/mobile: Tailwind — lihat /css/tailwind.css */

.nav__burger.is-open .nav__burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__burger.is-open .nav__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__burger.is-open .nav__burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav__burger-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 1.1rem;
}

.nav__burger-line {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 40px;   /* atur ukuran logo */
  width: auto;
  display: block;
}

.logo-accent {
  color: var(--accent);
}

.logo--footer {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.logo--footer img {
  height: 44px;
  width: auto;
  max-width: 200px;
  display: block;
}

main {
  overflow-x: clip;
}

html.has-reveal .reveal {
  opacity: 0;
  transform: translateY(1.15rem);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  html.has-reveal .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.hero {
  min-height: calc(100vh - var(--header-h));
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem) 3rem;
}

.hero--home {
  --hero-bg: url("https://picsum.photos/seed/immtechhero/1920/1080");
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background-color: #070707;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0a0a0a;
  background-image:
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(255, 255, 255, 0.06), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(255, 255, 255, 0.04), transparent 45%),
    linear-gradient(
      180deg,
      rgba(7, 7, 7, 0.88) 0%,
      rgba(10, 10, 10, 0.45) 42%,
      rgba(7, 7, 7, 0.9) 100%
    ),
    linear-gradient(90deg, rgba(7, 7, 7, 0.75) 0%, transparent 55%),
    var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center center;
  animation: hero-kenburns 32s ease-in-out infinite alternate;
}

.hero--home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.65);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

@keyframes hero-kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.07) translate(-1.2%, -0.8%);
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-line-grow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.hero--home .hero__eyebrow {
  opacity: 0;
  animation: hero-fade-up 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards;
}

.hero--home .hero__eyebrow::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  margin-top: 0.65rem;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
  transform-origin: left center;
  animation: hero-line-grow 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.hero--home .hero__title {
  opacity: 0;
  animation: hero-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.16s forwards;
}

.hero--home .hero__title .text-red,
.hero--home .hero__title .text-accent {
  display: inline-block;
  opacity: 0;
  animation: hero-fade-up 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.42s forwards;
}

.hero--home .hero-card {
  opacity: 0;
  animation: hero-fade-up 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero--home .hero-card:nth-child(1) {
  animation-delay: 0.28s;
}

.hero--home .hero-card:nth-child(2) {
  animation-delay: 0.38s;
}

.hero--home .hero-card:nth-child(3) {
  animation-delay: 0.48s;
}

.hero--home .hero-card:nth-child(4) {
  animation-delay: 0.58s;
}

.hero--home .hero__actions {
  opacity: 0;
  animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.72s forwards;
}

.hero--home .hero__actions .btn {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s,
    border-color 0.2s, box-shadow 0.25s;
}

.hero--home .hero__actions .btn--primary:hover {
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero--home .hero__actions .btn--ghost:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg {
    animation: none;
  }

  .hero--home .hero__eyebrow,
  .hero--home .hero__title,
  .hero--home .hero__title .text-red,
  .hero--home .hero__title .text-accent,
  .hero--home .hero-card,
  .hero--home .hero__actions {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero--home .hero__eyebrow::after {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero--home .hero__actions .btn--primary:hover,
  .hero--home .hero__actions .btn--ghost:hover {
    transform: none;
    box-shadow: none;
  }
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dim);
}

.hero__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 52rem;
}

.hero__desc {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.65;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.85rem, 2vw, 1.25rem);
  margin-bottom: 1.75rem;
}

.hero-card {
  margin: 0;
  padding: 1.15rem 1.2rem 1.25rem;
  background: rgba(26, 26, 26, 0.75);
  /* border: 1px solid var(--border); */
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, transform 0.25s;
}

.hero-card:hover {
  /* border-color: rgba(229, 9, 20, 0.4); */
  transform: translateY(-2px);
}

.hero-card__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.hero-card__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: #fff;
  border-color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--text-muted);
  background: var(--surface);
}

.hero__visual {
  position: relative;
}

.hero-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.hero-slider__track {
  position: relative;
  aspect-ratio: 3 / 2;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.hero-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}

.hero-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-slider__dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.hero-slider__dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.logo-marquee {
  padding: 2rem 0;
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 50%, var(--bg) 100%);
  overflow: hidden;
}

.logo-marquee__inner {
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.logo-marquee__wrapper {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.logo-marquee__wrapper:hover {
  animation-play-state: paused;
}

.logo-marquee__track {
  display: flex;
  flex-shrink: 0;
  gap: 3.5rem;
  padding-right: 3.5rem;
}

.logo-marquee__item {
  flex-shrink: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  opacity: 0.85;
  user-select: none;
}

.logo-marquee__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0.88;
  filter: grayscale(0.15);
}

.logo-marquee__logo img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

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

.cards-section {
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 36rem;
}

.section-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: none;
}

.section-head--row .section-sub {
  max-width: 36rem;
}

.section-head__cta {
  flex-shrink: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.cards-grid--single {
  grid-template-columns: 1fr;
  max-width: 28rem;
  margin-inline: auto;
}

.cards-grid--products {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  max-width: 1080px;
  margin-inline: auto;
}

.product-tabs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-tabs__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--border);
}

.product-tabs__tab {
  padding: 0.55rem 1.1rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.product-tabs__tab:hover {
  color: var(--text);
  background: var(--surface);
}

.product-tabs__tab.is-active {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.product-tabs__tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid var(--border);
}

.about-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.about-hero__desc {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 28rem;
}

.about-stats__item {
  padding: 1rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.about-stats__value {
  display: block;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.about-stats__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
}

.about-hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.about-hero__illu {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  object-fit: cover;
  aspect-ratio: 700 / 520;
}

.card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.card--link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.card__hint {
  display: block;
  padding: 0 1.25rem 1.15rem;
  margin-top: -0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dim);
  letter-spacing: 0.02em;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.card--product {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.card--product .card__thumb {
  align-self: center;
  width: 5.25rem;
  height: 5.25rem;
  margin: 1.25rem auto 0.75rem;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.card--product .card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.15);
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.card--product .card__title {
  padding-top: 0;
}

.card--product .card__desc {
  padding-top: 0;
}

.card__img-wrap {
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: var(--bg-elevated);
}

.card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card:hover .card__img-wrap img {
  transform: scale(1.05);
}

.card__title {
  margin: 0;
  padding: 1.15rem 1.25rem 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.card__desc {
  margin: 0;
  padding: 0 1.25rem 1.35rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 3rem clamp(1.25rem, 4vw, 2.5rem) 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.footer__tagline {
  margin: 0;
  max-width: 280px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer__heading {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer__list li {
  margin-bottom: 0.5rem;
}

.footer__list span {
  color: var(--text);
  font-weight: 500;
}

.footer__social {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer__social a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem);
  max-width: 1280px;
  margin: 0 auto;
}

.footer__bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
  }

  .hero-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

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

  .about-hero__visual {
    order: -1;
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }

  .about-stats {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero-cards {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .section-head--row {
    flex-direction: column;
    align-items: stretch;
  }

  .section-head__cta {
    width: 100%;
    text-align: center;
  }
}

/* —— Halaman produk —— */
.page-produk .produk-main {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2.5rem) 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.produk-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.produk-intro__desc {
  max-width: none;
}

.page-produk .produk-intro .hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.page-produk .produk-intro .hero__desc {
  font-size: 1.08rem;
  line-height: 1.68;
  max-width: none;
}

.produk-intro__bundle-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.35rem 0 0;
}

.produk-filters-section {
  margin-top: clamp(2rem, 5vw, 3rem);
}

.produk-panel__heading {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.produk-panel__hint {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.produk-filters {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.produk-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.produk-field__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dim);
}

.produk-select {
  width: 100%;
  max-width: 22rem;
  padding: 0.65rem 2.25rem 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  background-color: var(--surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a3a3a3' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  appearance: none;
  transition: border-color 0.2s;
}

.produk-select:hover,
.produk-select:focus {
  border-color: rgba(245, 245, 245, 0.35);
  outline: none;
}

.produk-spec-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem 1.35rem;
  max-width: 28rem;
}

.produk-spec-card__title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.produk-spec-list {
  margin: 0;
}

.produk-spec-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.5rem 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.produk-spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.produk-spec-row dt {
  margin: 0;
  font-weight: 600;
  color: var(--text-muted);
}

.produk-spec-row dd {
  margin: 0;
  color: var(--text);
}

.produk-layout__right {
  position: relative;
}

.produk-features-suite {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  width: 100%;
  min-width: 0;
}

.produk-features-lead {
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
  max-width: 42rem;
}

.produk-features-lead__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.72rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.produk-features-lead__desc {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.58;
}

.produk-features-grid--suite {
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(100%, 26rem), 1fr)
  );
  gap: 1.15rem 1.35rem;
}

.produk-features-block {
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
  padding: 1.15rem 1.25rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: none;
  min-width: 0;
}

.produk-features-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(100%, 15.5rem), 1fr)
  );
  gap: 0.85rem 1rem;
}

/* IMMTech Suite: modul + 4 kartu lebar penuh di bawah min req; grid kartu 2 kolom */
.produk-layout--suite > .produk-features-suite--suite-below {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}

.produk-features-suite.produk-features-suite--suite-below {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.produk-features-suite--suite-below .produk-features-lead {
  max-width: none;
}

.produk-features-suite--suite-below.produk-features-suite .produk-features-grid.produk-features-grid--suite {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.35rem;
}

@media (max-width: 560px) {
  .produk-features-suite--suite-below.produk-features-suite .produk-features-grid.produk-features-grid--suite {
    grid-template-columns: 1fr;
  }
}

.produk-features-grid > .produk-feature-card {
  height: 100%;
  min-width: 0;
}

.produk-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.15rem 1.25rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.produk-feature-card__icon {
  flex-shrink: 0;
  align-self: center;
  color: var(--accent);
  line-height: 0;
}

.produk-feature-card__icon svg {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}

.produk-feature-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-self: stretch;
  min-width: 0;
  gap: 0.15rem;
}

.produk-feature-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.produk-feature-card__desc {
  margin: 0;
  margin-top: 0.55rem;
  flex: 1 1 auto;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.produk-feature-card__foot {
  margin: 0;
  margin-top: auto;
  padding-top: 0.7rem;
}

.produk-feature-card__more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 245, 245, 0.35);
  transition: color 0.2s, border-color 0.2s;
}

.produk-feature-card__more:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.produk-features-block__title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.produk-features-block__text {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.produk-features-block__text--muted {
  margin-bottom: 0;
  font-size: 0.85rem;
  opacity: 0.92;
}

.produk-features-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.produk-features-list li {
  position: relative;
  margin: 0 0 0.55rem;
  padding: 0.35rem 0 0.35rem 1.1rem;
  font-size: 0.9rem;
  /* color: var(--text-muted); */
  line-height: 1.55;
}

.produk-features-list li:last-child {
  margin-bottom: 0;
}

.produk-features-list li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.produk-features-list__link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 245, 245, 0.35);
  transition: color 0.2s, border-color 0.2s;
}

.produk-features-list__link:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.produk-minreq-list {
  margin: 0;
  padding-left: 1.4rem;
  list-style: disc outside;
  list-style-position: outside;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.produk-minreq-list li {
  margin-bottom: 0.55rem;
  padding-left: 0.15rem;
}

.produk-minreq-list li::marker {
  color: var(--accent);
  font-size: 0.85em;
}

.produk-minreq-list li:last-child {
  margin-bottom: 0;
}

.produk-slider {
  position: relative;
}

.produk-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.65);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.produk-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--accent);
}

.produk-slider__arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.produk-slider__arrow--prev {
  left: 0.5rem;
}

.produk-slider__arrow--next {
  right: 0.5rem;
}

.produk-slider .hero-slider__track {
  aspect-ratio: 16 / 10;
  touch-action: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.produk-slider .hero-slider__track.is-dragging {
  cursor: grabbing;
}

.produk-slider .hero-slider__track:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.produk-slider .hero-slider__slide img {
  object-fit: cover;
  pointer-events: none;
}

.produk-below-slider {
  margin-top: 1.5rem;
}

.produk-minreq-card--all {
  padding: 1.15rem 1.25rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}

.produk-minreq-card--all:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.produk-minreq-card--all__title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.produk-faq {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--border);
  max-width: 720px;
}

.produk-faq__heading {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.produk-faq__intro {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.produk-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.produk-faq__item {
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.produk-faq__q {
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2.25rem;
}

.produk-faq__q::-webkit-details-marker {
  display: none;
}

.produk-faq__q::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s;
}

.produk-faq__item[open] .produk-faq__q::after {
  transform: translateY(-30%) rotate(225deg);
}

.produk-faq__q:hover {
  color: var(--accent);
}

.produk-faq__a {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--border);
}

.produk-faq__a p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.produk-footer .footer__bottom {
  border-top: 1px solid var(--border);
}

.produk-footer__bottom {
  text-align: center;
}

.produk-footer__link {
  color: var(--text-muted);
  transition: color 0.2s;
}

.produk-footer__link:hover {
  color: var(--accent);
}

@media (max-width: 960px) {
  .produk-layout {
    grid-template-columns: 1fr;
  }

  .produk-layout__right {
    order: -1;
  }

  .produk-spec-card {
    max-width: none;
  }

  .produk-select {
    max-width: none;
  }

}

/* —— Halaman immtechsuite_supportvihicles —— */
.page-support-v .sv-main {
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1.25rem, 4vw, 2.5rem) 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sv-hero {
  padding-bottom: 0.5rem;
}

.sv-hero__head {
  margin-bottom: 1.5rem;
}

.sv-hero__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.sv-hero__lead {
  margin: 0;
  max-width: 40rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.sv-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding-bottom: 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.sv-tab {
  position: relative;
  padding: 0.65rem 1.1rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: var(--radius) var(--radius) 0 0;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.sv-tab:hover {
  color: var(--text);
  background: var(--surface);
}

.sv-tab.is-active {
  color: var(--text);
  background: var(--surface);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.sv-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.sv-panels {
  min-height: 12rem;
}

.sv-panel[hidden] {
  display: none !important;
}

.sv-split {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.sv-filter-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem 1.35rem;
}

.sv-filter-card__title {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.sv-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.sv-field:last-child {
  margin-bottom: 0;
}

.sv-field__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent-dim);
}

.sv-select {
  max-width: none;
}

.sv-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.sv-input::placeholder {
  color: var(--text-muted);
  opacity: 0.85;
}

.sv-input:hover,
.sv-input:focus {
  border-color: rgba(245, 245, 245, 0.35);
  outline: none;
}

.sv-results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.sv-info-card {
  margin: 0;
  padding: 1rem 1.1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}

.sv-info-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.sv-info-card__title {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.sv-info-card__list {
  margin: 0;
}

.sv-info-row {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.35rem 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}

.sv-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sv-info-row dt {
  margin: 0;
  font-weight: 600;
  color: var(--text-muted);
}

.sv-info-row dd {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

.sv-back {
  margin: 2rem 0 0;
  text-align: center;
}

@media (max-width: 900px) {
  .sv-split {
    grid-template-columns: 1fr;
  }

  .sv-results__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) and (max-width: 1024px) {
  .sv-results__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* —— Halaman detail hardware —— */
.page-hw-detail .hw-detail-main {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2.5rem) 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hw-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.hw-detail__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.hw-detail__desc {
  margin: 0 0 1rem;
  font-size: 1.06rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.hw-detail__desc--muted {
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  opacity: 0.95;
}

.hw-detail__buy {
  margin-bottom: 1.25rem;
  padding-top: 0.25rem;
}

.hw-detail__buy-btn {
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

.hw-detail__buy-note {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 22rem;
  line-height: 1.45;
}

.hw-detail__back {
  margin-top: 0.5rem;
}

.hw-detail__error {
  max-width: 36rem;
  margin: 4rem auto;
  padding: 0 1.25rem;
  text-align: center;
}
.hw-detail__error h1 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}
.hw-detail__error p {
  color: var(--text-muted);
  margin: 0;
}
.hw-detail__error a {
  color: var(--accent);
}

.hw-detail__slider .hero-slider__track {
  aspect-ratio: 4 / 3;
}

@media (max-width: 960px) {
  .hw-detail-layout {
    grid-template-columns: 1fr;
  }

  .hw-detail__slider-wrap {
    order: -1;
  }
}

/* —— Honda Flash Tool: support (JSON + search) —— */
.page-hft-support .hft-support-main {
  max-width: 1200px;
}

.hft-support-hero {
  padding-bottom: 0;
}

.hft-support-toolbar {
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  /* border-radius: var(--radius-lg); */
}

.hft-search-wrap {
  display: block;
  margin-bottom: 0.65rem;
}

.hft-search-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dim);
}

.hft-search-input {
  width: 100%;
  max-width: none;
}

.hft-toolbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: 0.75rem;
}

.hft-toolbar-row--sort {
  align-items: stretch;
  justify-content: flex-start;
  gap: 1.25rem 2rem;
}

.hft-sort-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hft-sort-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dim);
}

.hft-sort-select {
  min-width: 11rem;
  max-width: 18rem;
}

.hft-perpage-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hft-perpage-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dim);
}

.hft-perpage-select {
  min-width: 5.5rem;
  max-width: 10rem;
}

.hft-support-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 12rem;
}

.hft-support-status {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hft-table-scroll {
  overflow-x: auto;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  /* border-radius: var(--radius-lg); */
  background: var(--surface);
}

.hft-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.hft-table thead {
  background: var(--bg-elevated);
}

.hft-table th {
  padding: 0.75rem 0.85rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-dim);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.hft-table td {
  padding: 0.65rem 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.hft-table tbody tr:last-child td {
  border-bottom: none;
}

.hft-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.04);
}

.hft-table__ecm {
  font-size: 0.82rem;
  padding: 0.15rem 0.4rem;
  background: var(--bg-elevated);
  border-radius: 4px;
  color: var(--text);
  white-space: nowrap;
}

.hft-table__empty,
.hft-table__loading {
  text-align: center;
  padding: 2rem 1rem !important;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.hft-table__empty.hft-support__empty--error {
  color: var(--red);
}

.hft-pagination {
  margin-top: 0.5rem;
}

.hft-pagination__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.hft-page-nums {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  max-width: 100%;
}

.hft-page-num {
  min-width: 2.35rem;
  padding: 0.45rem 0.55rem;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hft-page-num:hover:not(.is-active) {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
}

.hft-page-num.is-active {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  color: var(--accent);
  cursor: default;
}

.hft-page-ellipsis {
  padding: 0 0.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  user-select: none;
}

.hft-page-btn {
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hft-page-btn:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--accent);
}

.hft-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.hft-page-info {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hft-support-back {
  margin-top: 2rem;
  text-align: center;
}

/* —— IMMTech Suite: More Info (list + search) —— */
.support-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.support-item {
  padding: 0.9rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.support-item__title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.support-item__meta {
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .support-list {
    grid-template-columns: 1fr;
  }
}

/* —— Halaman IMMTech Suite Bundle (satu layar, horizontal) —— */
.page-bundle {
  min-height: 100vh;
}

.page-bundle .bundle-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem clamp(1rem, 4vw, 2.5rem) 4rem;
}

.bundle-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.bundle-head__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dim);
}

.bundle-head__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.bundle-head__title .text-accent {
  color: var(--red);
}

.bundle-head__title .text-white {
  color: var(--text);
}

.bundle-head__lead {
  margin: 0;
  max-width: 52ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.bundle-head__lead strong {
  color: var(--text);
  font-weight: 600;
}

.bundle-head__back {
  flex-shrink: 0;
  white-space: nowrap;
}

/* layout 2 kolom: hardware kiri, seleksi kanan */
.bundle-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

/* ---- Kartu hardware interaktif ---- */
.hw-card {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #181818, #0d0d0d);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease, box-shadow 0.35s ease;
}

.hw-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 0%),
    rgba(255, 255, 255, 0.1),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.hw-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
}

.hw-card:hover::before {
  opacity: 1;
}

.hw-card__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
}

.hw-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hw-card:hover .hw-card__img {
  transform: scale(1.05);
}

/* thumbnail vertikal di sudut kiri atas gambar */
.hw-card__thumbs {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hw-card__thumb {
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.hw-card__thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.7);
}

.hw-card__thumb.is-active {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.4);
}

.hw-card__tag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  padding: 0.3rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(229, 9, 20, 0.9);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.hw-card__body {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.35rem 1.5rem;
}

.hw-card__name {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hw-card__desc {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.hw-card__specs-label {
  margin: 0 0 0.6rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dim);
}

.hw-card__specs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.hw-card__spec {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text);
}

.hw-card__spec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.18);
}

/* ---- Pane kanan ---- */
.bundle-pane {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lic-select__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.lic-select__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.lic-select__hint {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.lic-picks {
  display: grid;
  gap: 1rem;
}

.lic-group__label {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dim);
}

.lic-group__items {
  display: grid;
  gap: 0.6rem;
}

.lic-picks__placeholder {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.lic-select--optional.is-disabled {
  opacity: 0.5;
}

.lic-select--optional.is-disabled .lic-picks {
  pointer-events: none;
}

/* ---- Opsi lisensi interaktif ---- */
.lic-pick {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.lic-pick::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.07),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.lic-pick:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.lic-pick:hover::before {
  opacity: 1;
}

.lic-pick.is-selected {
  border-color: var(--red);
  background: rgba(229, 9, 20, 0.08);
  box-shadow: 0 0 0 1px var(--red), 0 12px 30px rgba(229, 9, 20, 0.18);
}

.lic-pick__control {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lic-pick__box {
  position: relative;
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: border-color 0.2s ease;
}

.lic-select--optional .lic-pick__box {
  border-radius: 6px;
}

.lic-pick__box::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: inherit;
  background: var(--red);
  transform: scale(0);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lic-select--optional .lic-pick__box::after {
  border-radius: 2px;
}

.lic-pick.is-selected .lic-pick__box {
  border-color: var(--red);
}

.lic-pick.is-selected .lic-pick__box::after {
  transform: scale(1);
}

.lic-pick__main {
  position: relative;
  min-width: 0;
}

.lic-pick__name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.lic-pick__desc {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.lic-pick__price {
  position: relative;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.lic-pick.is-selected .lic-pick__price {
  color: #ff5560;
}

/* label tag (new / coming soon) — dipakai di license catalog & bundle */
.lic-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  line-height: 1.25;
  white-space: nowrap;
}

.lic-tag--new {
  color: #4ade80;
  background: rgba(34, 197, 94, 0.16);
}

.lic-tag--soon {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.18);
}

.lic-tag--pkg {
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.16);
}

.lic-node__name-row,
.lic-pick__name-row {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  min-width: 0;
}

.lic-amount--soon {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.lic-node--leaf.is-soon .lic-node__name {
  color: rgba(255, 255, 255, 0.55);
}

/* opsi coming-soon di bundle — tidak bisa dipilih */
.lic-pick--soon {
  cursor: default;
  opacity: 0.7;
}

.lic-pick--soon:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: none;
}

.lic-pick--soon:hover::before {
  opacity: 0;
}

.lic-pick--soon .lic-pick__box {
  opacity: 0.4;
}

.lic-pick__price--soon {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---- Pohon pemilihan lisensi (bundle) ---- */
.cfg-tree {
  display: grid;
  gap: 1.35rem;
  max-height: 62vh;
  overflow-y: auto;
  padding-right: 0.35rem;
}

.cfg-cat__name {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.cfg-group {
  margin-bottom: 0.85rem;
}

.cfg-group:last-child {
  margin-bottom: 0;
}

.cfg-group__name {
  margin: 0 0 0.45rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dim);
}

.cfg-item {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  overflow: hidden;
  margin-bottom: 0.5rem;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.cfg-item:last-child {
  margin-bottom: 0;
}

.cfg-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.07),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.cfg-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.cfg-item:hover::before {
  opacity: 1;
}

.cfg-item.is-selected {
  border-color: var(--red);
  background: rgba(229, 9, 20, 0.08);
  box-shadow: 0 0 0 1px var(--red), 0 12px 30px rgba(229, 9, 20, 0.18);
}

.cfg-item__btn {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.8rem 1rem;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.cfg-item__box {
  position: relative;
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  transition: border-color 0.2s ease;
}

.cfg-item__box::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--red);
  transform: scale(0);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cfg-item.is-selected .cfg-item__box {
  border-color: var(--red);
}

.cfg-item.is-selected .cfg-item__box::after {
  transform: scale(1);
}

.cfg-item__main {
  min-width: 0;
}

.cfg-item__name-row {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.cfg-item__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.cfg-item__price {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.cfg-item.is-selected .cfg-item__price {
  color: #ff5560;
}

/* detail "Termasuk N fitur" */
.cfg-item__inc {
  position: relative;
  padding: 0 1rem 0.7rem 3.05rem;
}

.cfg-item__inc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--accent-dim);
  cursor: pointer;
}

.cfg-item__inc-toggle::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid currentColor;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transition: transform 0.2s ease;
}

.cfg-item__inc-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.cfg-item__inc-toggle:hover {
  color: var(--text);
}

.cfg-item__inc-list {
  margin: 0.4rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cfg-item__inc-list[hidden] {
  display: none;
}

/* coming-soon (tidak bisa dipilih) */
.cfg-item--soon {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 1rem;
  opacity: 0.7;
  cursor: default;
}

.cfg-item--soon:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: none;
}

.cfg-item--soon:hover::before {
  opacity: 0;
}

.cfg-item--soon .cfg-item__box {
  opacity: 0.4;
}

.cfg-item__price--soon {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---- Ringkasan ---- */
.bundle-summary {
  position: sticky;
  bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #161616, #0d0d0d);
  padding: 1.1rem 1.25rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.bundle-summary__empty {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

[data-bundle-summary]:not(.is-empty) .bundle-summary__empty {
  display: none;
}

[data-bundle-summary].is-empty .bundle-summary__lines {
  display: none;
}

[data-bundle-summary].is-empty .bundle-summary__foot {
  opacity: 0.5;
}

.bundle-summary__lines {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.bundle-summary__line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.bundle-summary__line-label {
  color: var(--text-muted);
}

.bundle-summary__line-amount {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.bundle-summary__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}

.bundle-summary__total-wrap {
  display: flex;
  flex-direction: column;
}

.bundle-summary__total-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dim);
}

.bundle-summary__total {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.bundle-summary__cta {
  white-space: nowrap;
}

.bundle-error {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .hw-card {
    position: relative;
    top: auto;
  }

  .bundle-summary {
    position: relative;
    bottom: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hw-card,
  .hw-card__media img,
  .lic-pick,
  .lic-pick__box,
  .lic-pick__box::after {
    transition: none;
  }
}

/* =====================================================================
   HOME REDESIGN — navbar, hero circuit, bento, about, distributors
   ===================================================================== */

/* ---- Navbar: menyatu di atas, mengambang saat scroll (scoped home) ---- */
.page-home .tw-site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-home .tw-site-header__inner {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
  transition:
    max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    margin-top 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    background 0.4s ease,
    box-shadow 0.45s ease;
}

/* ---- Pill mengambang saat scroll — berlaku untuk SEMUA halaman ---- */
.tw-site-header__inner {
  transition:
    max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    margin-top 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    background 0.4s ease,
    box-shadow 0.45s ease;
}

.tw-site-header.is-scrolled {
  background: transparent;
  border-bottom-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.tw-site-header.is-scrolled .tw-site-header__inner {
  max-width: min(92%, 1160px);
  margin-top: 0.6rem;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.6);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .tw-site-header,
  .tw-site-header__inner {
    transition: none;
  }
}

/* ---- Hero: background sirkuit + matahari ---- */
.hero--home {
  padding-top: calc(var(--header-h) + clamp(1.5rem, 4vw, 3rem));
}

.hero__bg--circuit {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 110%, rgba(255, 255, 255, 0.05), transparent 60%),
    #050505;
  animation: none;
}

.hero__sun {
  position: absolute;
  top: 0;
  left: 0;
  width: 62vw;
  height: 62vw;
  max-width: 780px;
  max-height: 780px;
  border-radius: 50%;
  /* elemen di-geser sehingga PUSATNYA tepat di sudut kiri-atas (0,0) */
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 248, 235, 0.26) 18%,
    rgba(255, 240, 210, 0.09) 40%,
    transparent 66%
  );
  filter: blur(8px);
  pointer-events: none;
  animation: sun-breathe 9s ease-in-out infinite alternate;
}

@keyframes sun-breathe {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

.hero__circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__circuit-base path {
  fill: none;
}

.hero__circuit-nodes circle {
  opacity: 0.4;
  animation: node-pulse 4s ease-in-out infinite;
}
.hero__circuit-nodes circle:nth-child(even) { animation-delay: 1.3s; }
.hero__circuit-nodes circle:nth-child(3n) { animation-delay: 2.1s; }

@keyframes node-pulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.85; }
}

.hero__circuit-flow .flow {
  fill: none;
  stroke-dasharray: 150 1850;
  stroke-dashoffset: 2000;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.85))
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.45));
  animation: circuit-run 6s linear infinite;
}
.flow--1 { animation-duration: 5.5s; animation-delay: 0s; }
.flow--2 { animation-duration: 7s; animation-delay: 1.2s; }
.flow--3 { animation-duration: 6.2s; animation-delay: 2.4s; }
.flow--4 { animation-duration: 8s; animation-delay: 0.6s; }

@keyframes circuit-run {
  from { stroke-dashoffset: 2000; }
  to { stroke-dashoffset: 0; }
}

/* dim vignette di atas sirkuit agar teks kontras */
.hero--home::after {
  background: none;
  box-shadow: inset 0 0 160px rgba(0, 0, 0, 0.7);
}

/* ---- Hero split layout ---- */
.hero__inner--split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.hero__lead {
  min-width: 0;
}

/* ---- Glitch title ---- */
.hero-glitch {
  position: relative;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  animation: none;
  opacity: 1;
}

.hero-glitch::before,
.hero-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  background: transparent;
  overflow: hidden;
  pointer-events: none;
}

.hero-glitch::before {
  text-shadow: -2px 0 rgba(180, 220, 255, 0.7);
  clip-path: inset(0 0 58% 0);
  animation: glitch-top 3.4s infinite steps(2, end) alternate-reverse;
}

.hero-glitch::after {
  text-shadow: 2px 0 rgba(255, 180, 200, 0.6);
  clip-path: inset(42% 0 0 0);
  animation: glitch-bottom 2.8s infinite steps(2, end) alternate-reverse;
}

@keyframes glitch-top {
  0% { transform: translate(0); }
  20% { transform: translate(-3px, -1px); }
  40% { transform: translate(2px, 1px); }
  60% { transform: translate(-1px, 0); }
  80% { transform: translate(3px, -1px); }
  100% { transform: translate(0); }
}

@keyframes glitch-bottom {
  0% { transform: translate(0); }
  25% { transform: translate(2px, 1px); }
  50% { transform: translate(-3px, 0); }
  75% { transform: translate(1px, -1px); }
  100% { transform: translate(0); }
}

.hero__lead .hero__desc {
  max-width: 36rem;
  margin-bottom: 0;
}

/* ---- Hero interactive floating card ---- */
.hero__panel {
  display: flex;
  justify-content: flex-end;
}

.hero-float {
  position: relative;
  width: min(100%, 400px);
  padding: 1.6rem 1.6rem 1.5rem;
  border-radius: 20px;
  background: rgba(18, 18, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  overflow: hidden;
  cursor: pointer;
  outline: none;
  animation: cloud-float 7.5s ease-in-out infinite;
  transition: border-color 0.3s ease, box-shadow 0.35s ease;
}

.hero-float:hover,
.hero-float:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
}

@keyframes cloud-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-float__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 0%),
    rgba(255, 255, 255, 0.16),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hero-float:hover .hero-float__glow,
.hero-float:focus-visible .hero-float__glow {
  opacity: 1;
}

.hero-float > *:not(.hero-float__glow) {
  position: relative;
  z-index: 1;
}

.hero-float__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245, 245, 245, 0.08);
  border: 1px solid rgba(245, 245, 245, 0.16);
  border-radius: 999px;
}

.hero-float__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: node-pulse 1.8s ease-in-out infinite;
}

.hero-float__title {
  margin: 0.9rem 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-float__text {
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.hero-float__stats {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.hero-float__stats li {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.6rem 0.55rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
}

.hero-float__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.hero-float__lbl {
  font-size: 0.66rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-float__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}

.hero-float__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-float:hover .hero-float__arrow {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
}

/* ---- Bento produk ---- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: clamp(0.85rem, 1.6vw, 1.35rem);
  max-width: 1180px;
  margin-inline: auto;
}

.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
  color: inherit;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease, box-shadow 0.3s ease;
}

.pcard--feature {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.pcard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    220px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.12),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pcard:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

.pcard:hover::before {
  opacity: 1;
}

.pcard:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.pcard__media {
  position: relative;
  flex: 1 1 auto;
  min-height: 130px;
  overflow: hidden;
  background: var(--bg-elevated);
}

.pcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pcard:hover .pcard__media img {
  transform: scale(1.06);
}

.pcard__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  padding: 0.3rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.pcard__body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
  padding: 0.95rem 1.05rem 1.05rem;
}

.pcard__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 1.2rem;
}

.pcard__cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dim);
}

.pcard__price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.pcard__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.pcard--feature .pcard__title {
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
}

.pcard__desc {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pcard--feature .pcard__desc {
  font-size: 0.98rem;
  max-width: 40rem;
}

.pcard__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.15rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

.pcard__more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  color: var(--accent);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.pcard:hover .pcard__more-icon {
  transform: translate(2px, -2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
}

/* ---- About card ---- */
.about-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
}

.about-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1.1rem, 2.5vw, 1.75rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  transition: border-color 0.3s ease, box-shadow 0.35s ease;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    340px circle at var(--mx, 80%) var(--my, 20%),
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.about-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
}

.about-card:hover::before {
  opacity: 1;
}

.about-card__visual {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-card__illu {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-card:hover .about-card__illu {
  transform: scale(1.04);
}

.about-card__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.about-card__title {
  margin: 0.35rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.about-card__desc {
  margin: 0 0 0.9rem;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-card__desc:last-child {
  margin-bottom: 0;
}

/* ---- Distributors ---- */
.distributors {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 7vw, 4.5rem);
  text-align: center;
}

.distributors__head {
  margin-bottom: 1.75rem;
}

.distributors__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.distributors__sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.logo-chip {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.logo-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  background: var(--bg-elevated);
}

.logo-chip img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(0.4);
  opacity: 0.85;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.logo-chip:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ---- Responsif ---- */
@media (max-width: 900px) {
  .hero__inner--split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero__panel {
    justify-content: flex-start;
  }
  .hero-float {
    width: 100%;
  }
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .pcard--feature {
    grid-column: 1 / 3;
    grid-row: auto;
  }
  .pcard--feature .pcard__media {
    min-height: 220px;
  }
  .about-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .bento {
    grid-template-columns: 1fr;
  }
  .pcard--feature {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__sun,
  .hero__circuit-nodes circle,
  .hero__circuit-flow .flow,
  .hero-float,
  .hero-glitch::before,
  .hero-glitch::after {
    animation: none;
  }
}

/* =====================================================================
   Browse License — katalog lisingsi (immtechsuite-license.html)
   ===================================================================== */
.lic-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2.5rem) clamp(1rem, 4vw, 2.5rem) 4rem;
}

.lic-hero {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.lic-hero__eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent, #e11d48);
}

.lic-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display, inherit);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.lic-hero__title .text-accent {
  color: var(--color-accent, #e11d48);
}

.lic-hero__lead {
  max-width: 62ch;
  margin: 0;
  color: var(--color-muted, #5b6470);
  line-height: 1.65;
}

.lic-hero__note {
  margin: 0.9rem 0 0;
  font-size: 0.85rem;
  color: var(--color-muted, #5b6470);
  opacity: 0.85;
}

.lic-loading {
  color: var(--color-muted, #5b6470);
}

.lic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.25rem;
}

.lic-cat {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(160deg, #16171a 0%, #0c0c0e 100%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease, border-color 0.3s ease;
}

.lic-cat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    320px circle at var(--mx, 50%) var(--my, 0%),
    rgba(255, 255, 255, 0.16),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.lic-cat:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.5);
}

.lic-cat:hover::before {
  opacity: 1;
}

.lic-cat__head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lic-cat__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display, inherit);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f8fafc;
}

.lic-cat__desc {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.lic-cat__price {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.lic-cat__price-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lic-cat__price-value {
  font-family: var(--font-display, inherit);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fb7185;
  white-space: nowrap;
}

.lic-tree {
  position: relative;
  padding: 0.5rem 0.65rem 0.85rem;
}

/* node */
.lic-node {
  position: relative;
}

.lic-node--group > .lic-node__children {
  margin-left: 0.85rem;
  padding-left: 0.65rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.lic-node__toggle {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.6rem 0.6rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: #e5e7eb;
  transition: background 0.2s ease, color 0.2s ease;
}

.lic-node__toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.lic-node__chevron {
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-left: 5px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

.lic-node__toggle[aria-expanded="true"] .lic-node__chevron {
  transform: rotate(90deg);
}

.lic-node__name {
  flex: 1 1 auto;
  font-size: 0.92rem;
  font-weight: 500;
}

.lic-node--leaf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.6rem 0.5rem 1.15rem;
}

.lic-node--leaf .lic-node__name {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.lic-node__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lic-node__link:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lic-ext-icon {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.lic-node__link:hover .lic-ext-icon {
  opacity: 1;
}

.lic-node__main {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.lic-inc {
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.5);
}

.lic-node__count {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

.lic-node__price {
  flex-shrink: 0;
  font-family: var(--font-display, inherit);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fb7185;
  white-space: nowrap;
}

.lic-amount {
  flex-shrink: 0;
  color: #f8fafc;
}

.lic-amount--inc {
  font-size: 0.72rem;
  font-weight: 600;
  color: #4ade80;
}

/* tags */
.lic-node__tags {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.lic-badge {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}

.lic-badge--inc {
  color: #4ade80;
  background: rgba(34, 197, 94, 0.18);
}

.lic-badge--addon {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.2);
}

.lic-badge--special {
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.22);
}

.lic-amount {
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.lic-amount--addon {
  color: #fbbf24;
}

.lic-node__children[hidden] {
  display: none;
}

@media (max-width: 560px) {
  .lic-grid {
    grid-template-columns: 1fr;
  }
  .lic-cat__head {
    flex-direction: column;
  }
  .lic-cat__price {
    align-items: flex-start;
    text-align: left;
  }
}

/* =====================================================================
   Support detail — satu halaman, banyak data (support-detail.html)
   ===================================================================== */
.sd-main {
  max-width: 980px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) clamp(1rem, 4vw, 2.5rem) 4rem;
}

.sd-back {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sd-back:hover {
  color: var(--text);
}

.sd-hero {
  margin-bottom: 1.5rem;
}

.sd-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dim);
}

.sd-hero__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.sd-hero__subtitle {
  margin: 0;
  max-width: 60ch;
  color: var(--text-muted);
  line-height: 1.6;
}

.sd-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.85rem;
}

.sd-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--text-muted);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease,
    transform 0.2s ease;
}

.sd-tab:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.sd-tab.is-active {
  color: #fff;
  border-color: var(--red);
  background: rgba(229, 9, 20, 0.12);
}

.sd-tab__count {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.05rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.sd-tab.is-active .sd-tab__count {
  background: rgba(229, 9, 20, 0.25);
  color: #fff;
}

.sd-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
}

.sd-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.sd-item:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.sd-item__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.sd-item__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.sd-empty {
  padding: 2rem 0;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .sd-tab,
  .sd-item {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lic-cat,
  .lic-node__chevron,
  .lic-node__toggle {
    transition: none;
  }
}
