:root {
  /* Base — ink navy */
  --ink-950: #080b13;
  --ink-900: #0b0f1c;
  --ink-850: #0f1524;
  --ink-800: #131a2c;
  --ink-700: #1a2338;
  --ink-600: #253052;

  /* Accent 1 — gold (luxury) */
  --gold-300: #ffe66d;
  --gold: #ffd21f;
  --gold-600: #c98900;

  /* Accent 2 — violet (royal) */
  --violet-300: #ff8a80;
  --violet: #f01414;
  --violet-600: #a90000;

  /* Accent 3 — cyan (spark, used sparingly) */
  --cyan: #45d5e6;

  /* Lines & text */
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #eef1f8;
  --text-dim: #a7b1c8;
  --text-faint: #6d7893;

  --grad-gold: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  --grad-violet: linear-gradient(135deg, var(--violet-300), var(--violet-600));
  --grad-brand: linear-gradient(110deg, #ffffff 0%, var(--violet) 45%, var(--gold) 100%);

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink-950);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

h1, h2, h3, h4, .brand-name, .stat-num, .step-num {
  font-family: 'Sora', 'Inter', sans-serif;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.text-grad {
  background: var(--grad-brand);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  animation: grad-shift 6s linear infinite;
}
@keyframes grad-shift { to { background-position: 200% center; } }

/* Icons */
.icon {
  width: 1.35em;
  height: 1.35em;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.glyph {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  stroke: none;
  flex: none;
}

::selection { background: rgba(240, 20, 20, 0.35); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink-950); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--violet-600), var(--ink-600));
  border-radius: 10px;
  border: 2px solid var(--ink-950);
}
::-webkit-scrollbar-thumb:hover { background: var(--violet); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .frame-shine, .glow, .pulse-dot, .text-grad { animation: none !important; }
}

/* Background FX */
.bg-fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(130px); opacity: .3; }
.glow-gold { width: 560px; height: 560px; background: var(--gold-600); top: -200px; right: -140px; animation: float-glow 16s ease-in-out infinite; }
.glow-violet { width: 620px; height: 620px; background: var(--violet-600); top: 30%; left: -220px; animation: float-glow 20s ease-in-out infinite reverse; }
.glow-cyan { width: 380px; height: 380px; background: var(--cyan); bottom: -120px; right: 20%; opacity: .12; animation: float-glow 24s ease-in-out infinite; }
@keyframes float-glow { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,40px) scale(1.08); } }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(240,20,20,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,20,20,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at top, black, transparent 72%);
}

/* Navbar */
.navbar {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(8, 11, 19, 0.6);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.navbar.scrolled { background: rgba(8,11,19,.88); border-bottom-color: var(--line); box-shadow: 0 10px 34px rgba(0,0,0,.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); }
.brand-logo {
  width: 44px;
  height: 44px;
  display: block;
  flex: none;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(240,20,20,.34);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--grad-brand);
  color: var(--ink-950); font-weight: 900; font-family: 'Orbitron', sans-serif; font-size: 18px;
  box-shadow: 0 4px 18px rgba(240,20,20,.35);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.brand:hover .brand-logo { transform: rotate(-5deg) scale(1.05); }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.08); }
.brand-name { font-weight: 800; letter-spacing: 1.1px; font-size: 16px; white-space: nowrap; }

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  position: relative; color: var(--text-dim); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: .3px; transition: color .2s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; border-radius: 2px;
  background: var(--grad-brand); transition: width .25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

/* Buttons */
.btn {
  position: relative; cursor: pointer; border: none; border-radius: 11px;
  font-family: 'Sora', sans-serif; font-weight: 600; letter-spacing: .3px; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  overflow: hidden;
}
.btn .icon { width: 1.1em; height: 1.1em; }
.btn .glyph { width: .95em; height: .95em; }
.btn:active { transform: translateY(1px) scale(.98); }

