:root {
  --bg: #06070a;
  --panel: #101116;
  --text: #f8f8f6;
  --muted: #9a9aa2;
  --red: #ff3856;
  --violet: #8e5cff;
  --line: rgba(255, 255, 255, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, system-ui, sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  display: flex;
  align-items: center;
  padding: 0 5.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.brand b {
  color: #a9a9ae;
  font-weight: 600;
}
.brand-glyph {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: linear-gradient(145deg, #ff6479, #9f173f 55%, #350817);
  box-shadow: 0 9px 28px rgba(255, 56, 86, 0.3);
  font-size: 19px;
}
.site-header nav {
  display: flex;
  gap: 34px;
  margin: auto;
}
.site-header nav a,
.login {
  color: #d2d2d4;
  font-size: 12px;
  font-weight: 600;
}
.site-header nav a:hover,
.login:hover {
  color: #fff;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: linear-gradient(135deg, #ff5068, #d5224e);
  box-shadow: 0 15px 45px rgba(226, 33, 75, 0.25);
  font-size: 12px;
  font-weight: 800;
  transition: 0.25s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 54px rgba(226, 33, 75, 0.38);
}
.button.small {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 10px;
  font-size: 11px;
}
.menu {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 22px;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 115px 7vw 70px;
  isolation: isolate;
}
.hero-slides,
.hero-image {
  position: absolute;
  z-index: -4;
  inset: 0;
}
.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.01);
}
.slide-one { background-image: url("assets/landing-hero-premium-v1.webp"); }
.slide-two { background-image: url("assets/jejak-senyap-v1.webp"); }
.slide-three { background-image: url("assets/rumah-hujan-v1.webp"); }
.hero:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 38vw;
  height: 38vw;
  left: var(--pointer-x, 70%);
  top: var(--pointer-y, 42%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(180, 89, 255, 0.13), transparent 68%);
  pointer-events: none;
  transition: left 0.25s ease-out, top 0.25s ease-out;
}
.hero-vignette {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 9, 0.98) 0%,
      rgba(5, 6, 9, 0.78) 34%,
      rgba(5, 6, 9, 0.14) 67%,
      rgba(5, 6, 9, 0.46) 100%
    ),
    linear-gradient(0deg, #06070a 0%, transparent 30%, rgba(0, 0, 0, 0.28) 100%);
}
.hero-grain {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
.hero-copy {
  max-width: 680px;
}
.kicker,
.eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #dedee1;
}
.kicker span {
  width: 21px;
  height: 2px;
  background: var(--red);
}
.platform-signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(5,8,14,.46);
  backdrop-filter: blur(14px);
  color: #b9c0cb;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}
