/* ═══════════════════════════════════════════════
   XAVINDO — PREMIUM 3D EXPERIENCE
   $10K Design System
═══════════════════════════════════════════════ */

:root {
  --bg:        #04040f;
  --bg2:       #07071a;
  --bg3:       #0d0d24;
  --cyan:      #00D4FF;
  --blue:      #0066FF;
  --violet:    #7B2FFF;
  --pink:      #FF3DA6;
  --white:     #f0f4ff;
  --gray:      #8892a4;
  --border:    rgba(255,255,255,.07);
  --glass:     rgba(255,255,255,.03);
  --glass2:    rgba(255,255,255,.06);
  --grad:      linear-gradient(135deg, var(--cyan), var(--violet));
  --grad2:     linear-gradient(135deg, var(--violet), var(--pink));
  --glow-c:    0 0 60px rgba(0,212,255,.15), 0 0 120px rgba(123,47,255,.08);
  --r:         16px;
  --r2:        24px;
  --ease:      cubic-bezier(.25,.46,.45,.94);
  --ease2:     cubic-bezier(.16,1,.3,1);
  --font:      'Plus Jakarta Sans', sans-serif;
  --font2:     'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* fix: prevent horizontal scroll from 3D transforms */
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  /* fix: prevent horizontal overflow from transforms */
  max-width: 100vw;
}

::selection { background: rgba(0,212,255,.25); color: var(--white); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 2px; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(0,212,255,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s, border-color .3s;
  mix-blend-mode: normal;
}
#cursor-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: transform .1s;
}
body.cursor-hover #cursor {
  width: 60px; height: 60px;
  background: rgba(0,212,255,.08);
  border-color: var(--cyan);
}
body.cursor-click #cursor {
  width: 28px; height: 28px;
  background: rgba(0,212,255,.2);
}
@media (hover: none) {
  #cursor, #cursor-dot { display: none; }
  body { cursor: auto; }
}

/* ── WORLD CANVAS ── */
#world-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-inner { text-align: center; }
.pre-logo {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  animation: preRotate 2s linear infinite;
}
.pre-logo svg { width: 100%; height: 100%; }
@keyframes preRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.pre-wordmark {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .3em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 32px;
}
.pre-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 1px;
  margin: 0 auto 12px;
  overflow: hidden;
}
.pre-fill {
  height: 100%;
  width: 0%;
  background: var(--grad);
  border-radius: 1px;
  animation: preFill 1.8s var(--ease2) forwards;
}
@keyframes preFill {
  to { width: 100%; }
}
.pre-status {
  font-size: .75rem;
  color: var(--gray);
  letter-spacing: .1em;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.15; }
h3 { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: .95rem; color: var(--gray); line-height: 1.7; }

.section-lead {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--gray);
  max-width: 580px;
  line-height: 1.75;
  margin: 16px auto 0; /* center within .section-header */
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--grad);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: transform .3s var(--ease2), box-shadow .3s;
  box-shadow: 0 4px 30px rgba(0,212,255,.25);
  cursor: none;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px rgba(0,212,255,.4);
}
.btn-primary.large {
  padding: 16px 36px;
  font-size: 1rem;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 50px;
  font-weight: 500;
  font-size: .9rem;
  transition: border-color .3s, background .3s, transform .3s var(--ease2);
  cursor: none;
}
.btn-ghost:hover {
  border-color: rgba(0,212,255,.4);
  background: rgba(0,212,255,.06);
  transform: translateY(-2px);
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 60px);
  height: 68px;
  transition: background .4s, backdrop-filter .4s, border-bottom .4s;
}
#nav.scrolled {
  background: rgba(4,4,15,.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -.01em;
  cursor: none;
}
.nav-logo em { color: var(--cyan); font-style: normal; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray);
  transition: color .2s;
  cursor: none;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform .3s var(--ease2);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 8px 20px;
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--cyan) !important;
  font-size: .8rem !important;
  font-weight: 600 !important;
  transition: background .3s, border-color .3s !important;
}
.nav-cta:hover { background: rgba(0,212,255,.1) !important; border-color: var(--cyan) !important; }
.nav-cta::after { display: none !important; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}