.btn-primary { background: var(--grad-gold); color: var(--ink-950); padding: 13px 26px; box-shadow: 0 10px 28px rgba(233,190,92,.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(233,190,92,.42); }
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.btn-primary:hover::before { left: 130%; }

.btn-ghost { background: rgba(255,255,255,.04); border: 1px solid var(--line-strong); color: var(--text); padding: 12px 22px; }
.btn-ghost:hover { border-color: var(--violet); color: #fff; background: rgba(240,20,20,.1); }

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-full { width: 100%; padding: 14px; }

/* Eyebrow / headings */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Sora', sans-serif; font-size: 12.5px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.eyebrow .icon { width: 1.1em; height: 1.1em; }
.eyebrow-gold { color: var(--gold); }
.eyebrow-violet { color: var(--violet-300); }

.section { position: relative; z-index: 1; padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-title { font-size: clamp(26px, 4vw, 36px); font-weight: 700; line-height: 1.2; letter-spacing: .3px; }
.section-lead { color: var(--text-dim); font-size: 16px; margin-top: 16px; }

/* Hero */
.hero { position: relative; z-index: 1; padding: 84px 0 72px; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; }
.hero-copy .eyebrow {
  padding: 7px 14px; border-radius: 999px; background: rgba(240,20,20,.1);
  border: 1px solid rgba(240,20,20,.28); margin-bottom: 22px;
}
.hero-title { font-size: clamp(34px, 5.4vw, 54px); line-height: 1.1; font-weight: 800; letter-spacing: .5px; }
.hero-sub { color: var(--text-dim); font-size: 17px; max-width: 500px; margin: 22px 0 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-meta { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.rating { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-dim); }
.rating strong { color: var(--text); }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars.sm { font-size: 13px; }
.platforms { display: flex; align-items: center; gap: 12px; }
.platform-label { font-size: 13px; color: var(--text-faint); }
.platform-ic { color: var(--text-dim); width: 20px; height: 20px; transition: color .2s ease; }
.platform-ic:hover { color: var(--text); }

/* Hero visual */
.hero-visual { display: flex; justify-content: center; }
.hero-frame {
  position: relative; width: 100%; max-width: 390px; aspect-ratio: 941 / 1672;
  border-radius: var(--radius-lg);
  background: #020407;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px rgba(0,0,0,.55), 0 0 55px rgba(240,20,20,.16);
  display: block; overflow: hidden; padding: 8px;
}
.slider-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
}
.frame-logo {
  font-family: 'Orbitron', sans-serif; font-size: clamp(28px, 5vw, 44px); font-weight: 900;
  letter-spacing: 5px; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: .8;
}
.frame-shine {
  position: absolute; top: -50%; left: -20%; width: 60%; height: 200%; z-index: 2; pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.09), transparent);
  transform: rotate(20deg); animation: shine 6s ease-in-out infinite;
}
@keyframes shine { 0%,100% { transform: translateX(-45%) rotate(20deg);} 50% { transform: translateX(150%) rotate(20deg);} }

.float-chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 11px 15px; border-radius: 14px;
  background: rgba(11,15,28,.75); backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong); box-shadow: 0 12px 30px rgba(0,0,0,.4);
  animation: bob 5s ease-in-out infinite;
}
.float-chip .chip-label { display: block; font-size: 11px; color: var(--text-faint); }
.float-chip .chip-value { display: block; font-size: 14px; font-weight: 700; color: var(--text); font-family: 'Sora',sans-serif; }
.chip-rank { top: 26px; left: -18px; color: var(--gold); }
.chip-rank .icon { width: 26px; height: 26px; }
.chip-online { bottom: 30px; right: -16px; animation-delay: 1.2s; }
.pulse-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(69,213,230,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(69,213,230,.55);} 70% { box-shadow: 0 0 0 10px rgba(69,213,230,0);} 100% { box-shadow: 0 0 0 0 rgba(69,213,230,0);} }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-9px);} }

/* Trust strip */
.trust { position: relative; z-index: 1; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-inner { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; justify-content: center; }
.trust-label { font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-faint); }
.trust-logos { display: flex; gap: 34px; flex-wrap: wrap; justify-content: center; }
.trust-logos span { font-family: 'Sora',sans-serif; font-weight: 700; letter-spacing: 1px; color: var(--text-faint); font-size: 15px; opacity: .7; transition: color .2s ease, opacity .2s ease; }
.trust-logos span:hover { color: var(--text-dim); opacity: 1; }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  position: relative; background: linear-gradient(165deg, var(--ink-850), var(--ink-900));
  border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px 26px;
  transition: transform .3s cubic-bezier(.22,1,.36,1), border-color .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(340px circle at var(--mx,50%) var(--my,0%), rgba(240,20,20,.14), transparent 60%);
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 0 20px 44px rgba(0,0,0,.42); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 15px;
  font-size: 24px; margin-bottom: 20px; border: 1px solid var(--line);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.feature-card:hover .feature-icon { transform: translateY(-4px) scale(1.05); }
