:root {
  --black: #050604;
  --black-2: #0b0e09;
  --panel: rgba(7, 8, 6, .72);
  --panel-2: rgba(17, 20, 14, .72);
  --green: #b6df2b;
  --green-deep: #86b112;
  --red: #e5252a;
  --white: #f6f8f1;
  --muted: #b7beb0;
  --line: rgba(182, 223, 43, .32);
  --shadow: 0 34px 90px rgba(0, 0, 0, .55);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--black); }
body {
  min-height: 100%;
  margin: 0;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--black);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.site-shell {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
}
.ambient {
  position: fixed;
  width: 46rem;
  height: 46rem;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  opacity: .28;
  z-index: -1;
}
.ambient-one { top: -18rem; right: -16rem; background: rgba(182, 223, 43, .48); }
.ambient-two { bottom: -20rem; left: -14rem; background: rgba(229, 37, 42, .28); }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 56px);
  overflow: hidden;
}
.hero-bg, .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg { z-index: -4; }
.hero-bg img {
  object-fit: cover;
  filter: saturate(.98) contrast(1.05);
  transform: scale(1.015);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 53% 48%, rgba(5, 6, 4, .18) 0%, rgba(5, 6, 4, .70) 42%, rgba(5, 6, 4, .95) 100%),
    linear-gradient(90deg, rgba(5,6,4,.96) 0%, rgba(5,6,4,.62) 45%, rgba(5,6,4,.86) 100%),
    linear-gradient(180deg, rgba(5,6,4,.75), rgba(5,6,4,.58) 44%, rgba(5,6,4,.92));
}
.grid-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(182,223,43,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182,223,43,.07) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,.38), transparent 68%);
  opacity: .42;
}

.content-card {
  width: min(1060px, 100%);
  position: relative;
  padding: clamp(26px, 4.2vw, 56px);
  border-radius: clamp(26px, 4vw, 44px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    linear-gradient(135deg, rgba(8,10,7,.80), rgba(8,10,7,.56));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.content-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(182,223,43,.78), rgba(255,255,255,.08) 38%, rgba(229,37,42,.40));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
  opacity: .74;
}
.content-card::after {
  content: '';
  position: absolute;
  width: 620px;
  height: 3px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--green), #fff, var(--red), transparent);
  opacity: .82;
}

.brand-wrap {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.motori-logo {
  width: min(440px, 82vw);
  height: auto;
  filter: drop-shadow(0 18px 38px rgba(0,0,0,.62)) drop-shadow(0 0 28px rgba(182,223,43,.12));
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(246,248,241,.92);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(182,223,43,.12), 0 0 22px rgba(182,223,43,.80);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1 {
  max-width: 940px;
  margin: 0 auto 18px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -.07em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 14px 44px rgba(0,0,0,.82);
}
h1::first-line { color: var(--white); }
.lead {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(246,248,241,.86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  text-wrap: balance;
}
.lead strong { color: var(--green); }

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}
.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 26px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .01em;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:focus-visible { outline: 3px solid rgba(182,223,43,.65); outline-offset: 4px; }
.btn-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 24px;
}
.btn-primary {
  color: #071005;
  background: linear-gradient(180deg, #d5ff49, var(--green));
  box-shadow: 0 18px 46px rgba(182,223,43,.30), inset 0 1px 0 rgba(255,255,255,.45);
}
.btn-primary:hover { box-shadow: 0 24px 60px rgba(182,223,43,.42), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-ghost {
  color: var(--white);
  background: rgba(5,6,4,.60);
  border-color: rgba(182,223,43,.52);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.btn-ghost:hover { border-color: var(--green); background: rgba(12,16,8,.78); }

.partners {
  max-width: 890px;
  margin: 0 auto 28px;
}
.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.section-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182,223,43,.74));
}
.section-title span:last-child { background: linear-gradient(90deg, rgba(182,223,43,.74), transparent); }
.section-title p {
  margin: 0;
  color: rgba(246,248,241,.90);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .06em;
}
.partner-panel {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 20px 50px rgba(0,0,0,.28);
}
.partner-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 158px 1fr;
  gap: 18px;
  align-items: center;
  text-align: left;
  padding: 6px 10px;
}
.partner-card img {
  max-height: 100px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.38));
}
.partner-card h2 {
  margin: 0 0 3px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1;
  letter-spacing: -.03em;
}
.partner-card p {
  margin: 0;
  color: #ff4b51;
  font-weight: 900;
  font-size: 14px;
}
.divider {
  width: 1px;
  height: 88px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.36), transparent);
}
.partner-bakmi { grid-template-columns: 116px 1fr; }