/* ── HERO ── */
.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(24px, 8vw, 120px) 80px;
  z-index: 1;
  perspective: 1200px;
}
.hero-depth-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.depth-chip {
  position: absolute;
  padding: 6px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--cyan);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform .1s linear;
}
.dc1 { top: 20%; left: 8%; }
.dc2 { top: 35%; right: 6%; }
.dc3 { bottom: 35%; left: 6%; }
.dc4 { top: 65%; right: 10%; }
.dc5 { top: 15%; right: 20%; }
.depth-stat {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: var(--r);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.depth-stat strong { font-size: 1.4rem; font-weight: 800; color: var(--white); line-height: 1; }
.depth-stat span { font-size: .65rem; color: var(--gray); text-transform: uppercase; letter-spacing: .1em; }
.ds1 { bottom: 25%; left: 5%; }
.ds2 { top: 45%; right: 5%; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.hero-h1 .line-reveal {
  display: block;
  overflow: hidden;
}
.hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.hero-badges span {
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--gray);
  transition: border-color .3s, color .3s;
}
.hero-badges span:hover { border-color: var(--cyan); color: var(--cyan); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .5;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--cyan));
}
.scroll-hint span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── MARQUEE ── */
.marquee-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 14px 0;
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: .05em;
}
.marquee-track i { color: var(--cyan); font-style: normal; font-size: .5rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── STATS ── */
.section-stats {
  position: relative;
  z-index: 2;
  padding: 80px clamp(24px, 8vw, 120px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
}
.stat-item {
  background: var(--bg2);
  padding: 40px 32px;
  text-align: center;
  transition: background .3s;
}
.stat-item:hover { background: var(--bg3); }
.stat-item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item span {
  font-size: .8rem;
  color: var(--gray);
  letter-spacing: .05em;
}
.stat-traffic strong::before { content: '+'; }
.stat-traffic strong::after  { content: '%'; }

/* ── SECTION COMMON ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 { margin-bottom: 8px; }

/* ── CARDS (PROBLEMS) ── */
.section-cards {
  position: relative;
  z-index: 2;
  padding: 100px clamp(24px, 8vw, 120px);
}
.cards-3d-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card-3d {
  position: relative;
  border-radius: var(--r2);
  overflow: hidden;
  cursor: none;
  transition: transform .4s var(--ease2);
  transform-style: preserve-3d;
}
.card-3d:hover { transform: translateY(-8px) scale(1.01); }
.card-3d:hover .card-glow { opacity: 1; }
.card-3d-inner {
  position: relative;
  z-index: 1;
  padding: 32px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  height: 100%;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color .3s;
}
.card-3d:hover .card-3d-inner { border-color: rgba(0,212,255,.2); }
.card-num {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--cyan);
  margin-bottom: 16px;
  font-family: var(--font2);
}
.card-icon {
  width: 40px; height: 40px;
  color: var(--cyan);
  margin-bottom: 16px;
  opacity: .7;
}
.card-icon svg { width: 100%; height: 100%; }
.card-3d h3 { margin-bottom: 12px; color: var(--white); }
.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,212,255,.08), transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}

/* ── SOLUTIONS ── */
.section-solutions {
  position: relative;
  z-index: 2;
  padding: 100px clamp(24px, 8vw, 120px);
  overflow: hidden;
}
.solutions-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 900;
  color: rgba(255,255,255,.015);
  letter-spacing: .1em;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sol-card {
  padding: 36px 32px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  transition: border-color .3s, background .3s, transform .4s var(--ease2);
  cursor: none;
  position: relative;
  overflow: hidden;
  animation-delay: var(--delay);
}
.sol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease2);
}
.sol-card:hover {
  border-color: rgba(0,212,255,.2);
  background: var(--glass2);
  transform: translateY(-6px);
}
.sol-card:hover::before { transform: scaleX(1); }
.sol-num {
  font-size: .7rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .15em;
  margin-bottom: 16px;
  font-family: var(--font2);
}
.sol-line {
  width: 32px; height: 2px;
  background: var(--grad);
  margin-bottom: 20px;
  border-radius: 1px;
}
.sol-card h3 { color: var(--white); margin-bottom: 12px; }
.sol-card p { font-size: .88rem; line-height: 1.7; }
.sol-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 12px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  border: 1px solid rgba(123,47,255,.3);
  border-radius: 50px;
  color: var(--violet);
}

/* ── 3D FEATURE SECTION ── */
.section-feature3d {
  position: relative;
  z-index: 2;
  padding: 100px clamp(24px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.f3d-features { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.f3d-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  animation-delay: var(--delay);
}
.f3d-feat-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}
.f3d-feat-icon svg { width: 22px; height: 22px; }
.f3d-feat h4 { color: var(--white); margin-bottom: 4px; }
.f3d-feat p { font-size: .85rem; }

/* TERMINAL */
.terminal-3d {
  background: #0a0a1a;
  border: 1px solid rgba(0,212,255,.15);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,.6), 0 0 60px rgba(0,212,255,.06);
  font-family: 'Courier New', monospace;
}
.term-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }
.term-title {
  margin-left: auto;
  font-size: .72rem;
  color: var(--gray);
  letter-spacing: .05em;
  font-family: var(--font);
}
.term-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.term-line {
  font-size: .8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateX(-10px);
  color: var(--gray);
}
.term-line.visible { opacity: 1; transform: translateX(0); transition: all .4s var(--ease2); }
.term-line .p { color: var(--violet); font-weight: 700; }
.term-line .t { color: #a0b4c8; }
.term-line .ok { color: #28c840; }
.term-line .cy { color: var(--cyan); font-style: normal; }
.term-line .pu { color: var(--violet); font-style: normal; }
.term-line.dim { opacity: 0; color: rgba(255,255,255,.25); font-size: .72rem; }
.term-line.dim.visible { opacity: 1; }
.badge {
  margin-left: auto;
  padding: 2px 8px;
  background: rgba(40,200,64,.15);
  border: 1px solid rgba(40,200,64,.3);
  border-radius: 4px;
  font-size: .65rem;
  color: #28c840;
  letter-spacing: .1em;
}
.term-cursor {
  width: 8px; height: 16px;
  background: var(--cyan);
  border-radius: 2px;
  animation: blink .8s ease-in-out infinite;
  margin-top: 4px;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.term-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 16px;
}
.tm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-align: center;
}
.tm strong {
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tm span { font-size: .68rem; color: var(--gray); }

/* ── WHY ── */
.section-why {
  position: relative;
  z-index: 2;
  padding: 100px clamp(24px, 8vw, 120px);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  position: relative;
  padding: 32px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  cursor: none;
  transition: border-color .3s, background .3s;
  transform-style: preserve-3d;
  will-change: transform;
}
.why-card:hover { border-color: rgba(123,47,255,.3); background: var(--glass2); }
.why-num {
  font-size: .7rem;
  font-weight: 700;
  color: var(--violet);
  letter-spacing: .15em;
  margin-bottom: 16px;
  font-family: var(--font2);
}
.why-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1rem; }
.why-card p { font-size: .85rem; line-height: 1.7; }
.why-arrow {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--violet);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s, transform .3s;
}
.why-card:hover .why-arrow { opacity: 1; transform: translateX(0); }