.fi-violet { color: var(--violet-300); background: rgba(240,20,20,.12); }
.fi-gold { color: var(--gold); background: rgba(233,190,92,.12); }
.fi-cyan { color: var(--cyan); background: rgba(69,213,230,.1); }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; color: var(--text-dim); }

/* How to start */
.how { background: linear-gradient(180deg, transparent, rgba(240,20,20,.04), transparent); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  position: relative; text-align: left; padding: 30px 24px;
  background: linear-gradient(165deg, var(--ink-850), var(--ink-900));
  border: 1px solid var(--line); border-radius: var(--radius-md);
}
.step-num {
  position: absolute; top: 20px; right: 22px; font-size: 34px; font-weight: 800;
  color: transparent; -webkit-text-stroke: 1px var(--line-strong); opacity: .8;
}
.step-icon {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  color: var(--gold); background: rgba(233,190,92,.1); border: 1px solid var(--line);
  font-size: 22px; margin-bottom: 18px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-dim); }

/* Showcase */
.tabs { display: inline-flex; gap: 6px; padding: 6px; border-radius: 14px; background: var(--ink-850); border: 1px solid var(--line); margin-bottom: 28px; flex-wrap: wrap; }
.tab {
  border: none; background: transparent; color: var(--text-dim); cursor: pointer;
  font-family: 'Sora',sans-serif; font-weight: 600; font-size: 14px; padding: 10px 20px; border-radius: 10px;
  transition: color .2s ease, background .2s ease;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--ink-950); background: var(--grad-gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade-up .4s ease; }
@keyframes fade-up { from { opacity: 0; transform: translateY(12px);} to { opacity: 1; transform: none;} }

.showcase-grid { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: repeat(2, 210px); gap: 20px; }
.showcase-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(8,11,19,.08), rgba(8,11,19,.72)),
    url("assets/image/lambelunarah-logo.png"),
    linear-gradient(150deg, var(--ink-700), var(--ink-950));
  background-position: center, center, center;
  background-size: cover, auto 82%, cover;
  background-repeat: no-repeat, no-repeat, no-repeat;
  border: 1px solid var(--line); display: flex; align-items: flex-end; padding: 20px;
  transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .35s ease;
}
.showcase-card.large { grid-row: span 2; }
.showcase-card span {
  position: relative; z-index: 2; padding: 8px 16px; border-radius: 999px;
  background: rgba(8,11,19,.55); border: 1px solid var(--line-strong); backdrop-filter: blur(6px);
  font-size: 13px; font-weight: 600;
}
.showcase-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(240,20,20,.14)); opacity: 0; transition: opacity .35s ease;
}
.showcase-card:hover { transform: scale(1.02); border-color: var(--violet); }
.showcase-card:hover::after { opacity: 1; }
.showcase-glow { position: absolute; width: 240px; height: 240px; background: var(--violet-600); filter: blur(100px); opacity: .3; top: -60px; right: -60px; }

/* Stats */
.stats { background: linear-gradient(180deg, transparent, rgba(233,190,92,.05), transparent); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-block { display: flex; flex-direction: column; align-items: center; }
.stat-icon {
  display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 14px;
  color: var(--violet-300); background: rgba(240,20,20,.12); border: 1px solid var(--line);
  font-size: 22px; margin-bottom: 16px;
}
.stat-num { font-family: 'Sora',sans-serif; font-size: clamp(28px,4vw,38px); font-weight: 800; color: var(--text); }
.stat-label { color: var(--text-dim); font-size: 14px; margin-top: 4px; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  position: relative; background: linear-gradient(165deg, var(--ink-850), var(--ink-900));
  border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px 26px;
  transition: transform .3s ease, border-color .3s ease;
}
.testi-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.testi-quote { color: var(--violet); width: 30px; height: 30px; opacity: .5; margin-bottom: 14px; }
.testi-card .stars { margin-bottom: 14px; font-size: 14px; }
.testi-card blockquote { font-size: 15px; color: var(--text); line-height: 1.65; margin-bottom: 22px; }
.testi-card figcaption { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-violet); color: #fff; font-weight: 700; font-family: 'Sora',sans-serif;
}
.testi-card figcaption strong { display: block; font-size: 14px; }
.testi-card figcaption small { color: var(--text-faint); font-size: 12.5px; }

