:root {
  --bg: #04201d;
  --bg-2: #062b27;
  --surface: #0a332e;
  --surface-2: #0e3d37;
  --ink: #eafff8;
  --ink-soft: #cdeee5;
  --muted: #86b3a8;
  --teal: #2dd4bf;
  --teal-bright: #5eead4;
  --amber: #fbbf24;
  --rose: #fb7185;
  --line: rgba(94, 234, 212, 0.14);
  --line-strong: rgba(94, 234, 212, 0.28);
  --maxw: 1180px;
  --r: 18px;
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--teal-bright);
  text-decoration: none;
}
::selection {
  background: var(--teal);
  color: #022019;
}

/* ambient background */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(
      1100px 700px at 78% -8%,
      rgba(45, 212, 191, 0.16),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 8% 12%,
      rgba(251, 191, 36, 0.07),
      transparent 55%
    ),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.ambient .wave {
  position: absolute;
  left: -10%;
  width: 120%;
  opacity: 0.5;
}
.ambient .wave svg {
  width: 100%;
  height: auto;
  display: block;
}
.ambient .w1 {
  top: 6%;
  animation: drift 26s linear infinite;
}
.ambient .w2 {
  top: 34%;
  opacity: 0.32;
  animation: drift 38s linear infinite reverse;
}
.ambient .w3 {
  bottom: 4%;
  opacity: 0.22;
  animation: drift 32s linear infinite;
}
@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-6%);
  }
}
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* nav */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition:
    background 0.3s,
    border-color 0.3s,
    backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
header.nav.solid {
  background: rgba(4, 32, 29, 0.78);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.brand b {
  color: var(--teal-bright);
}
.nav-spacer {
  flex: 1;
}
.nav-links {
  display: flex;
  gap: 26px;
  font-size: 14.5px;
  color: var(--muted);
}
.nav-links a {
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
}
@media (max-width: 760px) {
  .nav-links {
    display: none;
  }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 14px;
  transition:
    transform 0.18s,
    box-shadow 0.25s,
    background 0.2s;
  text-decoration: none;
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}
.btn-primary {
  background: var(--teal);
  color: #022019;
  padding: 13px 22px;
  font-size: 15px;
  box-shadow: 0 10px 30px -10px rgba(45, 212, 191, 0.7);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -10px rgba(45, 212, 191, 0.85);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line-strong);
  padding: 12px 20px;
  font-size: 15px;
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--ink);
}

/* store buttons (Play + AppGallery) */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: #0c1413;
  color: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  padding: 12px 22px 12px 18px;
  transition:
    transform 0.18s,
    border-color 0.25s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.store-btn:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  box-shadow: 0 18px 40px -16px rgba(45, 212, 191, 0.6);
}
.store-btn.ag:hover {
  border-color: #ce0e2d;
  box-shadow: 0 18px 40px -16px rgba(206, 14, 45, 0.55);
}
.store-btn .play-ico {
  width: 30px;
  height: 30px;
  flex: none;
}
.store-btn .st-top {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}
.store-btn .st-big {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.store-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: skewX(-18deg);
  animation: shine 4.5s ease-in-out infinite;
}
@keyframes shine {
  0%,
  60% {
    left: -60%;
  }
  80%,
  100% {
    left: 130%;
  }
}

/* hero */
.hero {
  padding: 64px 0 30px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-bright);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: 7px 14px;
  background: rgba(45, 212, 191, 0.06);
}
.eyebrow .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.5);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(45, 212, 191, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0);
  }
}
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.92;
  font-size: clamp(44px, 7vw, 86px);
  margin: 22px 0 0;
}
.hero h1 .ln {
  display: block;
}
.hero h1 .accent {
  color: var(--teal-bright);
  font-style: italic;
  font-weight: 600;
}
.hero h1 .strike {
  position: relative;
  color: var(--muted);
}
.hero h1 .strike::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 54%;
  height: 5px;
  background: var(--rose);
  transform: rotate(-2deg);
  border-radius: 3px;
  opacity: 0.85;
}
.hero p.lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 24px 0 30px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-meta i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  font-style: normal;
}