/* ── PORTFOLIO ── */
.section-portfolio {
  position: relative;
  z-index: 2;
  padding: 100px clamp(24px, 8vw, 120px);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.port-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  transition: border-color .3s, transform .4s var(--ease2);
  cursor: none;
  animation-delay: var(--delay);
}
.port-card:hover { border-color: rgba(0,212,255,.2); transform: translateY(-8px); }
.port-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.port-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease2);
}
.port-card:hover .port-img img { transform: scale(1.05); }
.port-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,4,15,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.port-card:hover .port-overlay { opacity: 1; }
.port-link {
  padding: 10px 20px;
  background: var(--grad);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
}
.port-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
}
.port-num {
  font-size: .7rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .15em;
  padding-top: 2px;
  font-family: var(--font2);
  white-space: nowrap;
}
.port-info h3 { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.port-info p { font-size: .84rem; margin-bottom: 6px; }
.port-info small { font-size: .72rem; color: var(--violet); }

/* APPS */
.apps-row { margin-top: 40px; }
.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.app-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  cursor: none;
  transition: border-color .3s, background .3s, transform .4s var(--ease2);
  animation-delay: var(--delay);
}
.app-card:hover {
  border-color: rgba(0,212,255,.2);
  background: var(--glass2);
  transform: translateY(-6px);
}
.app-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
}
.app-icon svg { width: 100%; height: 100%; }
.app-num {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .15em;
  margin-bottom: 8px;
  font-family: var(--font2);
}
.app-card h3 { color: var(--white); margin-bottom: 8px; }
.app-card p { font-size: .85rem; margin-bottom: 6px; }
.app-card small { color: var(--violet); font-size: .72rem; }

/* ── FOUNDER ── */
.section-founder {
  position: relative;
  z-index: 2;
  padding: 100px clamp(24px, 8vw, 120px);
}
.founder-wrap {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}
.founder-photo { position: relative; }
.photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border);
}
.photo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,.2);
  animation: ringRotate 8s linear infinite;
}
.photo-ring.r1 { inset: -20px; animation-direction: normal; }
.photo-ring.r2 { inset: -40px; animation-direction: reverse; animation-duration: 12s; }
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.photo-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(4,4,15,.9);
  border: 1px solid rgba(0,212,255,.3);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.founder-text h2 { margin-bottom: 20px; }
.founder-text p { margin-bottom: 16px; }
.founder-sig {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin: 28px 0;
}
.founder-sig strong { color: var(--white); font-size: .9rem; }
.founder-sig span { font-size: .8rem; color: var(--gray); }
.founder-btns { display: flex; gap: 12px; }

/* ── BRAND ── */
.section-brand {
  position: relative;
  z-index: 2;
  padding: 100px clamp(24px, 8vw, 120px);
  overflow: hidden;
}
.brand-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: clamp(60px, 12vw, 160px);
  font-weight: 900;
  color: rgba(255,255,255,.012);
  letter-spacing: .2em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.brand-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.brand-features { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.brand-feat {
  padding: 20px 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color .3s;
  animation-delay: var(--delay);
}
.brand-feat:hover { border-color: rgba(0,212,255,.2); }
.brand-feat h4 { color: var(--white); margin-bottom: 6px; }
.brand-feat p { font-size: .85rem; }

/* BRAND ORB */
/* ── Brand Orb animations ── */
@keyframes floatOrb {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-18px); }
}
@keyframes orbGlow {
  0%, 100% {
    box-shadow:
      0 0 30px rgba(0,212,255,.5),
      0 0 60px rgba(123,47,255,.3),
      0 0 100px rgba(0,212,255,.1);
  }
  50% {
    box-shadow:
      0 0 50px rgba(0,212,255,.8),
      0 0 100px rgba(123,47,255,.5),
      0 0 160px rgba(0,212,255,.25),
      0 0 220px rgba(123,47,255,.1);
  }
}
@keyframes ringPulse {
  0%, 100% { opacity: .25; }
  50%       { opacity: .7;  }
}