/* FAQ */
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-inner .section-head { text-align: center; margin-left: auto; margin-right: auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: linear-gradient(165deg, var(--ink-850), var(--ink-900));
  border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 22px; font-family: 'Sora',sans-serif;
  font-weight: 600; font-size: 15.5px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { color: var(--text-faint); transition: transform .3s ease, color .3s ease; width: 20px; height: 20px; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-item p { padding: 0 22px 22px; color: var(--text-dim); font-size: 14.5px; }

/* CTA */
.cta-card {
  position: relative; text-align: center; overflow: hidden;
  padding: 64px 32px; border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(240,20,20,.18), transparent 60%),
    linear-gradient(160deg, var(--ink-800), var(--ink-900));
  border: 1px solid var(--line-strong);
}
.cta-glow { position: absolute; width: 420px; height: 420px; background: var(--gold-600); filter: blur(150px); opacity: .16; top: -140px; left: 50%; transform: translateX(-50%); }
.cta-title { position: relative; font-size: clamp(28px,4.5vw,40px); font-weight: 800; }
.cta-sub { position: relative; color: var(--text-dim); max-width: 560px; margin: 16px auto 32px; font-size: 16px; }
.cta-actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--line); padding: 60px 0 32px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.footer-brand-col { max-width: 300px; }
.footer-tagline { color: var(--text-dim); font-size: 14px; margin: 16px 0 20px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  color: var(--text-dim); background: rgba(255,255,255,.04); border: 1px solid var(--line);
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.socials a:hover { color: var(--text); border-color: var(--violet); transform: translateY(-2px); }
.footer-col h4 { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-dim); text-decoration: none; font-size: 14px; margin-bottom: 11px; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 24px; }
.footer-bottom p { color: var(--text-faint); font-size: 13px; }
.footer-platforms { gap: 14px; }
.footer-platforms .platform-ic { width: 18px; height: 18px; }