/* live instrument */
.instrument {
  position: relative;
  border-radius: 26px;
  padding: 26px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong);
  box-shadow:
    0 40px 90px -40px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.instrument::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(94, 234, 212, 0.5), transparent 40%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.ins-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.ins-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.ins-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--teal-bright);
}
.ins-live .d {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.6s infinite;
}
.ins-days {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.ins-days .num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.ins-days .unit {
  font-family: var(--display);
  font-size: 18px;
  color: var(--muted);
}
.ins-clock {
  font-family: var(--mono);
  font-size: 30px;
  color: var(--teal-bright);
  letter-spacing: 0.02em;
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
.ins-clock .cs {
  font-size: 16px;
  color: var(--muted);
}
.ins-divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}
.ins-money {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.ins-money .amt {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 34px;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}
.ins-money .lbl {
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}
.ins-row {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-soft);
}
.ins-row b {
  font-family: var(--mono);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.ins-note {
  margin-top: 18px;
  font-size: 11.5px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}

/* ticker */
.ticker {
  border-block: 1px solid var(--line);
  background: rgba(6, 43, 39, 0.5);
  overflow: hidden;
  margin-top: 46px;
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-track span {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(15px, 2.4vw, 22px);
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 16px 0;
  color: var(--ink-soft);
}
.ticker-track span em {
  color: var(--teal);
  font-style: normal;
  margin: 0 22px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* section heads */
section {
  padding: 96px 0;
}
.sec-kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin: 0 0 14px;
}
.sec-title {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  font-size: clamp(30px, 4.6vw, 52px);
  margin: 0;
  max-width: 18ch;
}
.sec-sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 54ch;
  margin: 18px 0 0;
}

/* gallery (tanpa caption) */
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.gal-nav {
  display: flex;
  gap: 10px;
}
.gal-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s;
  display: grid;
  place-items: center;
}
.gal-nav button:hover {
  background: var(--teal);
  color: #022019;
  border-color: var(--teal);
  transform: translateY(-2px);
}
.gal-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 24px 30px;
  scroll-snap-type: x mandatory;
  margin: 0 -24px;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) transparent;
  cursor: grab;
}
.gal-scroll.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.gal-scroll::-webkit-scrollbar {
  height: 8px;
}
.gal-scroll::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 8px;
}
.frame {
  flex: 0 0 268px;
  scroll-snap-align: center;
  margin: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.frame:nth-child(even) {
  transform: translateY(26px) rotate(-1.4deg);
}
.frame:nth-child(odd) {
  transform: rotate(1.2deg);
}
.frame:hover {
  transform: translateY(0) rotate(0) scale(1.03);
}
.device {
  border-radius: 30px;
  padding: 10px;
  background: linear-gradient(160deg, #103f39, #0a2e2a);
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.85);
  position: relative;
}
.device::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 6px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.device img {
  border-radius: 22px;
  width: 100%;
  aspect-ratio: 9/19.5;
  object-fit: cover;
  object-position: top;
  background: #000;
}
.gal-hint {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  text-align: center;
}

/* features */
.feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 54px 0;
  border-top: 1px solid var(--line);
}
.feat:nth-child(even) .feat-visual {
  order: -1;
}
@media (max-width: 840px) {
  .feat {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .feat:nth-child(even) .feat-visual {
    order: 0;
  }
}
.feat-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 0.1em;
}
.feat h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.04;
  margin: 10px 0 14px;
}
.feat p {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0;
  max-width: 46ch;
}
.feat-visual {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 26px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mini-tick {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 46px;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}
.mini-sub {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.chipwall {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.chipwall .c {
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 13px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink-soft);
  transition: 0.2s;
  cursor: default;
  white-space: nowrap;
}
.chipwall .c:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: var(--teal);
  color: var(--ink);
  background: rgba(45, 212, 191, 0.1);
}
.garden {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
}
.garden .g {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.garden .g .e {
  font-size: 26px;
  filter: grayscale(0.4) opacity(0.5);
  transition: 0.4s;
}
.garden .g.on .e {
  filter: none;
  transform: scale(1.15);
}
.garden .g .bar {
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: var(--surface-2);
  overflow: hidden;
}
.garden .g .bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--teal);
  transition: width 1s ease;
}
.garden .g.on .bar i {
  width: 100%;
}
.garden .g .lab {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--muted);
}
.moods {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.moods .m {
  flex: 1;
  text-align: center;
}
.moods .m .face {
  font-size: 30px;
  transition: transform 0.3s;
}
.moods .m:hover .face {
  transform: translateY(-5px) scale(1.2);
}
.moods .m .per {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  margin-top: 6px;
}
.moods .m .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 8px auto 0;
}

/* zero */
.zero {
  padding: 90px 0;
  border-block: 1px solid var(--line);
  background: radial-gradient(
    700px 300px at 50% 0%,
    rgba(45, 212, 191, 0.08),
    transparent 70%
  );
}
.zero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 46px;
}
@media (max-width: 760px) {
  .zero-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.zero-item .big {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(54px, 9vw, 104px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--teal-bright);
}
.zero-item .what {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-top: 6px;
}
.zero-item .why {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

/* cta */
.cta {
  padding: 100px 0;
}
.cta-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  padding: 64px 56px;
  background: linear-gradient(135deg, var(--surface-2), #07302b);
  border: 1px solid var(--line-strong);
  box-shadow: 0 50px 100px -50px rgba(0, 0, 0, 0.9);
}
.cta-card .glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  pointer-events: none;
}
.cta-card .glow.a {
  background: var(--teal);
  top: -160px;
  right: -80px;
}
.cta-card .glow.b {
  background: var(--amber);
  bottom: -200px;
  left: -100px;
  opacity: 0.18;
}
.cta-inner {
  position: relative;
  max-width: 640px;
}
.cta h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  font-size: clamp(34px, 5.4vw, 64px);
  margin: 0 0 18px;
}
.cta h2 em {
  color: var(--teal-bright);
  font-style: italic;
  font-weight: 600;
}
.cta p {
  color: var(--ink-soft);
  font-size: 19px;
  margin: 0 0 30px;
  max-width: 46ch;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cta-trust {
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* footer */
footer {
  border-top: 1px solid var(--line);
  padding: 46px 0;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.foot .brand {
  font-size: 18px;
}
.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
}
.foot-links a {
  color: var(--muted);
}
.foot-links a:hover {
  color: var(--ink);
}
.foot small {
  color: var(--muted);
  font-size: 12.5px;
  width: 100%;
  margin-top: 8px;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
.reveal.d4 {
  transition-delay: 0.32s;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .frame:nth-child(odd),
  .frame:nth-child(even) {
    transform: none;
  }
}