.brand-orb {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.brand-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,.3);
  animation: ringRotate 10s linear infinite, ringPulse 4s ease-in-out infinite;
}
.br1 { width: 200px; height: 200px; border-style: dashed; animation-duration: 12s, 3s; }
.br2 { width: 290px; height: 290px; animation-direction: reverse, normal; animation-duration: 18s, 5s; border-color: rgba(123,47,255,.3); }
.br3 { width: 380px; height: 380px; animation-duration: 25s, 7s; border-color: rgba(0,212,255,.15); }

/* Outer glow ring — purely decorative */
.brand-orb::before {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.06) 0%, transparent 70%);
  animation: orbGlow 4s ease-in-out infinite;
  pointer-events: none;
}

.brand-orb-core {
  position: relative;
  z-index: 2;
  width: 140px; height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 28px;
  animation: floatOrb 4s ease-in-out infinite, orbGlow 4s ease-in-out infinite;
  /* Glassmorphism ring */
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(0,212,255,.4);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
/* Inner gradient shimmer */
.brand-orb-core::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(
    rgba(0,212,255,.6) 0deg,
    transparent 60deg,
    rgba(123,47,255,.6) 180deg,
    transparent 240deg,
    rgba(0,212,255,.6) 360deg
  );
  animation: ringRotate 6s linear infinite;
  z-index: -1;
}
.brand-orb-core::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--bg);
  z-index: -1;
}
.brand-orb-core img {
  width: 90px; height: 90px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transform: none;
  filter: drop-shadow(0 0 12px rgba(0,212,255,.5));
}
.brand-orb-label { text-align: center; position: relative; z-index: 2; }
.brand-orb-label strong { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: .25em; color: var(--white); text-shadow: 0 0 20px rgba(0,212,255,.4); }
.brand-orb-label span { font-size: .78rem; color: var(--gray); display: block; margin-top: 4px; }
.brand-orb-label p { font-size: .72rem; color: var(--cyan); margin-top: 8px; letter-spacing: .12em; }

/* ── ARTICLES ── */
.section-articles {
  position: relative;
  z-index: 2;
  padding: 100px clamp(24px, 8vw, 120px);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.art-card {
  padding: 28px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  cursor: none;
  transition: border-color .3s, background .3s, transform .4s var(--ease2);
  display: flex;
  flex-direction: column;
  animation-delay: var(--delay);
  transform-style: preserve-3d;
  will-change: transform;
}
.art-card:hover {
  border-color: rgba(0,212,255,.2);
  background: var(--glass2);
  transform: translateY(-6px);
}
.art-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 50px;
  color: var(--cyan);
  margin-bottom: 16px;
}
.art-card h3 { color: var(--white); margin-bottom: 10px; font-size: .95rem; line-height: 1.4; }
.art-card p { font-size: .83rem; flex: 1; }
.art-link {
  display: inline-block;
  margin-top: 20px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--cyan);
  transition: gap .2s, letter-spacing .2s;
}
.art-card:hover .art-link { letter-spacing: .05em; }

/* ── CTA ── */
.section-cta {
  position: relative;
  z-index: 2;
  padding: 120px clamp(24px, 8vw, 120px);
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,47,255,.12) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaPulse 4s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50%      { transform: translate(-50%,-50%) scale(1.1); opacity: .7; }
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-lead {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 20px auto 40px;
  line-height: 1.75;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.trust-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-row span { font-size: .78rem; color: var(--gray); }

/* ── CONTACT ── */
.section-contact {
  position: relative;
  z-index: 2;
  padding: 100px clamp(24px, 8vw, 120px);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-copy h2 { margin-bottom: 20px; }
.contact-meta { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-label { font-size: .7rem; font-weight: 700; letter-spacing: .15em; color: var(--cyan); text-transform: uppercase; }
.contact-val { font-size: 1.1rem; font-weight: 600; color: var(--white); }
.contact-item small { font-size: .8rem; color: var(--gray); }
.map-link {
  display: inline-block;
  margin-top: 8px;
  font-size: .8rem;
  color: var(--cyan);
  transition: opacity .2s;
}
.map-link:hover { opacity: .7; }
.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.client-strip p { font-size: .78rem; color: var(--gray); margin-bottom: 12px; }
.client-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.client-tags span {
  padding: 6px 14px;
  font-size: .72rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--gray);
}

/* CONTACT VISUAL */
.contact-visual { display: flex; flex-direction: column; gap: 16px; }
.contact-dash {
  background: #0a0a1a;
  border: 1px solid rgba(0,212,255,.12);
  border-radius: var(--r2);
  overflow: hidden;
  font-family: var(--font2);
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .72rem;
  color: var(--gray);
}
.dash-body { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 1px; background: rgba(255,255,255,.05); }
.dash-panel {
  background: var(--bg2);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dash-panel.wide { padding: 16px; }
.dash-line {
  height: 8px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
}
.dash-line.sm { width: 60%; }
.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 50px;
  margin-top: 8px;
}
.dash-bars span {
  flex: 1;
  height: var(--h);
  background: var(--grad);
  border-radius: 3px 3px 0 0;
  opacity: .7;
  transition: opacity .3s;
}
.dash-bars span:hover { opacity: 1; }

.contact-testimonial {
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r2);
}
.stars { color: #FFD700; font-size: .9rem; margin-bottom: 10px; }
.contact-testimonial p { font-size: .85rem; font-style: italic; line-height: 1.6; margin-bottom: 10px; }
.contact-testimonial small { font-size: .75rem; color: var(--violet); }

/* ── FLOAT WA ── */
.float-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50px;
  font-size: .83rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(37,211,102,.3);
  transition: transform .3s var(--ease2), box-shadow .3s;
  cursor: none;
}
.float-wa:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(37,211,102,.5);
}