/* Promo popup */
.promo-overlay {
  position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center;
  padding: clamp(12px, 2.4vw, 28px); background: rgba(8,11,19,.9); backdrop-filter: blur(10px);
}
.promo-overlay.active { display: flex; animation: overlay-in .3s ease; }
@keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }
.promo-box {
  position: relative; width: min(94vw, 540px); max-height: 94vh; max-height: 94dvh;
  display: flex; flex-direction: column; align-items: center; gap: clamp(10px, 1.8dvh, 16px);
  animation: modal-in .45s cubic-bezier(.22,1,.36,1);
}
.promo-img { display: block; width: auto; height: auto; max-width: 100%; max-height: calc(94vh - 88px); max-height: calc(94dvh - 88px); object-fit: contain; border-radius: clamp(12px, 2vw, 18px); border: 1px solid var(--line-strong); box-shadow: 0 30px 90px rgba(0,0,0,.65); }
.promo-login {
  isolation: isolate;
  min-width: 232px;
  height: 56px;
  padding: 0 32px;
  border: 1px solid rgba(255,255,255,.2);
  border-bottom-color: rgba(8,11,19,.28);
  border-radius: 14px;
  background:
    radial-gradient(140% 170% at 18% 0%, rgba(255,255,255,.82), transparent 32%),
    linear-gradient(135deg, #ffe66d 0%, #ffd21f 44%, #e49a00 100%);
  color: #080b13;
  box-shadow:
    0 18px 36px rgba(255,210,31,.24),
    0 8px 22px rgba(240,20,20,.2),
    inset 0 1px 0 rgba(255,255,255,.54);
  letter-spacing: .8px;
  overflow: hidden;
  text-transform: uppercase;
  transform: translateZ(0);
}
.promo-login::after {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0 24%, rgba(255,255,255,.7) 38%, transparent 52% 100%);
  transform: translateX(-120%) skewX(-16deg);
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.promo-login:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 24px 46px rgba(255,210,31,.34),
    0 12px 28px rgba(240,20,20,.26),
    inset 0 1px 0 rgba(255,255,255,.64);
}
.promo-login:hover::after,
.promo-login:focus-visible::after {
  transform: translateX(120%) skewX(-16deg);
}
.promo-login:focus-visible {
  outline: 3px solid rgba(255,255,255,.78);
  outline-offset: 4px;
}
.promo-login:active {
  transform: translateY(-1px) scale(.99);
}
.promo-login-text,
.promo-login-icon {
  position: relative;
  z-index: 1;
}
.promo-login-text {
  display: inline-block;
  font-size: 15.5px;
  font-weight: 900;
  letter-spacing: 1.25px;
  background: linear-gradient(
    90deg,
    #080b13 0%,
    #d60000 16%,
    #003b9a 30%,
    #080b13 44%,
    #008c45 58%,
    #b60000 72%,
    #080b13 86%,
    #080b13 100%
  );
  background-size: 260% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-text-stroke: .55px rgba(8,11,19,.95);
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.42)) drop-shadow(0 0 8px rgba(240,20,20,.28));
  animation: promo-text-flow 1.9s linear infinite, promo-text-pop 1.7s ease-in-out infinite;
}
.promo-login-text::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #080b13, #f01414, #ffffff, transparent);
  background-size: 220% auto;
  opacity: .82;
  animation: promo-text-underline 1.35s linear infinite;
}
@keyframes promo-text-flow {
  to { background-position: 260% center; }
}
@keyframes promo-text-pop {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-1px) scale(1.045); }
}
@keyframes promo-text-underline {
  to { background-position: 220% center; }
}
.promo-login-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(8,11,19,.12);
  box-shadow: 0 0 0 0 rgba(8,11,19,.22);
  transition: transform .24s ease, background .24s ease;
  animation: promo-icon-cta 1.45s ease-in-out infinite;
}
.promo-login-icon .icon {
  width: 15px;
  height: 15px;
}
.promo-login:hover .promo-login-icon {
  transform: translateX(4px);
  background: rgba(8,11,19,.18);
  animation-play-state: paused;
}
@keyframes promo-icon-cta {
  0%, 100% {
    transform: translateX(0);
    box-shadow: 0 0 0 0 rgba(8,11,19,.22);
  }
  50% {
    transform: translateX(3px);
    box-shadow: 0 0 0 7px rgba(8,11,19,0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .promo-login-text,
  .promo-login-text::after,
  .promo-login-icon {
    animation: none;
  }
}
.promo-login-ripple {
  position: absolute;
  z-index: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255,255,255,.74);
  transform: translate(-50%, -50%) scale(0);
  animation: promo-ripple .62s ease-out forwards;
}
@keyframes promo-ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(16);
  }
}
.promo-login.is-loading {
  pointer-events: none;
  color: rgba(8,11,19,.74);
}
.promo-login.is-loading .promo-login-icon {
  background: transparent;
  transform: none;
}
.promo-login.is-loading .promo-login-icon .icon {
  display: none;
}
.promo-login.is-loading .promo-login-icon::before {
  content: '';
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid rgba(8,11,19,.22);
  border-top-color: rgba(8,11,19,.86);
  animation: promo-spin .7s linear infinite;
}
@keyframes promo-spin {
  to { transform: rotate(360deg); }
}
.promo-close {
  display: none;
  position: absolute; top: 10px; right: 0; width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad-gold); color: var(--ink-950); border: 2px solid var(--ink-950); cursor: pointer;
  font-size: 15px; font-weight: 700; place-items: center; box-shadow: 0 6px 22px rgba(0,0,0,.5); z-index: 2;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.promo-close:hover { transform: rotate(90deg) scale(1.08); }
@media (max-width: 720px) {
  .promo-box { width: min(96vw, 420px); }
  .promo-img { max-height: calc(100vh - 108px); max-height: calc(100dvh - 108px); }
  .promo-login { width: min(100%, 250px); min-width: 0; }
}

/* Login modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(8,11,19,.8); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; z-index: 1000; padding: 20px;
}
.modal-overlay.active { display: flex; animation: overlay-in .25s ease; }
.modal {
  position: relative; width: 100%; max-width: 410px; text-align: center;
  background: linear-gradient(160deg, var(--ink-800), var(--ink-900));
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg); padding: 40px 34px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6); animation: modal-in .35s cubic-bezier(.22,1,.36,1);
}
@keyframes modal-in { from { opacity: 0; transform: translateY(24px) scale(.96); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 18px; right: 18px; background: none; border: none; color: var(--text-faint); font-size: 15px; cursor: pointer; transition: color .2s ease; }
.modal-close:hover { color: var(--gold); }
.modal-brand { display: flex; justify-content: center; margin-bottom: 18px; }
.modal-brand .brand-mark { width: 52px; height: 52px; font-size: 24px; border-radius: 15px; }
.modal-brand-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(240,20,20,.35);
}
.modal-title { font-size: 22px; margin-bottom: 6px; }
.modal-desc { color: var(--text-dim); font-size: 14px; margin-bottom: 26px; }
.modal-form { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.modal-form label { display: flex; flex-direction: column; gap: 8px; font-size: 12.5px; color: var(--text-dim); }
.modal-form input {
  background: rgba(255,255,255,.04); border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 12px 14px; color: var(--text); font-family: 'Inter',sans-serif; font-size: 14px; outline: none; transition: border-color .2s ease;
}
.modal-form input:focus { border-color: var(--violet); }
.modal-foot { margin-top: 20px; font-size: 13px; color: var(--text-dim); }
.modal-foot a { color: var(--gold); text-decoration: none; }

body.no-scroll { overflow: hidden; }

/* News page */
.page-hero { position: relative; z-index: 1; padding: 72px 0 40px; }
.page-title { font-size: clamp(30px, 5vw, 46px); font-weight: 800; letter-spacing: .5px; }
.page-lead { color: var(--text-dim); font-size: 17px; max-width: 560px; margin-top: 14px; }
.news-section { padding-top: 24px; }

