:root {
  --ink: #07111f;
  --ink-2: #122033;
  --muted: #677386;
  --line: #e7eaf0;
  --paper: #fbfaf7;
  --white: #fff;
  --blue: #2348ff;
  --coral: #ff694c;
  --lime: #cce968;
  --violet: #b8a3ff;
  --radius: 22px;
  --shadow: 0 20px 60px rgba(7, 17, 31, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.announcement { background: var(--ink); color: #dce4ef; font-size: 12px; }
.announcement__inner { min-height: 35px; display: flex; justify-content: space-between; align-items: center; }
.announcement p { margin: 0; }
.announcement a { color: #fff; font-weight: 700; }
.pulse { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255,105,76,.13); }

.header { position: sticky; top: 0; z-index: 40; background: rgba(251,250,247,.88); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: .25s ease; }
.header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(7,17,31,.06); }
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Sora", sans-serif; font-size: 21px; font-weight: 700; letter-spacing: -.35px; }
.brand__mark { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 9px 9px 9px 3px; background: var(--blue); color: #fff; font-size: 17px; transform: rotate(-4deg); }
.nav__links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav__links a { position: relative; color: #465267; font-size: 14px; font-weight: 600; }
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.nav__links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -11px; height: 2px; background: var(--blue); border-radius: 2px; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.icon-button { position: relative; display: grid; place-items: center; width: 40px; height: 40px; border: 0; border-radius: 50%; background: transparent; cursor: pointer; transition: .2s ease; }
.icon-button:hover { background: #eef0f5; }
.icon-button svg { width: 20px; height: 20px; }
.badge { position: absolute; top: 1px; right: 0; min-width: 16px; height: 16px; padding: 0 4px; display: grid; place-items: center; border: 2px solid var(--paper); border-radius: 10px; background: var(--coral); color: #fff; font-size: 9px; font-weight: 700; opacity: 0; transform: scale(.5); transition: .2s; }
.badge.show { opacity: 1; transform: scale(1); }
.button { min-height: 42px; padding: 0 20px; border: 1px solid transparent; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: transparent; font-weight: 700; font-size: 13px; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--ghost { border-color: #d9dde5; }
.button--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(35,72,255,.2); }
.button--primary:hover { background: #1738dd; }
.profile-menu { position: relative; display: none; }
.profile-menu.is-visible { display: block; }
.profile-menu__trigger {
  min-height: 42px;
  padding: 6px 10px 6px 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d9dde5;
  border-radius: 999px;
  background: #fff;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: .2s ease;
}
.profile-menu__trigger:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
.profile-menu__avatar {
  position: relative;
  overflow: hidden;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--coral));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  background-size: cover;
  background-position: center;
  flex: 0 0 auto;
}
.profile-menu__avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.profile-menu__avatar .profile-avatar-initials { position: relative; z-index: 1; }
.profile-menu__avatar.has-image .profile-avatar-initials { color: transparent; }
.profile-menu__name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; font-weight: 700; }
.profile-menu__chevron { color: var(--muted); font-size: 12px; transition: transform .2s ease; }
.profile-menu.open .profile-menu__chevron { transform: rotate(180deg); }
.profile-menu__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  padding: 10px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .2s ease;
}
.profile-menu.open .profile-menu__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.profile-menu__dropdown a {
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
}
.profile-menu__dropdown a:hover { background: #f3f5f8; }
.menu-button { display: none; width: 42px; height: 42px; border: 0; background: none; cursor: pointer; }
.menu-button span { display: block; width: 22px; height: 2px; margin: 6px auto; background: var(--ink); transition: .25s; }
.mobile-menu { display: none; }
.mobile-profile-menu {
  display: none;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.mobile-profile-menu.is-visible { display: grid; gap: 4px; }
.mobile-profile-menu__summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
}
.mobile-profile-menu__summary strong { display: block; font-size: 13px; }
.mobile-profile-menu__summary small { color: var(--muted); font-size: 10px; }
.mobile-profile-menu__avatar { width: 34px; height: 34px; font-size: 11px; }

.hero { position: relative; min-height: clamp(250px, 23vw, 300px); margin-top: 16px; overflow: hidden; border-radius: 22px; background: #07111f; color: #fff; isolation: isolate; }
.hero__backdrop { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5,12,24,.99) 0%, rgba(5,12,24,.95) 35%, rgba(5,12,24,.22) 65%), url("assets/majalapak-hero.jpg") center/cover no-repeat; transition: opacity .4s ease, transform .7s ease; }
.hero__backdrop::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 18% 110%, rgba(35,72,255,.32), transparent 35%); }
.hero__content { width: 58%; padding: 28px 0 28px 44px; }
.eyebrow, .kicker { color: #5c6a80; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.eyebrow { width: fit-content; padding: 8px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; color: #d7deeb; background: rgba(255,255,255,.05); backdrop-filter: blur(8px); letter-spacing: .7px; }
.eyebrow__dot { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: var(--lime); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Sora", sans-serif; font-weight: 700; }
.hero h1 { margin: 12px 0 10px; font-size: clamp(28px, 3.25vw, 40px); line-height: 1.05; letter-spacing: -.8px; }
.hero h1 em { color: #8da3ff; font-style: normal; }
.hero__content > p { max-width: 470px; color: #aeb8c8; font-size: 13px; line-height: 1.5; }
.hero__actions { display: flex; align-items: center; gap: 18px; margin-top: 16px; }
.button--large { min-height: 44px; padding-inline: 20px; border-radius: 11px; }
.button--light { background: #fff; color: var(--ink); box-shadow: 0 14px 35px rgba(0,0,0,.2); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: #d8dfeb; font-size: 13px; font-weight: 700; }
.play { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-size: 9px; }
.hero__proof { display: flex; align-items: center; gap: 12px; margin-top: 15px; }
.avatar-stack { display: flex; padding-left: 8px; }
.avatar-stack span { width: 31px; height: 31px; margin-left: -8px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; background: #ffe2d3; color: #7a2f1b; font-size: 8px; font-weight: 800; }
.avatar-stack span:nth-child(2) { background: #cad7ff; color: #1d398e; }
.avatar-stack span:nth-child(3) { background: #d7f09a; color: #3c5813; }
.avatar-stack span:nth-child(4) { background: #fff; color: var(--ink); }
.hero__proof p { margin: 0; color: #8490a4; font-size: 10px; line-height: 1.45; }
.hero__proof strong { color: #fff; font-size: 11px; }
.hero__dots { position: absolute; left: 50%; bottom: 12px; display: flex; gap: 7px; transform: translateX(-50%); }
.hero__dots button { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 6px; background: rgba(255,255,255,.35); cursor: pointer; transition: .25s; }
.hero__dots button.active { width: 24px; background: #fff; }
.hero__float { position: absolute; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.16); background: rgba(7,17,31,.7); box-shadow: 0 12px 35px rgba(0,0,0,.28); backdrop-filter: blur(12px); animation: float 4.5s ease-in-out infinite; }
.hero__float--one { right: 5%; bottom: 15%; padding: 8px 12px; border-radius: 11px; font-size: 10px; font-weight: 700; }
.hero__float--one span { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); }
.hero__float--two { top: 11%; right: 25%; flex-direction: column; align-items: flex-start; padding: 10px 13px; border-radius: 12px; animation-delay: -2s; }
.hero__float--two strong { color: #b7c5ff; font-family: "Sora", sans-serif; font-size: 18px; letter-spacing: -.3px; }
.hero__float--two span { color: #aab3c3; font-size: 8px; }
@keyframes float { 50% { transform: translateY(-7px); } }

.trust { min-height: 78px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; border-bottom: 1px solid var(--line); }
.trust article { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 0 34px; border-right: 1px solid var(--line); }
.trust article:last-child { border: 0; }
.trust__icon { flex: 0 0 auto; width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; background: #e8edff; color: var(--blue); }
.trust article:nth-child(2) .trust__icon { background: #ffebe5; color: var(--coral); }
.trust article:nth-child(3) .trust__icon { background: #eff7d7; color: #5b7e19; }
.trust svg { width: 19px; height: 19px; }
.trust strong { font-size: 13px; }
.trust p { margin: 3px 0 0; color: var(--muted); font-size: 10px; }

.section { padding-block: 68px 6px; }
#categories { padding-top: 14px; }
.section__heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 30px; }
.section__heading h2 { margin: 8px 0 0; font-size: clamp(29px, 3vw, 40px); letter-spacing: -1px; line-height: 1.08; }
.arrow-link { padding-bottom: 5px; border-bottom: 1px solid #b8bec8; font-size: 12px; font-weight: 700; }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.category { position: relative; min-width: 0; padding: 0 0 17px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; text-align: left; cursor: pointer; transition: .25s ease; }
.category:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.category__art { position: relative; height: 138px; margin-bottom: 17px; display: grid; place-items: center; overflow: hidden; background: #dfe6ff; }
.category__art::before, .category__art::after { content: ""; position: absolute; width: 100px; height: 100px; border: 1px solid rgba(255,255,255,.55); border-radius: 22px; transform: rotate(24deg); }
.category__art::after { width: 60px; height: 60px; transform: translate(80px,-45px) rotate(15deg); }
.category__art b { position: relative; z-index: 2; font-family: "Sora", sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -.2px; }
.category__art i { position: absolute; right: 20px; bottom: 15px; font-size: 22px; font-style: normal; }
.category--peach .category__art { background: #ffd5c8; }
.category--lime .category__art { background: var(--lime); }
.category--violet .category__art { background: var(--violet); }
.category--all .category__art { background: var(--ink); color: #fff; }
.category--all .category__art::before, .category--all .category__art::after { border-color: rgba(255,255,255,.16); }
.category > span:nth-child(2) { display: flex; flex-direction: column; padding-inline: 17px; }
.category strong { font-size: 13px; }
.category small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.category__arrow { position: absolute; right: 17px; bottom: 20px; font-size: 15px; }

.section__heading--products { align-items: end; justify-content: flex-end; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { min-width: 0; border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; cursor: pointer; transition: .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card:focus-visible { outline: 3px solid rgba(35,72,255,.28); outline-offset: 4px; }
.product-card.hidden { display: none; }
.cover { position: relative; height: 208px; overflow: hidden; }
.cover::after { content: ""; position: absolute; inset: auto -20% -60% 20%; height: 130px; border-radius: 50%; background: rgba(255,255,255,.16); transform: rotate(-15deg); }
.cover--social { background: #4d65ff; }
.cover--course { background: #ff896a; }
.cover--notion { background: #d7ed82; }
.cover--game { background: #7666e9; }
.custom-cover {
  background: linear-gradient(135deg, #2348ff, #ff694c);
  background-size: cover;
  background-position: center;
}
.product-card--uploaded .product-card__cover {
  aspect-ratio: 16 / 9;
  height: auto;
}
.custom-cover__overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
}
.custom-cover__overlay span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}
.label { position: absolute; z-index: 3; top: 13px; left: 13px; padding: 5px 8px; border-radius: 6px; background: #fff; color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: .7px; }
.label--dark { color: #c44a2f; }
.label--green { color: #405f08; }
.label--orange { color: #4935b5; }
.social-art, .course-art, .notion-art, .game-art { position: absolute; z-index: 2; inset: 0; display: flex; align-items: center; justify-content: center; font-family: "Sora", sans-serif; }
.social-art { flex-direction: column; color: #fff; transform: rotate(-4deg); }
.social-art span { font-size: 19px; letter-spacing: 4px; }
.social-art strong { font-size: 40px; letter-spacing: -1px; line-height: .95; }
.social-art i { padding: 3px 25px; background: var(--coral); font-size: 13px; font-style: normal; letter-spacing: 5px; }
.course-art { flex-direction: column; align-items: flex-start; padding-left: 32px; color: var(--ink); }
.course-art small { font-size: 9px; letter-spacing: 2.5px; }
.course-art strong { width: 190px; margin: 5px 0 13px; font-size: 31px; line-height: .98; letter-spacing: -.8px; }
.course-art span { padding: 6px 9px; border-radius: 6px; background: var(--ink); color: #fff; font-family: "Plus Jakarta Sans", sans-serif; font-size: 9px; }
.notion-art { gap: 13px; color: var(--ink); }
.notion-art > b { width: 70px; height: 70px; display: grid; place-items: center; border: 3px solid var(--ink); border-radius: 12px; background: #fff; box-shadow: 8px 8px 0 var(--ink); font-size: 41px; font-weight: 700; }
.notion-art div { display: flex; flex-direction: column; }
.notion-art span { font-size: 11px; letter-spacing: 1.4px; }
.notion-art strong { font-size: 35px; letter-spacing: -.8px; }
.game-art { flex-direction: column; align-items: flex-start; padding-left: 39px; color: #fff; }
.game-art span { padding: 3px 9px; border: 1px solid rgba(255,255,255,.5); border-radius: 10px; font-size: 10px; }
.game-art strong { margin-top: 5px; font-size: 33px; line-height: .98; letter-spacing: -.7px; }
.game-art i { position: absolute; right: 30px; bottom: 28px; color: var(--lime); font-size: 40px; font-style: normal; }
.product-card__body { padding: 17px; }
.product-card__category { color: var(--blue); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; }
.product-card h3 { height: auto; margin: 0 0 12px; font-family: "Sora", sans-serif; font-size: 15px; font-weight: 600; line-height: 1.32; letter-spacing: -.15px; }
.product-card__excerpt {
  min-height: 34px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.rating { color: #5f6877; font-size: 9px; }
.rating > span { color: #ff9e2e; letter-spacing: 1px; }
.rating small { color: #9aa2ae; }
.product-card__seller { display: flex; align-items: center; gap: 8px; margin-top: 14px; padding-top: 13px; border-top: 1px solid #edf0f4; color: #6a7484; font-size: 9px; }
.seller-avatar { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: #ffd7c8; color: #8c3b24; font-size: 7px; font-weight: 800; }
.seller-avatar--two { background: #d9d1ff; color: #493a93; }
.seller-avatar--three { background: #dceea0; color: #49620e; }
.seller-avatar--four { background: #ced8ff; color: #273f96; }
.product-card__seller b { color: var(--blue); }
.product-card__price { display: flex; align-items: baseline; gap: 8px; margin-top: 0; }
.product-card__price strong { font-family: "Sora", sans-serif; font-size: 16px; font-weight: 700; letter-spacing: -.2px; }
.product-card__price del { color: #9aa2ae; font-size: 9px; }
.product-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 15px; }
.product-card__actions .button { min-height: 36px; padding-inline: 10px; border-radius: 9px; font-size: 11px; }
.center-action { display: flex; justify-content: center; margin-top: 34px; }
.button--outline { border-color: #ccd1d9; }
.empty-state { display: none; padding: 50px; border: 1px dashed #c8ced8; border-radius: 16px; color: var(--muted); text-align: center; }
.empty-state.show { display: block; }

.product-page { padding: 34px 0 155px; }
.product-page__back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; color: var(--muted); font-size: 12px; font-weight: 800; }
.product-layout { display: grid; grid-template-columns: minmax(280px, .92fr) minmax(0, 1.08fr); gap: 34px; align-items: start; }
.product-gallery { position: sticky; top: 100px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.product-gallery .cover { height: clamp(330px, 38vw, 520px); }
.product-summary { min-width: 0; }
.product-summary__category { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; }
#uploadedProductLayout #uploadedProductCategory { display: none !important; }
.product-summary h1 { margin: 10px 0 13px; color: var(--ink); font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: 0; }
.product-summary__lead { color: var(--muted); font-size: 15px; line-height: 1.75; }
.product-summary__meta { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0; }
.product-summary__meta span { padding: 9px 11px; border: 1px solid var(--line); border-radius: 10px; color: #596678; font-size: 11px; font-weight: 800; }
.product-summary__meta span:first-child { color: #d47716; }
.product-seller { display: flex; align-items: center; gap: 12px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-seller strong { display: block; font-size: 13px; }
.product-seller small { color: var(--muted); font-size: 10px; }
.product-includes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 22px; }
.product-includes span { position: relative; min-height: 42px; padding: 12px 12px 12px 32px; border-radius: 10px; background: #f2f5fa; color: #3d4858; font-size: 11px; font-weight: 800; line-height: 1.35; }
.product-includes span::before { content: "✓"; position: absolute; top: 12px; left: 12px; color: #5d7f19; font-weight: 800; }
.checkout-box { position: fixed; left: 50%; bottom: 18px; z-index: 35; width: min(1180px, calc(100% - 40px)); margin-top: 28px; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 18px 55px rgba(7,17,31,.18); transform: translateX(-50%); }
.checkout-box__price small { display: block; color: var(--muted); font-size: 10px; font-weight: 800; }
.checkout-box__price strong { display: inline-block; margin-top: 5px; font-family: "Sora", sans-serif; font-size: 28px; letter-spacing: 0; }
.checkout-box__price del { margin-left: 8px; color: #9aa2ae; font-size: 12px; }
.checkout-box__actions { display: grid; grid-template-columns: 48px minmax(150px, 1fr); gap: 10px; width: min(320px, 44%); }
.checkout-box__actions .button { width: 100%; min-height: 46px; }
.cart-icon-button { width: 48px; height: 46px; display: grid; place-items: center; border: 1px solid #ccd1d9; border-radius: 11px; background: transparent; color: var(--ink); cursor: pointer; transition: transform .2s ease, background .2s ease; }
.cart-icon-button:hover { background: #eef0f5; transform: translateY(-2px); }
.cart-icon-button svg { width: 20px; height: 20px; }
.product-section-detail { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.product-section-detail h2 { margin-bottom: 12px; font-size: 24px; letter-spacing: 0; }
.product-section-detail p { color: var(--muted); font-size: 13px; line-height: 1.8; }

.seller-banner { position: relative; min-height: 375px; margin-top: 95px; margin-bottom: 90px; display: flex; overflow: hidden; border-radius: 28px; background: var(--ink); color: #fff; }
.seller-banner::before { content: ""; position: absolute; width: 430px; height: 430px; right: -90px; top: -150px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 70px rgba(35,72,255,.12), 0 0 0 140px rgba(35,72,255,.07); }
.seller-banner__copy { position: relative; z-index: 2; width: 55%; padding: 58px 0 50px 65px; }
.kicker--light { color: #849bff; }
.seller-banner h2 { margin: 10px 0 15px; font-size: 42px; line-height: 1.08; letter-spacing: -1.1px; }
.seller-banner h2 em { color: var(--coral); font-style: normal; }
.seller-banner__copy p { max-width: 500px; color: #9ba7b9; font-size: 13px; line-height: 1.65; }
.button--coral { margin-top: 10px; background: var(--coral); color: #fff; box-shadow: 0 13px 30px rgba(255,105,76,.2); }
.seller-visual { position: relative; flex: 1; }
.revenue-card { position: absolute; z-index: 2; top: 58px; right: 55px; width: 310px; padding: 23px; border: 1px solid rgba(255,255,255,.17); border-radius: 19px; background: rgba(255,255,255,.1); box-shadow: 0 25px 60px rgba(0,0,0,.3); backdrop-filter: blur(13px); transform: rotate(3deg); }
.revenue-card > span { color: #9ba6b7; font-size: 9px; }
.revenue-card > strong { display: block; margin: 6px 0; font-family: "Sora", sans-serif; font-size: 25px; font-weight: 700; letter-spacing: -.45px; }
.revenue-card small { color: #9ba6b7; font-size: 8px; }
.revenue-card small b { color: var(--lime); }
.chart { height: 75px; margin-top: 17px; display: flex; align-items: end; gap: 10px; }
.chart i { flex: 1; height: 25%; border-radius: 4px 4px 1px 1px; background: #536378; }
.chart i:nth-child(2) { height: 37%; }.chart i:nth-child(3) { height: 31%; }.chart i:nth-child(4) { height: 55%; background: #647cff; }.chart i:nth-child(5) { height: 48%; background: #647cff; }.chart i:nth-child(6) { height: 72%; background: var(--coral); }.chart i:nth-child(7) { height: 92%; background: var(--coral); }
.order-toast { position: absolute; z-index: 3; right: 255px; bottom: 45px; width: 220px; padding: 12px; display: flex; align-items: center; gap: 10px; border-radius: 12px; background: #fff; color: var(--ink); box-shadow: 0 16px 40px rgba(0,0,0,.35); animation: float 4s ease-in-out infinite; }
.order-toast > span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: #e9f5c5; color: #527611; font-weight: 800; }
.order-toast div { display: flex; flex-direction: column; }
.order-toast strong { font-size: 10px; }.order-toast small { color: var(--muted); font-size: 8px; }
.spark { position: absolute; color: var(--coral); font-size: 23px; }
.spark--one { top: 34px; right: 35px; }.spark--two { bottom: 40px; right: 55px; color: #7188ff; font-size: 16px; }

footer { background: #050b13; color: #fff; }
.footer__main { padding-block: 60px 50px; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 65px; }
.brand--footer .brand__mark { background: var(--coral); }
.footer__brand p { max-width: 290px; margin-top: 20px; color: #7f8998; font-size: 12px; line-height: 1.7; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links strong { margin-bottom: 6px; font-family: "Sora", sans-serif; font-size: 12px; font-weight: 700; }
.footer__links a { color: #858f9f; font-size: 11px; transition: .2s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { padding-block: 22px; display: flex; justify-content: space-between; border-top: 1px solid #1a2230; color: #616c7b; font-size: 9px; }

.search-overlay { position: fixed; inset: 0; z-index: 100; display: grid; place-items: start center; padding-top: 14vh; background: rgba(5,11,19,.88); backdrop-filter: blur(15px); opacity: 0; visibility: hidden; transition: .25s; }
.search-overlay.open { opacity: 1; visibility: visible; }
.search-overlay__close { position: absolute; top: 30px; right: 35px; border: 0; background: none; color: #fff; font-size: 35px; cursor: pointer; }
.search-overlay__box { width: min(670px, calc(100% - 40px)); }
.search-overlay__box .kicker { color: #8fa4ff; }
.search-field { margin-top: 14px; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid #7b8696; }
.search-field svg { flex: 0 0 auto; width: 27px; height: 27px; color: #fff; }
.search-field input { width: 100%; padding: 18px 0; border: 0; outline: 0; background: transparent; color: #fff; font-family: "Sora", sans-serif; font-size: clamp(22px, 4vw, 38px); letter-spacing: -.6px; }
.search-field input::placeholder { color: #697384; }
.search-overlay__box p { margin-top: 15px; color: #717d8f; font-size: 10px; }
kbd { padding: 2px 5px; border: 1px solid #566174; border-radius: 4px; color: #aeb8c7; font-family: inherit; }
.toast { position: fixed; z-index: 110; right: 25px; bottom: 25px; display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 12px; background: var(--ink); color: #fff; box-shadow: var(--shadow); opacity: 0; transform: translateY(20px); pointer-events: none; transition: .25s; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast span { color: var(--lime); }.toast p { margin: 0; font-size: 11px; font-weight: 700; }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .menu-button { display: block; }
  .desktop-cta { display: none; }
  .profile-menu { display: none !important; }
  .mobile-menu { position: absolute; top: 78px; left: 20px; right: 20px; padding: 18px; display: flex; flex-direction: column; gap: 4px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s; }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu a { padding: 11px; font-size: 13px; font-weight: 600; }
  .hero { min-height: 285px; }
  .hero__content { width: 68%; padding: 26px 0 26px 36px; }
  .hero__float--two { right: 10%; }
  .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .product-gallery .cover { height: 340px; }
  .seller-banner__copy { width: 53%; padding-left: 45px; }
  .revenue-card { right: 25px; width: 270px; }
  .order-toast { right: 170px; }
  .footer__main { grid-template-columns: 1.7fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 28px, 560px); }
  .announcement__inner { justify-content: center; text-align: center; }
  .announcement a { display: none; }
  .nav { height: 67px; }
  .login-button, .wishlist-trigger { display: none; }
  .mobile-menu { top: 67px; left: 14px; right: 14px; }
  .hero { min-height: 360px; margin-top: 10px; border-radius: 18px; }
  .hero__backdrop { background: linear-gradient(180deg, rgba(5,12,24,.98) 0%, rgba(5,12,24,.9) 58%, rgba(5,12,24,.28) 100%), url("assets/majalapak-hero.jpg") 64% bottom/auto 40% no-repeat; }
  .hero__content { width: 100%; padding: 24px 20px; }
  .hero h1 { margin-top: 12px; font-size: 29px; letter-spacing: -.5px; line-height: 1.08; }
  .hero__content > p { font-size: 12px; line-height: 1.45; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 10px; margin-top: 14px; }
  .button--light { width: 100%; }
  .text-link { justify-content: center; }
  .hero__proof { margin-top: 12px; }
  .hero__float { display: none; }
  .trust { padding-block: 12px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; gap: 6px; }
  .trust article { min-width: 0; width: 100%; flex-direction: column; justify-content: flex-start; align-items: center; gap: 7px; padding: 0 4px; border: 0; text-align: center; }
  .trust__icon { width: 30px; height: 30px; border-radius: 9px; }
  .trust svg { width: 15px; height: 15px; }
  .trust strong { display: block; font-size: 10px; line-height: 1.15; }
  .trust p { margin-top: 3px; font-size: 8px; line-height: 1.25; }
  .section { padding-top: 52px; }
  #categories { padding-top: 12px; }
  .section__heading { align-items: flex-start; }
  .section__heading h2 { font-size: 31px; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .category { padding-bottom: 12px; border-radius: 14px; }
  .category__art { height: 92px; margin-bottom: 10px; }
  .category__art b { font-size: 14px; }
  .category__art i { right: 11px; bottom: 9px; font-size: 14px; }
  .category > span:nth-child(2) { padding-inline: 10px; }
  .category strong { font-size: 10px; line-height: 1.25; }
  .category small { margin-top: 3px; font-size: 8px; line-height: 1.25; }
  .category__arrow { right: 10px; bottom: 13px; font-size: 12px; }
  .section__heading--products { flex-direction: column; gap: 20px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .cover { height: 160px; }
  .product-card__body { padding: 12px; }
  .product-card h3 { height: auto; margin-bottom: 10px; font-size: 13px; line-height: 1.3; }
  .social-art span { font-size: 13px; letter-spacing: 2.5px; }.social-art strong { font-size: 29px; letter-spacing: -.65px; }.social-art i { font-size: 10px; letter-spacing: 3px; }
  .course-art { padding-left: 19px; }.course-art strong { width: 120px; font-size: 23px; letter-spacing: -.45px; }
  .notion-art { transform: scale(.8); }.notion-art > b { width: 58px; height: 58px; }
  .game-art { padding-left: 20px; }.game-art strong { font-size: 25px; letter-spacing: -.4px; }
  .product-card__seller { white-space: nowrap; overflow: hidden; }
  .product-card__price { flex-direction: column; gap: 2px; }
  .product-card__actions { grid-template-columns: 1fr; }
  .product-card__actions .button { min-height: 34px; }
  .product-page { padding-top: 22px; padding-bottom: 190px; }
  .product-gallery .cover { height: 250px; }
  .product-summary h1 { font-size: 29px; }
  .product-summary__lead { font-size: 13px; line-height: 1.65; }
  .product-includes { grid-template-columns: 1fr; }
  .checkout-box { left: 0; right: 0; bottom: 0; width: 100%; padding: 14px; align-items: stretch; flex-direction: column; border-right: 0; border-bottom: 0; border-left: 0; border-radius: 16px 16px 0 0; transform: none; }
  .checkout-box__price { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
  .checkout-box__price small { display: none; }
  .checkout-box__price del { margin-left: 0; }
  .checkout-box__actions { grid-template-columns: 46px 1fr; width: 100%; }
  .cart-icon-button { width: 46px; height: 46px; }
  .seller-banner { min-height: 640px; margin-top: 70px; margin-bottom: 65px; flex-direction: column; }
  .seller-banner__copy { width: 100%; padding: 43px 26px 20px; }
  .seller-banner h2 { font-size: 35px; letter-spacing: -.7px; }
  .seller-visual { min-height: 300px; }
  .revenue-card { top: 25px; right: 50%; width: min(290px, 80vw); transform: translateX(50%) rotate(2deg); }
  .order-toast { right: auto; left: 22px; bottom: 22px; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__links:last-child { display: none; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

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

/* ════════════════════════════════════
   THEME TOGGLE BUTTON
════════════════════════════════════ */
.theme-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
}
.theme-toggle { display: none !important; }
.theme-toggle:hover { background: #eef0f5; }
.theme-toggle svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.icon-sun  { display: none; }
.icon-moon { display: block; }

/* ════════════════════════════════════
   DARK MODE — index.html / styles.css
════════════════════════════════════ */
[data-theme="dark"] {
  --paper: #07111f;
  --ink:   #dce8f5;
  --ink-2: #1a2d42;
  --muted: #7a8fa5;
  --line:  rgba(255,255,255,.09);
  --white: #111c2d;
  --shadow: 0 20px 60px rgba(0,0,0,.4);
}
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle { color: #dce8f5; }
[data-theme="dark"] .theme-toggle:hover { background: #1a2d42; }

[data-theme="dark"] body { background: #07111f; color: #dce8f5; }

/* Header */
[data-theme="dark"] .header { background: rgba(7,17,31,.92); border-color: rgba(255,255,255,.07); }
[data-theme="dark"] .nav__links a { color: #7a8fa5; }
[data-theme="dark"] .nav__links a:hover,
[data-theme="dark"] .nav__links a.active { color: #dce8f5; }
[data-theme="dark"] .icon-button:hover { background: #1a2d42; }
[data-theme="dark"] .icon-button svg { color: #c0d0e0; }
[data-theme="dark"] .button--ghost { border-color: rgba(255,255,255,.18); color: #dce8f5; }
[data-theme="dark"] .button--ghost:hover { background: rgba(255,255,255,.06); }
[data-theme="dark"] .profile-menu__trigger,
[data-theme="dark"] .profile-menu__dropdown { background: #111c2d; border-color: rgba(255,255,255,.1); color: #dce8f5; }
[data-theme="dark"] .profile-menu__dropdown a:hover { background: rgba(255,255,255,.06); }
[data-theme="dark"] .mobile-menu { background: #111c2d; border-color: rgba(255,255,255,.1); }
[data-theme="dark"] .mobile-menu a { color: #c8d4e3; }
[data-theme="dark"] .mobile-profile-menu { border-top-color: rgba(255,255,255,.1); }

/* Announcement */
[data-theme="dark"] .announcement { background: #050b13; }

/* Trust strip */
[data-theme="dark"] .trust { border-bottom-color: rgba(255,255,255,.08); }
[data-theme="dark"] .trust article { border-right-color: rgba(255,255,255,.08); }
[data-theme="dark"] .trust p { color: #7a8fa5; }
[data-theme="dark"] .trust strong { color: #dce8f5; }

/* Section headings */
[data-theme="dark"] h2 { color: #dce8f5; }
[data-theme="dark"] .kicker { color: #5c6a80; }
[data-theme="dark"] .arrow-link { color: #dce8f5; border-bottom-color: rgba(255,255,255,.22); }

/* Category cards */
[data-theme="dark"] .category { background: #111c2d; border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .category strong { color: #dce8f5; }
[data-theme="dark"] .category small { color: #7a8fa5; }

/* Product cards */
[data-theme="dark"] .product-card { background: #111c2d; border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .product-card__category { color: #8da3ff; }
[data-theme="dark"] .product-card h3 { color: #dce8f5; }
[data-theme="dark"] .rating { color: #8090a0; }
[data-theme="dark"] .product-card__seller { border-top-color: rgba(255,255,255,.07); color: #7a8fa5; }
[data-theme="dark"] .product-card__seller b { color: #8da3ff; }
[data-theme="dark"] .product-card__price del { color: #5a6a7e; }
[data-theme="dark"] .product-card__price strong { color: #dce8f5; }
[data-theme="dark"] .product-gallery,
[data-theme="dark"] .checkout-box { background: #111c2d; border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .product-summary h1 { color: #dce8f5; }
[data-theme="dark"] .product-summary__category { color: #8da3ff; }
[data-theme="dark"] .product-summary__lead { color: #8da0b5; }
[data-theme="dark"] .product-summary__meta span { border-color: rgba(255,255,255,.08); color: #9aabba; }
[data-theme="dark"] .product-seller { border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .product-seller small { color: #7a8fa5; }
[data-theme="dark"] .product-includes span { background: #18263a; color: #cbd7e4; }
[data-theme="dark"] .checkout-box__price strong { color: #dce8f5; }
[data-theme="dark"] .checkout-box__price del { color: #5a6a7e; }
[data-theme="dark"] .cart-icon-button { border-color: rgba(255,255,255,.2); color: #dce8f5; }
[data-theme="dark"] .cart-icon-button:hover { background: #1a2d42; }
[data-theme="dark"] .product-section-detail { border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .product-section-detail p { color: #8da0b5; }

/* Load more */
[data-theme="dark"] .button--outline { border-color: rgba(255,255,255,.2); color: #dce8f5; }
[data-theme="dark"] .empty-state { border-color: rgba(255,255,255,.1); color: #7a8fa5; }

/* Search overlay */
[data-theme="dark"] .search-overlay { background: rgba(5,11,19,.92); }
[data-theme="dark"] .search-field { border-bottom-color: rgba(255,255,255,.2); }
[data-theme="dark"] .search-overlay__box p { color: #717d8f; }

/* Toast */
[data-theme="dark"] .toast { background: #111c2d; }

/* Komponen yang sebelumnya memakai warna terang tetap mengikuti tema gelap. */
[data-theme="dark"] .button--light,
[data-theme="dark"] .label,
[data-theme="dark"] .notion-art > b,
[data-theme="dark"] .order-toast { background: #111c2d; color: #dce8f5; }
[data-theme="dark"] .button--light:hover { background: #1a2d42; }
[data-theme="dark"] .mobile-menu { background: #111c2d; }

/* Footer stays dark always — no override needed */

/* ════════════════════════════════════
   HOME — lebih ringkas dan mudah dipindai
════════════════════════════════════ */
.announcement { font-size: 11px; }
.nav { height: 72px; }
.nav__links { gap: 24px; }
.hero { min-height: 0; height: auto; margin-top: 14px; border-radius: 20px; }
.hero__content { width: 53%; padding: 22px 0 12px 42px; }
.hero h1 { margin: 0 0 7px; font-size: clamp(28px, 2.7vw, 34px); }
.hero__content > p { max-width: 400px; font-size: 11px; }
.hero__actions { margin-top: 10px; }
.hero__sell-button { min-height: 32px; padding-inline: 13px; border-radius: 8px; font-size: 10px; box-shadow: 0 6px 16px rgba(35,72,255,.2); }
.trust { min-height: 68px; }
.trust article { gap: 11px; padding-inline: 25px; }
.trust p { font-size: 9px; }
.section { padding-block: 54px 4px; }
#categories { padding-top: 12px; }
.category__art { height: 112px; margin-bottom: 14px; }
.category { padding-bottom: 15px; }
.category > span:nth-child(2) { padding-inline: 14px; }
.category small { font-size: 9px; }
.section__heading { margin-bottom: 22px; }
.section__heading h2 { max-width: 460px; font-size: clamp(26px, 2.7vw, 34px); }
.product-grid { gap: 14px; }
.cover { height: 190px; }
.product-card__body { padding: 14px; }
  .product-card h3 { margin-top: 0; font-size: 14px; }
.product-card__seller { display: none; }
  .product-card__price { margin-top: 0; }
.product-card__actions { grid-template-columns: 1fr; margin-top: 13px; }
.product-card__actions .button--outline { display: none; }
.product-card__actions .button--primary { width: 100%; }
.center-action { display: none; }
.seller-banner { min-height: 0; margin-top: 36px; margin-bottom: 42px; border-radius: 18px; }
.seller-banner__copy { width: 100%; padding: 26px 30px 28px; }
.seller-banner h2 { margin: 7px 0 10px; font-size: 30px; }
.seller-banner__copy p { max-width: 380px; font-size: 12px; }
.seller-banner .button--coral { min-height: 36px; padding-inline: 14px; border-radius: 9px; font-size: 11px; }
.seller-visual { display: none; }
.order-toast { display: none; }
.revenue-card { top: 48px; right: 45px; }
.footer__main { padding-block: 48px 38px; gap: 42px; }

[data-theme="dark"] .category small { color: #7a8fa5; }

@media (max-width: 980px) {
  .hero__content { width: 63%; padding-left: 34px; }
  .seller-banner__copy { width: 53%; padding-left: 40px; }
}

@media (max-width: 700px) {
  .announcement { font-size: 10px; }
  .hero { min-height: 0; height: auto; margin-top: 9px; }
  .hero__content { width: 100%; padding: 22px 19px 12px; }
  .hero h1 { margin-bottom: 7px; font-size: 26px; }
  .hero__content > p { max-width: 300px; font-size: 11px; }
  .hero__actions { margin-top: 10px; }
  .hero__sell-button { width: fit-content; }
  .trust { min-height: 0; }
  .section { padding-top: 44px; }
  .category { padding-bottom: 14px; }
  .category__art { height: 136px; }
  .section__heading h2 { max-width: 300px; font-size: 27px; }
  .product-card__category { font-size: 8px; }
  .product-card h3 { height: auto; margin-bottom: 9px; font-size: 12px; }
  .product-card__price strong { font-size: 14px; }
  .product-card__actions .button { min-height: 32px; font-size: 10px; }
  .seller-banner { min-height: 0; margin-top: 30px; margin-bottom: 36px; }
  .seller-banner__copy { width: 100%; padding: 22px 20px 24px; }
  .seller-banner h2 { margin-top: 6px; font-size: 26px; }
  .seller-banner__copy p { max-width: 300px; }
  .seller-banner .button--coral { min-height: 34px; font-size: 10px; }
}

/* ════════════════════════════════════
   LIGHT THEME — fokus biru dan putih
════════════════════════════════════ */
html:not([data-theme="dark"]) {
  --paper: #f7faff;
  --ink: #10213f;
  --ink-2: #183b75;
  --muted: #64748b;
  --line: #dbe5f3;
  --blue: #2563eb;
  --coral: #2563eb;
  --lime: #dbeafe;
  --violet: #bfdbfe;
  --shadow: 0 18px 45px rgba(37, 99, 235, .10);
}

html:not([data-theme="dark"]) body { background: var(--paper); }
html:not([data-theme="dark"]) .header { background: rgba(255,255,255,.94); }
html:not([data-theme="dark"]) .hero { background: #123f91; }
html:not([data-theme="dark"]) .hero__backdrop {
  background: linear-gradient(90deg, rgba(10,48,120,.98) 0%, rgba(18,63,145,.94) 42%, rgba(37,99,235,.48) 100%), url("assets/majalapak-hero.jpg") center/cover no-repeat;
}
html:not([data-theme="dark"]) .hero h1 em { color: #bfdbfe; }
html:not([data-theme="dark"]) .hero__float { background: rgba(10,48,120,.82); }
html:not([data-theme="dark"]) .hero__float--one span { background: #60a5fa; }
html:not([data-theme="dark"]) .trust__icon,
html:not([data-theme="dark"]) .trust article:nth-child(2) .trust__icon,
html:not([data-theme="dark"]) .trust article:nth-child(3) .trust__icon {
  background: #eff6ff;
  color: var(--blue);
}
html:not([data-theme="dark"]) .category__art,
html:not([data-theme="dark"]) .category--peach .category__art,
html:not([data-theme="dark"]) .category--lime .category__art,
html:not([data-theme="dark"]) .category--violet .category__art {
  background: #dbeafe;
  color: #1d4ed8;
}
html:not([data-theme="dark"]) .category--all .category__art { background: #123f91; }
html:not([data-theme="dark"]) .cover--social,
html:not([data-theme="dark"]) .cover--game {
  background: linear-gradient(135deg, #2563eb, #123f91);
}
html:not([data-theme="dark"]) .cover--course,
html:not([data-theme="dark"]) .cover--notion {
  background: #dbeafe;
  color: #10213f;
}
html:not([data-theme="dark"]) .label--dark,
html:not([data-theme="dark"]) .label--green,
html:not([data-theme="dark"]) .label--orange,
html:not([data-theme="dark"]) .rating > span,
html:not([data-theme="dark"]) .product-summary__meta span:first-child {
  color: var(--blue);
}
html:not([data-theme="dark"]) .seller-avatar,
html:not([data-theme="dark"]) .seller-avatar--two,
html:not([data-theme="dark"]) .seller-avatar--three,
html:not([data-theme="dark"]) .seller-avatar--four {
  background: #dbeafe;
  color: #1d4ed8;
}
html:not([data-theme="dark"]) .product-includes span { background: #eff6ff; color: #24477f; }
html:not([data-theme="dark"]) .product-includes span::before { color: var(--blue); }
html:not([data-theme="dark"]) .seller-banner { background: #123f91; }
html:not([data-theme="dark"]) .seller-banner h2 em { color: #bfdbfe; }
html:not([data-theme="dark"]) .revenue-card { border-color: rgba(191,219,254,.35); }
html:not([data-theme="dark"]) footer { background: #0b285e; }
html:not([data-theme="dark"]) .brand--footer .brand__mark { background: var(--blue); }

/* Kurangi ornamen agar fokus tetap pada produk dan aksi utama. */
.hero__float,
.hero__dots,
.seller-visual .spark { display: none; }
.product-page { padding-top: 24px; }
.product-page__back { color: var(--blue); }
.product-gallery { box-shadow: 0 12px 32px rgba(37,99,235,.08); }
.product-summary h1 { letter-spacing: -.8px; }
.product-summary__lead { max-width: 580px; }
.checkout-box { border-color: #cfe0fb; }
.uploaded-product-page .theme-toggle { display: none; }
body:not(.home-page) .theme-toggle { display: none !important; }

/* Beranda: netralisir sisa aksen warna-warni. */
html:not([data-theme="dark"]) .home-page .hero__backdrop {
  background: linear-gradient(135deg, #123f91 0%, #2563eb 62%, #60a5fa 100%);
}
html:not([data-theme="dark"]) .home-page .hero__backdrop::after {
  background: radial-gradient(circle at 82% 20%, rgba(255,255,255,.18), transparent 30%), radial-gradient(circle at 15% 100%, rgba(147,197,253,.28), transparent 35%);
}
html:not([data-theme="dark"]) .home-page .avatar-stack span,
html:not([data-theme="dark"]) .home-page .avatar-stack span:nth-child(2),
html:not([data-theme="dark"]) .home-page .avatar-stack span:nth-child(3),
html:not([data-theme="dark"]) .home-page .avatar-stack span:nth-child(4) {
  background: #dbeafe;
  color: #1d4ed8;
  border-color: #123f91;
}
html:not([data-theme="dark"]) .home-page .category--blue .category__art { background: #dbeafe; }
html:not([data-theme="dark"]) .home-page .category--peach .category__art { background: #e0efff; }
html:not([data-theme="dark"]) .home-page .category--lime .category__art { background: #cfe3ff; }
html:not([data-theme="dark"]) .home-page .category--violet .category__art { background: #e8f2ff; }
html:not([data-theme="dark"]) .home-page .cover--social,
html:not([data-theme="dark"]) .home-page .cover--game { background: linear-gradient(135deg, #2563eb, #123f91); }
html:not([data-theme="dark"]) .home-page .cover--course,
html:not([data-theme="dark"]) .home-page .cover--notion { background: #dbeafe; }
html:not([data-theme="dark"]) .home-page .seller-banner { background: linear-gradient(135deg, #123f91, #2563eb); }
html:not([data-theme="dark"]) .home-page .chart i { background: #93c5fd; }
html:not([data-theme="dark"]) .home-page .chart i:nth-child(4),
html:not([data-theme="dark"]) .home-page .chart i:nth-child(5) { background: #60a5fa; }
html:not([data-theme="dark"]) .home-page .chart i:nth-child(6),
html:not([data-theme="dark"]) .home-page .chart i:nth-child(7) { background: #dbeafe; }

/* Kombinasi aksen landing page: navy, biru, putih, merah, hijau, dan ungu. */
html:not([data-theme="dark"]) .home-page {
  --coral: #ff694c;
  --lime: #cce968;
  --violet: #b8a3ff;
}
html:not([data-theme="dark"]) .home-page .hero__backdrop {
  background: linear-gradient(90deg, rgba(5,12,24,.99) 0%, rgba(5,12,24,.88) 38%, rgba(5,12,24,.20) 100%), url("assets/majalapak-hero.jpg") center/cover no-repeat;
}
html:not([data-theme="dark"]) .home-page .hero__backdrop::after {
  background: radial-gradient(circle at 18% 110%, rgba(35,72,255,.32), transparent 35%);
}
html:not([data-theme="dark"]) .home-page .avatar-stack span {
  background: #ffe2d3;
  color: #7a2f1b;
  border-color: var(--ink);
}
html:not([data-theme="dark"]) .home-page .avatar-stack span:nth-child(2) { background: #cad7ff; color: #1d398e; }
html:not([data-theme="dark"]) .home-page .avatar-stack span:nth-child(3) { background: #d7f09a; color: #3c5813; }
html:not([data-theme="dark"]) .home-page .avatar-stack span:nth-child(4) { background: #fff; color: var(--ink); }
html:not([data-theme="dark"]) .home-page .trust__icon { background: #e8edff; color: var(--blue); }
html:not([data-theme="dark"]) .home-page .trust article:nth-child(2) .trust__icon { background: #ffebe5; color: var(--coral); }
html:not([data-theme="dark"]) .home-page .trust article:nth-child(3) .trust__icon { background: #eff7d7; color: #5b7e19; }
html:not([data-theme="dark"]) .home-page .category--blue .category__art { background: #dfe6ff; }
html:not([data-theme="dark"]) .home-page .category--peach .category__art { background: #ffd5c8; color: var(--ink); }
html:not([data-theme="dark"]) .home-page .category--lime .category__art { background: var(--lime); color: var(--ink); }
html:not([data-theme="dark"]) .home-page .category--violet .category__art { background: var(--violet); color: var(--ink); }
html:not([data-theme="dark"]) .home-page .category--all .category__art { background: var(--ink); color: #fff; }
html:not([data-theme="dark"]) .home-page .cover--social { background: #4d65ff; }
html:not([data-theme="dark"]) .home-page .cover--course { background: #ff896a; }
html:not([data-theme="dark"]) .home-page .cover--notion { background: #d7ed82; }
html:not([data-theme="dark"]) .home-page .cover--game { background: #7666e9; }
html:not([data-theme="dark"]) .home-page .label--dark { color: #c44a2f; }
html:not([data-theme="dark"]) .home-page .label--green { color: #405f08; }
html:not([data-theme="dark"]) .home-page .label--orange { color: #4935b5; }
html:not([data-theme="dark"]) .home-page .rating > span { color: #ff9e2e; }
html:not([data-theme="dark"]) .home-page .seller-avatar { background: #ffd7c8; color: #8c3b24; }
html:not([data-theme="dark"]) .home-page .seller-avatar--two { background: #d9d1ff; color: #493a93; }
html:not([data-theme="dark"]) .home-page .seller-avatar--three { background: #dceea0; color: #49620e; }
html:not([data-theme="dark"]) .home-page .seller-avatar--four { background: #ced8ff; color: #273f96; }
html:not([data-theme="dark"]) .home-page .seller-banner { background: var(--ink); }
html:not([data-theme="dark"]) .home-page .seller-banner h2 em { color: var(--coral); }
html:not([data-theme="dark"]) .home-page .chart i { background: #536378; }
html:not([data-theme="dark"]) .home-page .chart i:nth-child(4),
html:not([data-theme="dark"]) .home-page .chart i:nth-child(5) { background: #647cff; }
html:not([data-theme="dark"]) .home-page .chart i:nth-child(6),
html:not([data-theme="dark"]) .home-page .chart i:nth-child(7) { background: var(--coral); }
html:not([data-theme="dark"]) .home-page footer { background: #050b13; }

/* Hero beranda: beri ruang vertikal yang lebih proporsional di semua layar. */
.home-page .hero {
  min-height: clamp(230px, 16vw, 270px);
}

.home-page .hero__content {
  padding: 24px 0 22px 44px;
}

@media (max-width: 980px) {
  .home-page .hero {
    min-height: 260px;
  }

  .home-page .hero__content {
    padding: 24px 0 22px 34px;
  }
}

@media (max-width: 700px) {
  .home-page .hero {
    min-height: 245px;
  }

  .home-page .hero__content {
    padding: 22px 20px 24px;
  }

  .home-page .hero h1 {
    font-size: 28px;
  }
}

/* Rapatkan area produk agar tidak menyisakan ruang kosong setelah hero. */
.home-page .hero {
  display: flex;
  align-items: center;
}

.home-page .product-section {
  padding-top: 30px;
}

.home-page .section__heading--products {
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.home-page .product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
}

.home-page .sort-control {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.home-page .sort-control__icon { display: none; color: var(--blue); }
.home-page .sort-control__icon svg { display: block; width: 18px; height: 18px; }

.home-page .sort-control select {
  min-height: 38px;
  padding: 0 30px 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.home-page .section__heading--products {
  margin-bottom: 16px;
}

@media (max-width: 700px) {
  .home-page .product-section {
    padding-top: 24px;
  }

  .home-page .product-toolbar {
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }

  .home-page .sort-control {
    min-width: 0;
    flex: 1 1 0;
    justify-content: flex-start;
    gap: 6px;
    font-size: 10px;
  }

  .home-page .sort-control__label { display: none; }
  .home-page .sort-control__icon {
    display: grid;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .home-page .sort-control select {
    min-width: 0;
    max-width: none;
    flex: 1 1 auto;
    min-height: 30px;
    padding: 0 24px 0 8px;
    border-radius: 8px;
    font-size: 9px;
  }

  .home-page .product-card h3 {
    height: 1.3em;
    margin-bottom: 9px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-page .category {
    padding-bottom: 12px;
    border-radius: 14px;
  }

  .home-page .category__art {
    height: 92px;
    margin-bottom: 10px;
  }

  .home-page .category__art b { font-size: 14px; }
  .home-page .category__art i { right: 11px; bottom: 9px; font-size: 14px; }
  .home-page .category > span:nth-child(2) { padding-inline: 10px; }
  .home-page .category strong { font-size: 10px; line-height: 1.25; }
  .home-page .category small { margin-top: 3px; font-size: 8px; line-height: 1.25; }
  .home-page .category__arrow { right: 10px; bottom: 13px; font-size: 12px; }
}

/* Panduan kreator */
.guide-page { background: var(--paper); }
.guide-hero { min-height: 390px; margin-top: 16px; padding: 48px 56px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; overflow: hidden; border-radius: 22px; background: var(--ink); color: #fff; }
.guide-hero__copy { position: relative; z-index: 1; max-width: 520px; }
.guide-hero h1 { margin: 17px 0 14px; font-size: clamp(32px, 4vw, 50px); line-height: 1.03; letter-spacing: -1.5px; }
.guide-hero h1 em { color: #8da3ff; font-style: normal; }
.guide-hero__copy > p { max-width: 440px; margin-bottom: 22px; color: #aeb8c8; font-size: 13px; line-height: 1.6; }
.button--coral { background: var(--coral); color: #fff; box-shadow: 0 10px 24px rgba(255,105,76,.22); }
.button--coral:hover { background: #ee593d; }
.guide-hero__visual { position: relative; min-height: 280px; }
.guide-checklist { position: absolute; top: 38px; left: 50%; width: min(290px, 72%); padding: 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.08); box-shadow: 0 25px 45px rgba(0,0,0,.2); backdrop-filter: blur(14px); transform: rotate(4deg); }
.guide-checklist__head, .guide-checklist__line { display: flex; align-items: center; justify-content: space-between; }
.guide-checklist__head { padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.13); color: #fff; font-size: 12px; font-weight: 800; }
.guide-checklist__head b { color: var(--lime); font-size: 11px; }
.guide-checklist__line { justify-content: flex-start; gap: 9px; padding-top: 14px; color: #b3bfd0; font-size: 11px; }
.guide-checklist__line i { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 10px; font-style: normal; }
.guide-checklist__line.is-done i { background: var(--lime); color: var(--ink); }
.guide-progress { height: 5px; margin-top: 18px; overflow: hidden; border-radius: 10px; background: rgba(255,255,255,.12); }
.guide-progress span { display: block; width: 75%; height: 100%; border-radius: inherit; background: var(--lime); }
.guide-note { position: absolute; display: flex; align-items: center; gap: 9px; padding: 10px 13px; border-radius: 12px; background: #fff; color: var(--ink); box-shadow: 0 15px 35px rgba(0,0,0,.22); font-size: 10px; line-height: 1.35; }
.guide-note span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; background: #dbeafe; color: var(--blue); font-weight: 800; }
.guide-note strong { font-size: 10px; }
.guide-note--top { top: 6px; right: 2%; transform: rotate(-5deg); }
.guide-note--bottom { right: 6%; bottom: 8px; transform: rotate(4deg); }
.guide-note--bottom span { background: #ffe2d3; color: var(--coral); }
.guide-steps { padding-block: 76px 72px; }
.guide-section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 28px; }
.guide-section-heading h2, .guide-tips h2 { margin: 8px 0 0; font-size: clamp(25px, 3vw, 36px); line-height: 1.08; letter-spacing: -1px; }
.guide-section-heading > p { max-width: 240px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.guide-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.guide-step { position: relative; min-height: 235px; padding: 23px; overflow: hidden; border-radius: 18px; background: #fff; }
.guide-step::after { content: ""; position: absolute; right: -28px; bottom: -38px; width: 125px; height: 125px; border: 1px solid rgba(7,17,31,.12); border-radius: 30px; transform: rotate(25deg); }
.guide-step--blue { background: #dfe6ff; }.guide-step--coral { background: #ffd5c8; }.guide-step--lime { background: var(--lime); }
.guide-step__number { position: absolute; top: 20px; right: 21px; font-family: Sora, sans-serif; font-size: 11px; font-weight: 700; opacity: .55; }
.guide-step__icon { width: 40px; height: 40px; margin-bottom: 34px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.7); font-size: 19px; font-weight: 800; }
.guide-step h3 { margin-bottom: 8px; font-family: Sora, sans-serif; font-size: 17px; letter-spacing: -.4px; }.guide-step p { max-width: 250px; margin: 0; font-size: 11px; line-height: 1.6; color: rgba(7,17,31,.68); }
.guide-tips { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; padding-block: 65px; border-top: 1px solid var(--line); }
.guide-tips h2 em { color: var(--blue); font-style: normal; }
.guide-tip-list { display: grid; gap: 0; }.guide-tip-list > div { display: flex; gap: 17px; padding: 16px 0; border-bottom: 1px solid var(--line); }.guide-tip-list > div:first-child { padding-top: 0; }.guide-tip-list > div:last-child { border-bottom: 0; }
.guide-tip-list > div > span { color: var(--blue); font-family: Sora, sans-serif; font-size: 11px; font-weight: 700; }.guide-tip-list p { margin: 0; }.guide-tip-list strong, .guide-tip-list small { display: block; }.guide-tip-list strong { font-size: 13px; }.guide-tip-list small { margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.guide-cta { margin-bottom: 70px; padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-radius: 20px; background: var(--ink); color: #fff; }.guide-cta h2 { margin: 8px 0 0; font-size: clamp(24px, 3vw, 34px); line-height: 1.08; }.guide-cta h2 em { color: var(--coral); font-style: normal; }.guide-footer { justify-content: space-between; }.guide-footer a { color: #8da3ff; font-weight: 700; }

@media (max-width: 700px) {
  .guide-hero { min-height: auto; padding: 32px 22px 20px; display: block; }.guide-hero h1 { font-size: 31px; }.guide-hero__visual { min-height: 250px; margin-top: 12px; }.guide-checklist { left: 10%; width: 78%; }.guide-note--top { right: 0; }.guide-note--bottom { right: 2%; }
  .guide-section-heading, .guide-tips, .guide-cta { display: block; }.guide-section-heading > p { margin-top: 13px; }.guide-steps { padding-block: 55px; }.guide-step-grid { grid-template-columns: 1fr; }.guide-step { min-height: 190px; }.guide-step__icon { margin-bottom: 25px; }.guide-tips { padding-block: 50px; }.guide-tip-list { margin-top: 30px; }.guide-cta { margin-bottom: 45px; padding: 30px 24px; }.guide-cta .button { margin-top: 24px; }.guide-footer { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }
}

/* REKBER / Midman */
.rekber-page { background: var(--paper); }
.rekber-page .header { z-index: 50; }
.rekber-nav-wa { color: var(--ink); }
.rekber-hero { position: relative; min-height: 420px; margin-top: 16px; padding: 54px 58px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; overflow: hidden; border-radius: 24px; background: #07111f; color: #fff; isolation: isolate; }
.rekber-hero::before { content: ""; position: absolute; z-index: -1; width: 510px; height: 510px; right: -115px; top: -220px; border: 1px solid rgba(141,163,255,.24); border-radius: 50%; box-shadow: 0 0 0 70px rgba(35,72,255,.12), 0 0 0 140px rgba(35,72,255,.07); }
.rekber-hero__copy { position: relative; z-index: 2; max-width: 570px; }
.rekber-hero h1 { margin: 17px 0 14px; font-size: clamp(34px, 4.2vw, 54px); line-height: 1.02; letter-spacing: -1.7px; }
.rekber-hero h1 em { color: #8da3ff; font-style: normal; }
.rekber-hero__copy > p { max-width: 480px; margin-bottom: 24px; color: #aeb8c8; font-size: 13px; line-height: 1.7; }
.rekber-hero__actions { display: flex; align-items: center; gap: 20px; }
.rekber-phone { display: flex; flex-direction: column; gap: 4px; color: #fff; }
.rekber-phone span { color: #8fa4ff; font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.rekber-phone strong { font-size: 13px; }
.rekber-hero__visual { position: relative; min-height: 310px; }
.rekber-orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transform: rotate(-18deg); }
.rekber-orbit--one { width: 360px; height: 190px; top: 55px; left: 5%; }
.rekber-orbit--two { width: 300px; height: 160px; top: 72px; left: 15%; border-color: rgba(141,163,255,.22); }
.rekber-lock-card { position: absolute; z-index: 2; top: 82px; left: 17%; width: min(300px, 78%); padding: 22px; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(255,255,255,.1); box-shadow: 0 28px 55px rgba(0,0,0,.3); backdrop-filter: blur(14px); transform: rotate(4deg); }
.rekber-lock-card__icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--lime); color: #263a0a; font-size: 20px; font-weight: 800; }
.rekber-lock-card small, .rekber-lock-card strong { display: block; }
.rekber-lock-card small { color: #aeb8c8; font-size: 9px; }
.rekber-lock-card strong { margin-top: 3px; color: #fff; font-family: "Sora", sans-serif; font-size: 18px; }
.rekber-lock-card b { margin-left: auto; align-self: flex-start; color: #8fa4ff; font-size: 9px; letter-spacing: 1px; }
.rekber-float { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 10px 13px; border-radius: 11px; background: #fff; color: #07111f; box-shadow: 0 16px 35px rgba(0,0,0,.28); font-size: 10px; font-weight: 800; }
.rekber-float--top { top: 34px; right: 2%; transform: rotate(-5deg); }
.rekber-float--top span { color: var(--blue); }
.rekber-float--bottom { right: 12%; bottom: 28px; transform: rotate(4deg); }
.rekber-float--bottom span { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: #e9f5c5; color: #527611; }
.rekber-benefits { padding-block: 76px 65px; }
.rekber-section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 28px; }
.rekber-section-heading h2 { margin: 8px 0 0; font-size: clamp(28px, 3vw, 40px); line-height: 1.08; letter-spacing: -1px; }
.rekber-section-heading h2 em { color: var(--blue); font-style: normal; }
.rekber-section-heading > p { max-width: 300px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.rekber-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rekber-benefit { position: relative; min-height: 210px; padding: 23px; overflow: hidden; border-radius: 18px; }
.rekber-benefit::after { content: ""; position: absolute; right: -30px; bottom: -45px; width: 135px; height: 135px; border: 1px solid rgba(7,17,31,.12); border-radius: 30px; transform: rotate(25deg); }
.rekber-benefit--blue { background: #dfe6ff; }.rekber-benefit--peach { background: #e0efff; }.rekber-benefit--lime { background: #cfe3ff; }
.rekber-benefit__number { position: absolute; top: 21px; right: 21px; font-family: Sora, sans-serif; font-size: 11px; font-weight: 700; opacity: .55; }
.rekber-benefit__icon { width: 40px; height: 40px; margin-bottom: 35px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.72); font-size: 18px; font-weight: 800; }
.rekber-benefit h3 { margin-bottom: 8px; font-family: Sora, sans-serif; font-size: 17px; letter-spacing: -.4px; }
.rekber-benefit p { max-width: 250px; margin: 0; color: rgba(7,17,31,.68); font-size: 11px; line-height: 1.6; }
.rekber-steps { padding-block: 58px 70px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 80px; border-top: 1px solid var(--line); }
.rekber-steps__copy { min-width: 0; }
.rekber-steps h2 { max-width: 440px; margin: 9px 0 14px; font-size: clamp(27px, 3vw, 38px); line-height: 1.08; letter-spacing: -1px; }
.rekber-steps h2 span { display: block; white-space: nowrap; }
.rekber-steps__copy > p { max-width: 390px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.rekber-step-list { display: grid; gap: 0; }
.rekber-step-list > div { display: grid; grid-template-columns: 30px 1fr; column-gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.rekber-step-list > div:first-child { padding-top: 0; }.rekber-step-list > div:last-child { border-bottom: 0; }
.rekber-step-list > div > span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: #fff; font-size: 11px; font-weight: 800; }
.rekber-step-list strong, .rekber-step-list small { display: block; }.rekber-step-list strong { font-size: 13px; }.rekber-step-list small { grid-column: 2; margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.rekber-cta { margin-bottom: 70px; padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-radius: 20px; background: #07111f; color: #fff; }.rekber-cta h2 { margin: 8px 0 0; font-size: clamp(25px, 3vw, 36px); line-height: 1.08; }.rekber-cta h2 em { color: #8da3ff; font-style: normal; }
.rekber-footer { justify-content: space-between; }.rekber-footer a { color: #8da3ff; font-weight: 700; }
.rekber-modal[hidden] { display: none; }.rekber-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.rekber-modal__backdrop { position: absolute; inset: 0; background: rgba(5,11,19,.68); backdrop-filter: blur(8px); }
.rekber-modal__dialog { position: relative; z-index: 1; width: min(500px, 100%); max-height: calc(100vh - 40px); overflow: auto; border: 1px solid var(--line); border-radius: 21px; background: var(--paper); box-shadow: 0 28px 90px rgba(4,23,63,.35); }
.rekber-modal__head { padding: 24px 26px 18px; display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); }.rekber-modal__head h2 { margin: 8px 0 5px; font-size: 24px; }.rekber-modal__head p { margin: 0; color: var(--muted); font-size: 11px; }
.rekber-modal__close { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; background: transparent; color: var(--muted); font-size: 22px; line-height: 1; cursor: pointer; }
.rekber-form { padding: 22px 26px 26px; display: grid; gap: 15px; }.rekber-form label { display: grid; gap: 7px; color: var(--ink); font-size: 11px; font-weight: 800; }.rekber-form input { width: 100%; min-height: 45px; padding: 0 13px; border: 1px solid var(--line); border-radius: 10px; outline: 0; background: var(--white); color: var(--ink); font-size: 12px; }.rekber-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(35,72,255,.12); }.rekber-form input::placeholder { color: #9aa5b5; }.rekber-form small { margin-top: -3px; color: var(--muted); font-size: 9px; font-weight: 500; }.rekber-form .button { width: 100%; margin-top: 3px; }

@media (max-width: 980px) {
  .rekber-hero { grid-template-columns: 1fr .9fr; padding-inline: 42px; }.rekber-hero__visual { transform: scale(.88); transform-origin: right center; }.rekber-steps { gap: 45px; }
}

@media (max-width: 700px) {
  .rekber-nav-wa { display: none; }.rekber-hero { min-height: auto; margin-top: 10px; padding: 34px 22px 10px; display: block; border-radius: 18px; }.rekber-hero h1 { font-size: 33px; letter-spacing: -1px; }.rekber-hero__copy > p { font-size: 12px; }.rekber-hero__actions { align-items: flex-start; flex-direction: column; gap: 14px; }.rekber-hero__actions .button { width: 100%; }.rekber-phone { padding-bottom: 13px; }.rekber-hero__visual { min-height: 270px; margin-top: 5px; transform: none; }.rekber-orbit--one { width: 320px; left: 0; }.rekber-orbit--two { left: 9%; }.rekber-lock-card { left: 8%; width: 84%; }.rekber-float--top { right: 0; }.rekber-float--bottom { right: 4%; bottom: 15px; }.rekber-benefits { padding-block: 54px 50px; }.rekber-section-heading, .rekber-steps { display: block; }.rekber-section-heading > p { margin-top: 15px; }.rekber-benefit-grid { grid-template-columns: 1fr; }.rekber-benefit { min-height: 185px; }.rekber-benefit__icon { margin-bottom: 25px; }.rekber-steps { padding-block: 46px 55px; }.rekber-steps h2 span { white-space: normal; }.rekber-step-list { margin-top: 28px; }.rekber-cta { display: block; margin-bottom: 45px; padding: 30px 24px; }.rekber-cta .button { width: 100%; margin-top: 24px; }.rekber-footer { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }.rekber-form { padding: 20px; }.rekber-modal { padding: 12px; }.rekber-modal__head { padding: 20px 20px 16px; }
}