/* ── FOOTER ── */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 60px clamp(24px, 8vw, 120px) 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
  cursor: none;
}
.footer-brand p { font-size: .85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-badges span {
  padding: 4px 10px;
  font-size: .68rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--gray);
}
.footer-nav h4, .footer-contact h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}
.footer-nav a, .footer-contact a {
  display: block;
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: 10px;
  transition: color .2s;
  cursor: none;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--cyan); }
.footer-contact p { font-size: .8rem; line-height: 1.6; margin: 8px 0 16px; }
.footer-contact .btn-primary { font-size: .8rem; padding: 10px 20px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 8vw, 120px);
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--gray);
}

/* ── REVEAL ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease2), transform .8s var(--ease2);
  transition-delay: var(--delay, 0s);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease2), transform .6s var(--ease2);
  transition-delay: calc(var(--index, 1) * .08s);
}
.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-word {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease2), transform .6s var(--ease2);
}
.reveal-word.visible { opacity: 1; transform: translateY(0); }
.line-reveal > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .articles-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .cards-3d-grid,
  .solutions-grid,
  .why-grid,
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .section-feature3d,
  .brand-wrap,
  .contact-wrap,
  .founder-wrap { grid-template-columns: 1fr; gap: 48px; }
  .founder-photo { max-width: 340px; margin: 0 auto; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 280px;
    background: rgba(4,4,15,.97);
    -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    transition: right .4s var(--ease2);
    gap: 20px;
  }
  .nav-links.open { right: 0; }
  .nav-burger { display: flex; }
  .nav-links a { font-size: 1rem; }
  .f3d-right { display: none; }
}

@media (max-width: 600px) {
  .cards-3d-grid,
  .solutions-grid,
  .why-grid,
  .portfolio-grid,
  .apps-grid,
  .articles-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .depth-chip, .depth-stat { display: none; }
  .brand-orb-ring.br3 { display: none; }
}

/* ════════════════════════════════════════════
   INNER PAGES — Shared + Per-page styles
   nav-logo-img, page-hero, layanan, harga,
   blog, kontak
════════════════════════════════════════════ */

/* ── Logo image size in nav & footer ── */
.nav-logo-img {
  width: 32px; height: 32px;
  object-fit: contain;
  display: block;
}
.pre-logo img { display: block; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  z-index: 2;
  padding: 140px clamp(24px,8vw,120px) 80px;
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,212,255,.06), transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { margin: 12px 0 20px; }
.page-hero .hero-badges { margin-top: 24px; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  color: var(--gray);
  margin-bottom: 8px;
}
.page-breadcrumb a { color: var(--cyan); transition: opacity .2s; }
.page-breadcrumb a:hover { opacity: .7; }
.page-breadcrumb span { opacity: .4; }

/* ── LAYANAN PAGE ── */
.layanan-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 48px;
}
.layanan-card {
  padding: 36px 32px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  transition: border-color .3s, background .3s, transform .4s var(--ease2);
  cursor: none;
  position: relative;
  overflow: hidden;
}
.layanan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease2);
}
.layanan-card:hover {
  border-color: rgba(0,212,255,.25);
  background: var(--glass2);
  transform: translateY(-6px);
}
.layanan-card:hover::before { transform: scaleX(1); }
.layanan-num {
  font-size: .7rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .15em;
  margin-bottom: 16px;
  font-family: var(--font2);
}
.layanan-icon {
  width: 48px; height: 48px;
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--cyan);
}
.layanan-icon svg { width: 24px; height: 24px; }
.layanan-card h3 { color: var(--white); margin-bottom: 12px; }
.layanan-card p { font-size: .875rem; line-height: 1.7; margin-bottom: 12px; }
.layanan-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}
.layanan-card ul li {
  font-size: .82rem;
  color: var(--gray);
  padding-left: 16px;
  position: relative;
}
.layanan-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: .75rem;
}
.layanan-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 12px;
  font-size: .68rem;
  font-weight: 600;
  border: 1px solid rgba(0,212,255,.25);
  border-radius: 50px;
  color: var(--cyan);
}