.platform-signal i { width: 6px; height: 6px; border-radius: 50%; background: #f59e0b; box-shadow: 0 0 14px currentColor; }
.platform-signal.ready i { background: #34d399; }
h1,
h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.055em;
}
h1 {
  margin: 19px 0 20px;
  font-size: clamp(54px, 7.3vw, 112px);
  line-height: 0.91;
}
h1 em,
h2 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, #ff657a, #b982ff);
  -webkit-background-clip: text;
  background-clip: text;
}
.lead {
  max-width: 570px;
  margin: 0;
  color: #c0c0c5;
  font-size: 15px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 11px;
  margin-top: 33px;
}
.button.ghost {
  background: rgba(15, 16, 20, 0.55);
  box-shadow: none;
  backdrop-filter: blur(16px);
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
  color: #919198;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.hero-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #55555c;
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
  color: #8c8c94;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-cue span {
  width: 17px;
  height: 27px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
}
.scroll-cue span:after {
  content: "";
  display: block;
  width: 2px;
  height: 5px;
  margin: 5px auto;
  background: #fff;
  border-radius: 2px;
  animation: scroll 1.8s infinite;
}
@keyframes scroll {
  50% {
    transform: translateY(8px);
    opacity: 0.2;
  }
}
.section {
  padding: 120px 7vw;
}
.story-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0b0c10;
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  color: #b8b8c0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.marquee-track i { color: var(--red); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 38px;
}
.eyebrow {
  color: #777781;
  margin: 0 0 14px;
}
.section h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02;
}
.section-head > a {
  padding-bottom: 8px;
  color: #bdbdc2;
  font-size: 11px;
}
.section-head > a span {
  margin-left: 10px;
  color: var(--red);
}
.cards {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 17px;
}
.poster {
  position: relative;
  overflow: hidden;
  height: 480px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #171820;
  isolation: isolate;
  transition: 0.35s;
}
.poster:before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: 0.55s;
}
.poster:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(4, 5, 8, 0.97),
    rgba(4, 5, 8, 0.04) 72%
  );
}
.poster-one:before {
  background-image: url("assets/hero-cakrawala-v1.webp");
}
.poster-two:before {
  background-image: url("assets/jejak-senyap-v1.webp");
}
.poster-three:before {
  background-image: url("assets/rumah-hujan-v1.webp");
}
.story-card {
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}
.card-copy,
.story-card button,
.badge { transform: translateZ(28px); }
.poster:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.24);
}
.poster:hover:before {
  transform: scale(1.045);
}
.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 9px;
  border-radius: 6px;
  background: rgba(255, 56, 86, 0.91);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.badge.hot {
  background: #7954d9;
}
.badge.new {
  background: #e3a143;
  color: #18100a;
}
.card-copy {
  position: absolute;
  left: 22px;
  right: 60px;
  bottom: 22px;
}
.card-copy p {
  margin: 0 0 8px;
  color: #aeabb1;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card-copy h3 {
  margin: 0 0 7px;
  font-family: "Space Grotesk";
  font-size: 21px;
}
.card-copy small {
  color: #93939a;
  font-size: 9px;
}
.poster button {
  position: absolute;
  right: 19px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(8px);
}
.experience {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 6vw;
  overflow: hidden;
  background: linear-gradient(135deg, #0b0b10, #08090c);
}
.experience:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 45px 45px;
}
.experience > * {
  position: relative;
}
.experience-copy > p:not(.eyebrow) {
  max-width: 510px;
  color: #95959e;
  font-size: 13px;
  line-height: 1.8;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  margin-top: 33px;
}
.feature-grid div {
  display: flex;
  flex-direction: column;
  padding: 17px 18px;
  border-left: 1px solid #34343d;
}
.feature-grid b {
  font-family: "Space Grotesk";
  font-size: 22px;
}
.feature-grid span {
  margin-top: 4px;
  color: #777781;
  font-size: 9px;
}
.glow-orb {
  position: absolute;
  width: 550px;
  height: 550px;
  right: 4%;
  border-radius: 50%;
  background: rgba(126, 75, 255, 0.16);
  filter: blur(100px);
}
.device-stage {
  position: relative;
  height: 520px;
  perspective: 1400px;
}
.tv {
  position: absolute;
  width: 82%;
  top: 45px;
  left: 4%;
  transform: rotateY(-8deg) rotateX(3deg);
}
.tv-screen {
  height: 365px;
  padding: 9px;
  border-radius: 18px;
  background: linear-gradient(145deg, #4d4d56, #121318);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
}
.screen-ui {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 11px;
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.88), rgba(5, 6, 9, 0.05)),
    url("assets/hero-cakrawala-v1.png") center/cover;
}
.mini-brand {
  position: absolute;
  top: 22px;
  left: 25px;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.screen-ui > div {
  position: absolute;
  left: 26px;
  bottom: 36px;
}
.screen-ui small {
  font-size: 7px;
  letter-spacing: 0.18em;
  color: #d2a7ae;
}
.screen-ui h3 {
  margin: 8px 0 5px;
  font-family: "Space Grotesk";
  font-size: 23px;
}
.screen-ui p {
  font-size: 8px;
  color: #b0b0b5;
}
.screen-ui i {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 18px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--red) 38%,
    rgba(255, 255, 255, 0.25) 38%
  );
}
.tv-leg {
  display: block;
  width: 100px;
  height: 40px;
  margin: auto;
  background: linear-gradient(#24252b, #090a0c);
  clip-path: polygon(35% 0, 65% 0, 100% 100%, 0 100%);
}
.phone {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 150px;
  height: 300px;
  padding: 6px;
  border-radius: 27px;
  background: linear-gradient(145deg, #42434a, #0a0a0d);
  box-shadow: -25px 35px 70px rgba(0, 0, 0, 0.65);
  transform: rotateY(-12deg) rotateZ(4deg);
}
.phone-notch {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 48px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 10px;
  background: #07070a;
}
.phone-cover {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(0deg, rgba(7, 8, 12, 0.75), transparent),
    url("assets/hero-cakrawala-v1.png") center/cover;
}
.phone-cover span {
  position: absolute;
  top: 29px;
  left: 14px;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.phone-cover button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 45px;
  height: 45px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}
.plans {
  background: radial-gradient(
    circle at 50% 22%,
    rgba(142, 92, 255, 0.11),
    transparent 33%
  );
}
.center-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.center-head > p:last-child {
  color: #85858e;
  font-size: 12px;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: auto;
}
.plan {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(155deg, #111217, #0b0c10);
}
.plan.popular {
  border-color: rgba(255, 56, 86, 0.55);
  transform: translateY(-12px);
  box-shadow: 0 25px 70px rgba(255, 56, 86, 0.1);
}
.popular-label {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 17px;
  transform: translate(-50%, -50%);
  border-radius: 99px;
  background: linear-gradient(90deg, #ff3f5e, #9e4fec);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.plan > p {
  color: #a8a8af;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.plan h3 {
  margin: 22px 0 8px;
  font-family: "Space Grotesk";
  font-size: 30px;
}
.plan h3 small {
  color: #6f6f78;
  font-family: Manrope;
  font-size: 9px;
}
.plan > span {
  color: #7e7e87;
  font-size: 10px;
  line-height: 1.6;
}
.plan ul {
  list-style: none;
  padding: 18px 0;
  margin: 16px 0;
  border-top: 1px solid var(--line);
  color: #b1b1b7;
  font-size: 10px;
  line-height: 2.35;
}
.plan li::first-letter {
  color: #54d99a;
}
.plan > a {
  display: flex;
  justify-content: center;
  padding: 13px;
  border: 1px solid #32323a;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 800;
}
.popular > a {
  border: 0;
  background: linear-gradient(90deg, #ff405e, #bd315b);
}
.plan-note {
  text-align: center;
  margin: 28px 0 0;
  color: #595963;
  font-size: 8px;
}
.final-cta {
  margin: 30px 7vw 80px;
  padding: 90px 7vw;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(6, 7, 10, 0.92), rgba(6, 7, 10, 0.25)),
    url("assets/hero-cakrawala-v1.png") center/cover;
}
.final-cta p:not(.eyebrow) {
  color: #a4a4ab;
}
.final-cta .button {
  margin-top: 17px;
}
footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 45px 7vw;
  border-top: 1px solid var(--line);
  color: #74747d;
}
footer > p {
  grid-column: 1;
  font-size: 10px;
}
footer > div {
  display: flex;
  gap: 25px;
  grid-column: 2;
  grid-row: 1/3;
  font-size: 9px;
}
footer > small {
  grid-column: 1/3;
  font-size: 8px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.trust-strip { padding-top: 30px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
}
.trust-grid article { padding: 34px; background: #0d0e13; }
.trust-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
}
.trust-grid span { color: var(--muted); font-size: 11px; }
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .site-header nav {
    display: none;
  }
  .menu {
    display: block;
    margin-left: 14px;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .story-card.feature {
    grid-column: 1/3;
  }
  .experience {
    grid-template-columns: 1fr;
  }
  .experience-copy {
    max-width: 700px;
  }
  .device-stage {
    height: 470px;
  }
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .plan.popular {
    transform: none;
  }
  .plan {
    max-width: 570px;
    width: 100%;
    margin: auto;
  }
}
@media (max-width: 640px) {
  .trust-grid { grid-template-columns: 1fr; }
  .site-header {
    height: 76px;
    padding: 0 20px;
  }
  .nav-actions .login {
    display: none;
  }
  .brand {
    font-size: 11px;
  }
  .brand-glyph {
    width: 32px;
    height: 32px;
  }
  .button.small {
    display: none;
  }
  .hero {
    padding: 105px 22px 70px;
    min-height: 790px;
    align-items: end;
  }
  .hero-image {
    background-position: 62% center;
  }
  .hero-vignette {
    background: linear-gradient(
      0deg,
      #06070a 3%,
      rgba(5, 6, 9, 0.65) 56%,
      rgba(5, 6, 9, 0.2) 100%
    );
  }
  h1 {
    font-size: 54px;
  }
  .lead {
    font-size: 12px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .scroll-cue {
    display: none;
  }
  .section {
    padding: 80px 22px;
  }
  .section-head {
    align-items: start;
  }
  .section-head > a {
    display: none;
  }
  .cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }
  .story-card,
  .story-card.feature {
    min-width: 82vw;
    grid-column: auto;
    scroll-snap-align: start;
  }
  .poster {
    height: 440px;
  }
  .experience {
    padding-top: 90px;
  }
  .feature-grid {
    gap: 8px;
  }
  .device-stage {
    height: 350px;
  }
  .tv {
    width: 100%;
    left: 0;
  }
  .tv-screen {
    height: 240px;
  }
  .phone {
    width: 100px;
    height: 205px;
  }
  .plans {
    padding-left: 18px;
    padding-right: 18px;
  }
  .plan {
    padding: 27px;
  }
  .final-cta {
    margin: 10px 15px 60px;
    padding: 65px 25px;
    background-position: 62% center;
  }
  footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 22px;
  }
  footer > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
  }
  footer > small {
    margin-top: 16px;
  }
}