.news-featured {
  display: grid; grid-template-columns: minmax(280px, 420px) 1fr; gap: 0; margin-bottom: 40px;
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(165deg, var(--ink-850), var(--ink-900));
  transition: border-color .3s ease;
}
.news-featured:hover { border-color: var(--line-strong); }
.news-featured-media {
  position: relative; min-height: 560px;
  background: #020407;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
}
.news-cover-img { width: 100%; height: 100%; display: block; object-fit: contain; border-radius: 14px; }
.news-featured-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.news-featured-body h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; margin: 12px 0 14px; line-height: 1.25; }
.news-featured-body p { color: var(--text-dim); font-size: 15px; margin-bottom: 22px; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card {
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  background: linear-gradient(165deg, var(--ink-850), var(--ink-900));
  transition: transform .3s cubic-bezier(.22,1,.36,1), border-color .3s ease, box-shadow .3s ease;
}
.news-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 0 20px 44px rgba(0,0,0,.42); }
.news-card-media {
  position: relative; height: 160px;
  background-image:
    linear-gradient(180deg, rgba(8,11,19,.04), rgba(8,11,19,.7)),
    url("assets/image/lambelunarah-logo.png"),
    radial-gradient(120% 100% at 70% 20%, rgba(240,20,20,.28), transparent 60%),
    linear-gradient(150deg, var(--ink-700), var(--ink-900));
  background-position: center, center, center, center;
  background-size: cover, auto 82%, cover, cover;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}
.news-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.news-card-body h3 { font-size: 17px; margin: 10px 0 8px; line-height: 1.3; }
.news-card-body p { color: var(--text-dim); font-size: 14px; margin-bottom: 18px; flex: 1; }

.news-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2; padding: 5px 12px; border-radius: 999px;
  font-family: 'Sora',sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: .5px;
  backdrop-filter: blur(6px); border: 1px solid var(--line-strong);
}
.tag-gold { color: var(--gold); background: rgba(233,190,92,.15); }
.tag-violet { color: var(--violet-300); background: rgba(240,20,20,.18); }
.tag-cyan { color: var(--cyan); background: rgba(69,213,230,.14); }

.news-meta { font-size: 12.5px; color: var(--text-faint); letter-spacing: .3px; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 7px; color: var(--gold); text-decoration: none;
  font-family: 'Sora',sans-serif; font-weight: 600; font-size: 13.5px; margin-top: auto;
  transition: gap .2s ease, color .2s ease;
}
.link-arrow .icon { width: 1.05em; height: 1.05em; }
.link-arrow:hover { gap: 12px; color: var(--gold-300); }

/* Responsive */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-frame { max-width: 320px; }
  .feature-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; max-width: 420px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-media { min-height: 520px; }
}
@media (max-width: 720px) {
  .nav-links {
    display: flex; flex-direction: column; gap: 4px; position: absolute; top: 74px; left: 0; right: 0;
    padding: 12px 24px 20px; background: rgba(8,11,19,.97); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 4px; font-size: 15px; }
  .burger { display: flex; }
  .burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.active span:nth-child(2) { opacity: 0; }
  .burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-cta { display: none; }
  .feature-grid, .steps, .testi-grid, .stats-inner { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .showcase-card.large { grid-row: auto; height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .news-grid { grid-template-columns: 1fr; }
  .news-featured-media { min-height: 460px; }
}
@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .brand-name { font-size: 13px; max-width: 120px; white-space: normal; line-height: 1.1; }
  .hero-frame { max-width: 300px; }
  .news-featured-media { min-height: 400px; }
}