/* seo content block */
.seo-content-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.seo-blocks { display: flex; flex-direction: column; gap: 40px; }
.seo-block { border-left: 2px solid var(--border); padding-left: 24px; }
.seo-block:hover { border-color: rgba(0,212,255,.3); }
.seo-block h3 { color: var(--white); margin-bottom: 10px; }
.seo-block p { font-size: .88rem; line-height: 1.8; }
.seo-sidebar {
  position: sticky;
  top: 100px;
  padding: 28px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r2);
}
.seo-sidebar h4 { color: var(--white); margin-bottom: 12px; }
.seo-sidebar p { font-size: .85rem; margin-bottom: 20px; }
.seo-sidebar-btns { display: flex; flex-direction: column; gap: 10px; }

/* ── HARGA PAGE ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 48px;
}
.price-card {
  position: relative;
  padding: 36px 32px 40px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  transition: border-color .3s, transform .4s var(--ease2);
  cursor: none;
  overflow: hidden;
}
.price-card.featured {
  border-color: rgba(0,212,255,.3);
  background: rgba(0,212,255,.04);
}
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px; right: 20px;
  padding: 4px 12px;
  background: var(--grad);
  border-radius: 50px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #fff;
}
.price-card:hover {
  border-color: rgba(123,47,255,.3);
  transform: translateY(-6px);
}
.price-card.featured:hover { border-color: rgba(0,212,255,.5); }
.price-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.price-amount {
  font-size: clamp(1.8rem,3vw,2.4rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
  display: block;
}
.price-tagline {
  font-size: .82rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}
.price-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-list li {
  font-size: .83rem;
  color: var(--gray);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.price-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 700;
}
.price-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  background: var(--grad);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: .875rem;
  transition: opacity .3s, transform .3s;
  cursor: none;
}
.price-cta:hover { opacity: .85; transform: translateY(-2px); }
.price-card .price-cta-alt {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 50px;
  font-weight: 500;
  font-size: .875rem;
  transition: border-color .3s;
  cursor: none;
}
.price-card .price-cta-alt:hover { border-color: rgba(0,212,255,.3); }

/* FAQ */
.faq-grid { display: flex; flex-direction: column; gap: 1px; margin-top: 40px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--glass);
  margin-bottom: 8px;
  transition: border-color .3s;
}
.faq-item:hover { border-color: rgba(0,212,255,.2); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--font);
  text-align: left;
  cursor: none;
  gap: 12px;
}
.faq-q span { flex: 1; }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: .8rem;
  transition: transform .3s, background .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(0,212,255,.1); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ── BLOG PAGE ── */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px clamp(24px,8vw,120px);
  background: var(--glass);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.blog-featured-img {
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--border);
}
.blog-featured-img img { width: 100%; display: block; }
.blog-featured-text h2 { margin: 12px 0 16px; }
.blog-featured-text p { margin-bottom: 24px; }

.blog-section {
  position: relative;
  z-index: 2;
  padding: 80px clamp(24px,8vw,120px);
}
.blog-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.blog-section-header h2 { font-size: clamp(1.2rem,2.5vw,1.8rem); }
.blog-articles-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.blog-art-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  transition: border-color .3s, transform .4s var(--ease2);
  cursor: none;
}
.blog-art-card:hover {
  border-color: rgba(0,212,255,.2);
  transform: translateY(-6px);
}
.blog-art-img {
  height: 140px;
  background: var(--bg3);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.blog-art-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-art-card:hover .blog-art-img img { transform: scale(1.05); }
.blog-art-body { padding: 20px; }
.blog-art-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 50px;
  color: var(--cyan);
  margin-bottom: 10px;
}
.blog-art-meta {
  font-size: .7rem;
  color: var(--gray);
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
}
.blog-art-body h3 {
  color: var(--white);
  font-size: .95rem;
  line-height: 1.4;
  margin-bottom: 8px;
}
.blog-art-body h3 a { color: inherit; transition: color .2s; }
.blog-art-body h3 a:hover { color: var(--cyan); }
.blog-art-body p { font-size: .82rem; line-height: 1.65; margin-bottom: 14px; }
.blog-read-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--cyan);
  transition: letter-spacing .2s;
}
.blog-art-card:hover .blog-read-link { letter-spacing: .04em; }

/* ── KONTAK PAGE ── */
.kontak-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.kontak-meta-list { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.kontak-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color .3s;
}
.kontak-meta-item:hover { border-color: rgba(0,212,255,.2); }
.kontak-meta-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.kontak-meta-item strong { display: block; color: var(--white); margin-bottom: 4px; font-size: .9rem; }
.kontak-meta-item a, .kontak-meta-item span { font-size: .85rem; color: var(--cyan); }
.kontak-meta-item small { display: block; font-size: .75rem; color: var(--gray); margin-top: 2px; }

.kontak-form-box {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 40px;
}
.kontak-form-box h3 { color: var(--white); margin-bottom: 6px; }
.kontak-form-box > p { font-size: .83rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .78rem; font-weight: 600; color: var(--white); }
.form-group label span { color: #f87171; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font);
  font-size: .875rem;
  outline: none;
  transition: border-color .3s, background .3s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0,212,255,.4);
  background: rgba(0,212,255,.04);
}
.form-group select option { background: var(--bg2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  cursor: none;
  transition: opacity .3s, transform .3s;
  margin-top: 8px;
}
.form-submit:hover { opacity: .85; transform: translateY(-2px); }
.form-note { font-size: .72rem; color: var(--gray); margin-top: 12px; text-align: center; }

/* trust badges in kontak */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.trust-badge {
  padding: 6px 14px;
  font-size: .72rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--gray);
}