.contact-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.contact-item {
  min-width: min(100%, 310px);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 22px;
  background: rgba(5, 6, 4, .54);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(182,223,43,.46);
  background: rgba(5, 6, 4, .68);
}
.contact-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--green);
  font-size: 30px;
  background: rgba(182,223,43,.10);
  border: 1px solid rgba(182,223,43,.36);
  box-shadow: 0 0 26px rgba(182,223,43,.12);
}
.contact-item span:last-child {
  display: grid;
  gap: 2px;
  text-align: left;
}
.contact-item em {
  color: rgba(246,248,241,.84);
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
}
.contact-item strong {
  color: var(--green);
  font-size: 16px;
  line-height: 1.1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(.985);
  animation: reveal .75s ease forwards;
}
@keyframes reveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 820px) {
  .hero { padding: 18px; align-items: stretch; }
  .content-card {
    min-height: calc(100svh - 36px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .partner-panel {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .divider { width: 100%; height: 1px; }
  .partner-card, .partner-bakmi { grid-template-columns: 110px 1fr; }
  .partner-card { min-height: auto; padding: 10px; }
  .partner-card img { max-height: 84px; }
}
@media (max-width: 560px) {
  .hero { padding: 12px; }
  .content-card { padding: 24px 16px; border-radius: 26px; }
  .motori-logo { width: min(330px, 88vw); }
  .status-pill { font-size: 10px; }
  .eyebrow { font-size: 11px; letter-spacing: .16em; }
  h1 { font-size: clamp(37px, 12vw, 58px); }
  .lead { font-size: 16px; }
  .actions { margin-bottom: 26px; }
  .btn { width: 100%; min-height: 56px; }
  .partner-card, .partner-bakmi { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .partner-card img { max-width: 190px; }
  .partner-bakmi img { max-width: 132px; }
  .contact-item { width: 100%; }
}


/* ===== Fullscreen version: fit atas-bawah layar ===== */
html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.site-shell,
.hero {
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
}

.hero {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
}

.hero-bg img {
  transform: scale(1.02);
}

.hero-shade {
  background:
    radial-gradient(circle at 50% 45%, rgba(5, 6, 4, .10) 0%, rgba(5, 6, 4, .64) 42%, rgba(5, 6, 4, .96) 100%),
    linear-gradient(90deg, rgba(5,6,4,.98) 0%, rgba(5,6,4,.60) 50%, rgba(5,6,4,.88) 100%),
    linear-gradient(180deg, rgba(5,6,4,.82), rgba(5,6,4,.48) 46%, rgba(5,6,4,.94));
}

.content-card {
  width: 100%;
  max-width: none;
  min-height: 100dvh;
  height: 100dvh;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(18px, 3.2vh, 38px) clamp(18px, 5.5vw, 88px);
  background:
    radial-gradient(circle at 50% 5%, rgba(182,223,43,.14), transparent 22rem),
    radial-gradient(circle at 86% 72%, rgba(182,223,43,.11), transparent 20rem),
    linear-gradient(180deg, rgba(5,6,4,.56), rgba(5,6,4,.22) 44%, rgba(5,6,4,.70));
  backdrop-filter: none;
}

.content-card::before {
  display: none;
}

.content-card::after {
  top: 0;
  width: min(740px, 70vw);
  height: 2px;
}

.brand-wrap {
  gap: 8px;
  margin-bottom: clamp(9px, 1.6vh, 16px);
}

.motori-logo {
  width: min(340px, 62vw);
  max-height: clamp(92px, 15vh, 148px);
  object-fit: contain;
}

.status-pill {
  padding: 6px 12px;
  font-size: 10px;
}

.eyebrow {
  margin-bottom: clamp(7px, 1.2vh, 12px);
  font-size: clamp(10px, 1.2vw, 13px);
}

h1 {
  max-width: 1040px;
  margin-bottom: clamp(9px, 1.4vh, 14px);
  font-size: clamp(39px, 5.4vw, 72px);
  line-height: .90;
}

.lead {
  max-width: 760px;
  margin-bottom: clamp(14px, 2vh, 22px);
  font-size: clamp(16px, 1.65vw, 21px);
  line-height: 1.34;
}

.actions {
  gap: 12px;
  margin-bottom: clamp(18px, 2.6vh, 26px);
}

.btn {
  min-height: clamp(48px, 6.4vh, 56px);
  padding: 0 clamp(20px, 2.4vw, 28px);
  border-radius: 16px;
  font-size: clamp(14px, 1.35vw, 16px);
}

.btn-icon {
  width: 25px;
  height: 25px;
  font-size: 22px;
}

.partners {
  width: min(840px, 92vw);
  margin-bottom: clamp(14px, 2vh, 22px);
}

.section-title {
  gap: 16px;
  margin-bottom: 10px;
}

.section-title p {
  font-size: clamp(13px, 1.4vw, 16px);
}

.partner-panel {
  gap: 14px;
  padding: clamp(10px, 1.5vh, 14px);
  border-radius: 22px;
}

.partner-card {
  min-height: clamp(76px, 11vh, 96px);
  grid-template-columns: minmax(102px, 132px) 1fr;
  gap: 15px;
  padding: 4px 8px;
}

.partner-card img {
  max-height: clamp(62px, 8.6vh, 82px);
}

.partner-bakmi {
  grid-template-columns: minmax(74px, 92px) 1fr;
}

.partner-card h2 {
  font-size: clamp(18px, 1.9vw, 24px);
}

.partner-card p {
  font-size: clamp(12px, 1.15vw, 14px);
}

.divider {
  height: clamp(58px, 9vh, 76px);
}

.contact-row {
  gap: 12px;
  margin-top: 0;
}

.contact-item {
  min-width: min(100%, 290px);
  padding: 9px 13px;
  border-radius: 18px;
}

.contact-icon {
  width: clamp(40px, 5.4vh, 48px);
  height: clamp(40px, 5.4vh, 48px);
  border-radius: 14px;
  font-size: 25px;
}

.contact-item em {
  font-size: 12px;
}

.contact-item strong {
  font-size: clamp(14px, 1.25vw, 16px);
}

/* Layar laptop pendek: dipadatkan agar tetap masuk 1 layar */
@media (max-height: 740px) and (min-width: 821px) {
  .motori-logo { width: min(300px, 52vw); max-height: 112px; }
  .status-pill { display: none; }
  .brand-wrap { margin-bottom: 8px; }
  .eyebrow { margin-bottom: 7px; }
  h1 { font-size: clamp(36px, 4.8vw, 62px); margin-bottom: 8px; }
  .lead { font-size: clamp(15px, 1.35vw, 18px); margin-bottom: 13px; }
  .actions { margin-bottom: 14px; }
  .btn { min-height: 46px; }
  .partners { margin-bottom: 12px; }
  .partner-panel { padding: 9px; }
  .partner-card { min-height: 68px; grid-template-columns: 106px 1fr; }
  .partner-card img { max-height: 58px; }
  .partner-bakmi { grid-template-columns: 72px 1fr; }
  .divider { height: 55px; }
  .contact-icon { width: 38px; height: 38px; }
  .contact-item { padding: 8px 12px; }
}

/* Mobile tetap fullscreen, tapi boleh scroll di dalam layar kalau konten melebihi tinggi HP */
@media (max-width: 820px) {
  html, body { overflow: hidden; }
  .hero {
    height: 100dvh;
    min-height: 100dvh;
    padding: 0;
    align-items: stretch;
  }
  .content-card {
    width: 100%;
    min-height: 100dvh;
    height: auto;
    border-radius: 0;
    padding: 24px 16px;
    overflow-y: auto;
  }
  .motori-logo { width: min(300px, 78vw); }
  h1 { font-size: clamp(34px, 10vw, 54px); }
  .partner-panel { width: 100%; }
}