/* ── RESPONSIVE INNER PAGES ── */
@media (max-width:900px) {
  .layanan-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-articles-grid { grid-template-columns: repeat(2,1fr); }
  .kontak-wrap { grid-template-columns: 1fr; }
  .seo-content-wrap { grid-template-columns: 1fr; }
  .seo-sidebar { position: static; }
}
@media (max-width:600px) {
  .layanan-grid { grid-template-columns: 1fr; }
  .blog-articles-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding-top: 110px; }
}

/* ── SHARED INNER PAGE EXTRAS ── */
.footer-heading {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: .85rem;
  color: var(--gray);
  transition: color .2s;
}
.footer-links a:hover { color: var(--cyan); }

/* sol-grid alias */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
@media (max-width:900px) { .sol-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:600px) { .sol-grid { grid-template-columns: 1fr; } }

/* terminal bar/dot for layanan page */
.term-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--border);
  border-radius: var(--r2) var(--r2) 0 0;
  margin: -28px -24px 0;
}
.term-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: block;
}

/* ── SAFETY FALLBACK ──────────────────────────
   If JS scroll animations fail to fire (e.g. slow CDN),
   reveal elements after a CSS delay so content is never
   permanently invisible.
────────────────────────────────────────────── */
@keyframes _revealFallback {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Trigger after 3.5 s — gives GSAP/IO time to run first.
   If GSAP runs, it overrides these via inline styles.      */
.reveal-up:not(.visible) {
  animation: _revealFallback .6s ease-out 3.5s forwards;
}
.reveal-card:not(.visible) {
  animation: _revealFallback .6s ease-out 3.5s forwards;
}
.reveal-word:not(.visible) {
  animation: _revealFallback .6s ease-out 3.5s forwards;
}

/* ══════════════════════════════════════════════════════
   PREMIUM CARD INTERACTIONS & ANIMATIONS
   ══════════════════════════════════════════════════════ */

/* ── Blog article card: fully clickable area ── */
.blog-art-card { position: relative; }
.blog-art-body h3 a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--r2);
}
/* Keep interactive elements above the overlay */
.blog-art-tag,
.blog-art-meta,
.blog-read-link,
.blog-art-body .btn-primary { position: relative; z-index: 2; }

/* ── Blog card shimmer on hover ── */
@keyframes cardShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.blog-art-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r2);
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(0,212,255,.08) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  z-index: 0;
}
.blog-art-card:hover::after {
  opacity: 1;
  animation: cardShimmer .8s ease forwards;
}

/* ── Problem cards (card-3d): glow intensify on hover ── */
@keyframes cardGlowPop {
  0%   { box-shadow: none; }
  50%  { box-shadow: 0 0 30px rgba(0,212,255,.15), 0 20px 50px rgba(0,0,0,.4); }
  100% { box-shadow: 0 0 20px rgba(0,212,255,.1),  0 20px 40px rgba(0,0,0,.35); }
}
.card-3d:hover { animation: cardGlowPop .4s ease forwards; }

/* ── Sol / Layanan / Service cards: border glow sweep ── */
@keyframes borderGlow {
  0%,100% { border-color: var(--border); }
  50%      { border-color: rgba(0,212,255,.35); }
}
.sol-card:hover   { animation: borderGlow .6s ease-in-out forwards; }
.layanan-card { transition: transform .35s var(--ease2), box-shadow .35s, border-color .35s; }
.layanan-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 30px rgba(123,47,255,.15);
  border-color: rgba(123,47,255,.3) !important;
}

/* ── Price cards: featured shimmer ── */
.price-card {
  transition: transform .35s var(--ease2), box-shadow .35s, border-color .35s;
}
.price-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 40px rgba(0,212,255,.12);
}

/* ── Portfolio / Founder cards: lift + glow ── */
.port-card, .team-card {
  transition: transform .35s var(--ease2), box-shadow .35s;
}
.port-card:hover, .team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 25px rgba(0,212,255,.1);
}

/* ── FAQ accordion reveal ── */
.faq-item {
  transition: background .3s, border-color .3s;
}
.faq-item:hover {
  border-color: rgba(0,212,255,.15);
  background: rgba(0,212,255,.03);
}

/* ══════════════════════════════════════════════════════
   ARTICLE PAGE STYLES
   ══════════════════════════════════════════════════════ */

/* Outer container — clears fixed nav */
.panel {
  position: relative;
  z-index: 2;
  padding: 120px clamp(20px, 6vw, 60px) 80px;
}

/* Centered article column */
.article-page {
  max-width: 780px;
  margin: 0 auto;
}

/* Eyebrow above h1 */
.article-page .eyebrow {
  margin-bottom: 12px;
}

/* Article h1 */
.article-page h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
}

/* Feature / hero image */
.feature-image,
.blog-feature-image {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--r2);
  border: 1px solid var(--border);
  margin: 8px 0 28px;
  display: block;
}

/* Article meta tags */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.article-meta span {
  padding: 4px 12px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--gray);
  background: rgba(255,255,255,.03);
}
.article-meta span:first-child {
  border-color: rgba(0,212,255,.3);
  color: var(--cyan);
  background: rgba(0,212,255,.05);
}

/* Snippet / highlighted excerpt */
.article-snippet {
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  color: var(--white);
  background: rgba(0,212,255,.06);
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--r1) var(--r1) 0;
  padding: 18px 22px;
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 500;
}

/* Lead paragraph */
.article-page .lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Body paragraphs */
.article-page p {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* Article headings */
.article-page h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--white);
  font-weight: 700;
  margin: 40px 0 16px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.article-page h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--white);
  font-weight: 600;
  margin: 28px 0 12px;
}

/* Lists */
.article-page ul,
.article-page ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-page li {
  font-size: .93rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 8px;
}
.article-page li::marker { color: var(--cyan); }

/* CTA box at end of article */
.content-box {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 32px;
  margin-top: 48px;
}
.content-box.contact-card {
  border-color: rgba(0,212,255,.2);
  background: rgba(0,212,255,.04);
  text-align: center;
}
.content-box.contact-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.content-box.contact-card p {
  font-size: .9rem;
  margin-bottom: 20px;
  max-width: 520px;
  margin-inline: auto;
}

/* .btn alias → same as .btn-primary */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r1);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  background: var(--grad);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,255,.35);
}

/* Floating WhatsApp button */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #25D366;
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.floating-wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
}
.floating-wa::before {
  content: '💬';
  font-size: 1rem;
}

/* ══════════════════════════════════════════════════════
   HOVER LIGHT REVEAL ANIMATION
   Radial light orb tracks cursor position on each card
   ══════════════════════════════════════════════════════ */

/* Cards that support the light reveal */
.blog-art-card,
.card-3d,
.layanan-card,
.sol-card,
.price-card,
.port-card {
  --lx: 50%; --ly: 50%;
  isolation: isolate;
}

/* The moving light orb — injected by JS */
.card-light-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0,212,255,.18) 0%,
    rgba(123,47,255,.08) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%) scale(0.8);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease, transform .6s cubic-bezier(.23,1,.32,1);
  z-index: 0;
  mix-blend-mode: screen;
}
.blog-art-card:hover .card-light-orb,
.card-3d:hover .card-light-orb,
.layanan-card:hover .card-light-orb,
.sol-card:hover .card-light-orb,
.price-card:hover .card-light-orb,
.port-card:hover .card-light-orb {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Ensure card children sit above the orb */
.blog-art-card > *:not(.card-light-orb),
.card-3d > *:not(.card-light-orb),
.layanan-card > *:not(.card-light-orb),
.sol-card > *:not(.card-light-orb),
.price-card > *:not(.card-light-orb),
.port-card > *:not(.card-light-orb) {
  position: relative;
  z-index: 1;
}

/* Article page responsive */
@media (max-width: 600px) {
  .panel { padding: 100px 20px 60px; }
  .article-page h1 { font-size: 1.7rem; }
  .feature-image, .blog-feature-image { max-height: 220px; }
  .content-box { padding: 24px 20px; }
  .floating-wa { bottom: 80px; right: 16px; }
}

/* ══════════════════════════════════════════════════
   3D IMMERSIVE DEPTH ENHANCEMENTS
   Mendukung: scroll depth tilt, canvas momentum,
   section perspective, particle interaction
══════════════════════════════════════════════════ */

/* ── World canvas smooth transform for velocity tilt ── */
#world-canvas {
  transition: transform 0.25s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

/* ── Section headers: 3D perspective tilt origin ── */
.section-header {
  transform-origin: center bottom;
  will-change: transform;
  transition: transform 0.05s linear;
}

/* ── CSS perspective context on main content ── */
main {
  perspective: 1800px;
  perspective-origin: 50% 0%;
}

/* ── Depth glow trail on cursor (immersion) ── */
body.cursor-hover #cursor::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.12) 0%, transparent 70%);
  animation: cursorPulse .8s ease-in-out infinite;
}
@keyframes cursorPulse {
  0%,100% { transform: scale(1); opacity: .8; }
  50%      { transform: scale(1.3); opacity: .3; }
}

/* ── Click ripple visual feedback ── */
@keyframes rippleOut {
  0%   { transform: translate(-50%,-50%) scale(0); opacity: .7; }
  100% { transform: translate(-50%,-50%) scale(4); opacity: 0; }
}
.click-ripple {
  position: fixed;
  width: 60px; height: 60px;
  border: 1px solid rgba(0,212,255,.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9990;
  animation: rippleOut .7s cubic-bezier(.4,0,.2,1) forwards;
}

/* ── Depth shimmer on visible sections ── */
.section-header .eyebrow {
  position: relative;
  z-index: 1;
}
.section-header .section-title {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
}

/* ── Background ring fade on mobile ── */
@media (max-width: 768px) {
  main { perspective: none; }
  .section-header { transform: none !important; }
  #world-canvas { transform: none !important; }
}
