/* ============================================================
   PsychMonitor — Design System & Styles
   "Mendengarkan yang Tak Terucap"
   ============================================================ */

/* --- Google Fonts loaded in HTML --- */

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* — Base Light Palette — */
  --bg-deep:        #E2E8F0;
  --bg-base:        #FFFFFF;
  --bg-surface:     #E2E8F0;
  --bg-card:        rgba(255, 255, 255, 0.95);
  --bg-card-solid:  #FFFFFF;
  --bg-card-blue:   rgba(219, 234, 254, 0.92);
  --bg-card-violet: rgba(237, 233, 254, 0.92);
  --bg-card-rose:   rgba(254, 242, 245, 0.92);
  --bg-card-cyan:   rgba(207, 250, 254, 0.92);

  /* — Accent Spectrum — */
  --cyan:           #00A8C6;
  --cyan-muted:     #008C9E;
  --violet:         #7C3AED;
  --magenta:        #E040AB;
  --rose:           #F48FB1;
  --rose-soft:      #F8BBD0;
  --coral:          #FF5252;

  /* — Text — */
  --text-primary:   #111827;
  --text-secondary: #4B5563;
  --text-muted:     #6B7280;
  --text-accent:    var(--cyan);

  /* — Gradients — */
  --grad-spectrum:  linear-gradient(135deg, var(--cyan), var(--violet), var(--magenta));
  --grad-fem:       linear-gradient(135deg, var(--rose), var(--coral), var(--magenta));
  --grad-glow-cyan: radial-gradient(ellipse at center, rgba(0,168,198,0.12) 0%, transparent 70%);
  --grad-glow-mag:  radial-gradient(ellipse at center, rgba(224,64,171,0.10) 0%, transparent 70%);

  /* — Per-Section Gradients (putih↔biru, putih↔pink) — */
  --grad-hero:      linear-gradient(180deg, #FFFFFF 0%, #DBEAFE 100%);
  --grad-about:     linear-gradient(180deg, #DBEAFE 0%, #FFFFFF 100%);
  --grad-showcase:  linear-gradient(180deg, #FFFFFF 0%, #FCE7F3 100%);
  --grad-pipeline:  linear-gradient(180deg, #FCE7F3 0%, #FFFFFF 100%);
  --grad-features:  linear-gradient(180deg, #FFFFFF 0%, #DBEAFE 100%);
  --grad-privacy:   linear-gradient(180deg, #DBEAFE 0%, #FFFFFF 100%);
  --grad-team:      linear-gradient(180deg, #FFFFFF 0%, #FCE7F3 100%);
  --grad-download:  linear-gradient(180deg, #FCE7F3 0%, #FFFFFF 100%);
  --grad-footer:    linear-gradient(180deg, #0F172A 0%, #1E293B 100%);

  /* — Typography — */
  --font-display:   'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body:      'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-mono:      'JetBrains Mono', 'Fira Code', monospace;

  /* — Spacing — */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2.5rem;
  --space-2xl:  4rem;
  --space-3xl:  6rem;
  --space-4xl:  8rem;
  --space-5xl:  12rem;

  /* — Borders & Radius — */
  --radius-sm:  0.375rem;
  --radius-md:  0.75rem;
  --radius-lg:  1.25rem;
  --radius-xl:  1.75rem;
  --radius-pill: 9999px;
  --border-subtle: 1px solid rgba(0,0,0,0.15);
  --border-glow:   1px solid rgba(0,168,198,0.25);

  /* — Shadows & Effects — */
  --shadow-card:     0 12px 48px rgba(0,0,0,0.12);
  --shadow-glow-cyan: 0 0 40px rgba(0,168,198,0.15), 0 0 80px rgba(0,168,198,0.05);
  --shadow-glow-mag:  0 0 40px rgba(224,64,171,0.12), 0 0 80px rgba(224,64,171,0.04);
  --blur-glass:      blur(16px);

  /* — Layout — */
  --max-width:    1320px;
  --nav-height:   72px;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-base);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--rose);
}

::selection {
  background: rgba(0,229,255,0.25);
  color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--violet);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--magenta);
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 60ch;
}

.label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.label--fem {
  color: var(--rose);
}

.gradient-text {
  background: var(--grad-spectrum);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text--fem {
  background: var(--grad-fem);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section--full {
  padding: var(--space-5xl) 0;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }


/* ============================================================
   5. GLASSMORPHISM & CARD UTILITIES
   ============================================================ */
.glass {
  background: var(--bg-card);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
}

.glass--glow {
  box-shadow: var(--shadow-glow-cyan);
}

.card {
  background: var(--bg-card);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,229,255,0.12);
  box-shadow: var(--shadow-card), var(--shadow-glow-cyan);
}


/* ============================================================
   6. KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(0.5deg); }
  66% { transform: translateY(-6px) rotate(-0.3deg); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes dash-flow {
  to { stroke-dashoffset: -40; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-left {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fade-right {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes letter-reveal {
  from { opacity: 0; transform: translateY(20px) rotateX(-40deg); }
  to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

@keyframes shield-assemble {
  0% { opacity: 0; transform: scale(0.5) rotate(-15deg); }
  60% { opacity: 1; transform: scale(1.05) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes count-glow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 20px var(--cyan); }
}

@keyframes wave-border {
  0% { border-color: rgba(0,229,255,0.2); }
  50% { border-color: rgba(224,64,171,0.2); }
  100% { border-color: rgba(0,229,255,0.2); }
}


/* ============================================================
   7. SCROLL REVEAL SYSTEM
   ============================================================ */
.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--up { transform: translateY(40px); }
.reveal--left { transform: translateX(-50px); }
.reveal--right { transform: translateX(50px); }
.reveal--scale { transform: scale(0.9); }

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   8. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.4s ease, 
              backdrop-filter 0.4s ease,
              height 0.4s ease,
              box-shadow 0.4s ease;
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 60px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--text-primary);
}

.nav__logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 0 8px rgba(0,229,255,0.2));
}

.nav.is-scrolled .nav__logo {
  width: 32px;
  height: 32px;
}

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.nav__wordmark span {
  background: var(--grad-spectrum);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-spectrum);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 1px;
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--grad-spectrum);
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,229,255,0.3);
  color: var(--bg-deep);
}

/* Mobile burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.nav__burger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav__mobile-menu.is-open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav__mobile-menu a:hover {
  color: var(--cyan);
}


/* ============================================================
   9. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-hero);
  padding-top: var(--nav-height);
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero__ambient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.hero__ambient--cyan {
  background: var(--cyan);
  top: 10%;
  right: -10%;
  opacity: 0.08;
}

.hero__ambient--magenta {
  background: var(--magenta);
  bottom: 5%;
  left: -10%;
  opacity: 0.06;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  width: 100%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero__text {
  max-width: 600px;
}

.hero__label {
  margin-bottom: var(--space-lg);
  display: inline-block;
}

.hero__title {
  margin-bottom: var(--space-lg);
  perspective: 800px;
}

.hero__title .word {
  display: inline-block;
  overflow: hidden;
}

.hero__title .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(25px) rotateX(-40deg);
  animation: letter-reveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
  opacity: 0;
  animation: fade-up 0.8s 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__cta-group {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  opacity: 0;
  animation: fade-up 0.8s 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), 
              box-shadow 0.3s ease,
              background 0.3s ease;
}

.btn--primary {
  background: var(--grad-spectrum);
  color: var(--bg-deep);
  font-weight: 600;
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0,229,255,0.25);
  color: var(--bg-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(0,0,0,0.12);
}

.btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__orb {
  width: clamp(200px, 22vw, 320px);
  height: clamp(200px, 22vw, 320px);
  border-radius: 50%;
  object-fit: cover;
  animation: float 8s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(0,229,255,0.2)) drop-shadow(0 0 80px rgba(124,58,237,0.15));
  position: relative;
  z-index: 2;
}

.hero__orb-glow {
  position: absolute;
  width: 130%;
  height: 130%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, rgba(124,58,237,0.06) 40%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
  z-index: 1;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: float-slow 2s ease-in-out infinite;
}


/* ============================================================
   10. ABOUT SECTION
   ============================================================ */
.about {
  position: relative;
  overflow: hidden;
  background: var(--grad-about);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about__text-block {
  position: relative;
}

.about__lead {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: var(--space-xl);
}

.about__lead em {
  font-style: italic;
  background: var(--grad-spectrum);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about__body {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.about__stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.about__stat-number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad-spectrum);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.about__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.about__floating-element {
  position: absolute;
  border-radius: var(--radius-lg);
  border: var(--border-subtle);
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-card);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.about__floating-element:nth-child(1) {
  top: 5%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
  animation-delay: 0s;
}

.about__floating-element:nth-child(2) {
  top: 35%;
  left: 5%;
  animation: float 7s ease-in-out infinite;
  animation-delay: 1s;
}

.about__floating-element:nth-child(3) {
  bottom: 15%;
  right: 15%;
  animation: float 5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.about__floating-element .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: var(--space-sm);
}

.dot--cyan { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.dot--violet { background: var(--violet); box-shadow: 0 0 8px var(--violet); }
.dot--magenta { background: var(--magenta); box-shadow: 0 0 8px var(--magenta); }


/* ============================================================
   11. FEM-PSYCHMONITOR SHOWCASE
   ============================================================ */
.showcase {
  position: relative;
  overflow: hidden;
  background: var(--grad-showcase);
}

.showcase::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: var(--grad-glow-mag);
  pointer-events: none;
  z-index: 0;
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.showcase__info {
  order: 1;
}

.showcase__fem-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: var(--space-lg);
  filter: drop-shadow(0 0 20px rgba(244,160,181,0.3));
}

.showcase__title {
  margin-bottom: var(--space-md);
}

.showcase__title span {
  display: block;
  background: var(--grad-fem);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase__desc {
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.showcase__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.showcase__badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #9D174D;
}

.showcase__score {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.25);
}

.showcase__score-number {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: #BE185D;
  line-height: 1;
}

.showcase__score-total {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: #6B7280;
}

.showcase__score-label {
  font-size: 0.85rem;
  color: #374151;
  margin-left: var(--space-md);
}

/* Phone Mockup */
.showcase__phone-wrapper {
  order: 2;
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 280px;
  position: relative;
  border-radius: 36px;
  background: #1A1A2E;
  padding: 12px;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.phone-mockup__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #1A1A2E;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-mockup__screen {
  width: 100%;
  aspect-ratio: 9/19.5;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: #FFF;
}

.phone-mockup__carousel {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.phone-mockup__slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.phone-mockup__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.phone-mockup__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: var(--space-lg);
}

.phone-mockup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.phone-mockup__dot.is-active {
  background: var(--rose);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(244,160,181,0.4);
}

.phone-mockup__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.phone-mockup__nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.phone-mockup__nav-btn:hover {
  border-color: var(--rose);
  color: var(--rose);
}


/* ============================================================
   12. TECHNOLOGY PIPELINE
   ============================================================ */
.pipeline {
  position: relative;
  overflow: hidden;
  background: var(--grad-pipeline);
}

.pipeline__track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  padding: var(--space-xl) 0;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.pipeline__track::-webkit-scrollbar {
  display: none;
}

.pipeline__stage {
  flex-shrink: 0;
  width: 280px;
  scroll-snap-align: center;
  position: relative;
}

.pipeline__card {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: var(--border-subtle);
  height: 100%;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  cursor: pointer;
}

.pipeline__card:nth-child(odd) {
  background: var(--bg-card-blue);
}

.pipeline__card:nth-child(even) {
  background: var(--bg-card-violet);
}

.pipeline__card:hover {
  border-color: rgba(0,229,255,0.2);
  box-shadow: var(--shadow-glow-cyan);
  transform: translateY(-4px);
}

.pipeline__step-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.pipeline__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0,229,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.pipeline__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cyan);
  stroke-width: 1.5;
  fill: none;
}

.pipeline__stage-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.pipeline__stage-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pipeline__connector {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.pipeline__connector svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  stroke-width: 1.5;
  fill: none;
}

.pipeline__scroll-hint {
  text-align: center;
  margin-top: var(--space-md);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ============================================================
   13. FEATURES — STAGGERED CARDS
   ============================================================ */
.features {
  position: relative;
  background: var(--grad-features);
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  padding: 32px;
  border-radius: 20px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  position: relative;
}

.feature-card__icon--spectrum {
  background: linear-gradient(135deg, rgba(0,229,255,0.12), rgba(124,58,237,0.12));
}

.feature-card__icon--fem {
  background: linear-gradient(135deg, rgba(244,160,181,0.15), rgba(224,64,171,0.1));
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
  fill: none;
}

.feature-card__title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: var(--space-md);
}

.feature-card__glow {
  display: none;
}


/* ============================================================
   14. PRIVACY & SECURITY
   ============================================================ */
.privacy {
  position: relative;
  overflow: hidden;
  background: var(--grad-privacy);
}

.privacy__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-3xl);
  align-items: center;
}

.privacy__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.privacy__shield {
  width: 200px;
  height: 240px;
  position: relative;
}

.privacy__shield svg {
  width: 100%;
  height: 100%;
}

.privacy__shield-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.1) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}

.privacy__content {
  position: relative;
}

.privacy__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.privacy__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.privacy__item:nth-child(odd) {
  background: rgba(255,255,255,0.75);
}

.privacy__item:nth-child(even) {
  background: rgba(255,255,255,0.75);
}

.privacy__item:hover {
  border-color: rgba(0,229,255,0.12);
  transform: translateX(4px);
}

.privacy__item-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0,229,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.privacy__item-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--cyan);
  stroke-width: 2.5;
  fill: none;
}

.privacy__item-text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.privacy__item-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}


/* ============================================================
   15. TEAM SECTION
   ============================================================ */
.team {
  position: relative;
  background: var(--grad-team);
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  perspective: 800px;
  margin-bottom: var(--space-2xl);
  justify-items: center;
}

.team__leader {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.team__assistants {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  perspective: 800px;
  margin-bottom: var(--space-2xl);
}

.team__assistants .team-card {
  max-width: 220px;
}

.team__group-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.team__group-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--grad-spectrum);
  margin: var(--space-sm) auto 0;
  border-radius: 1px;
}

.team-card {
  width: 100%;
  max-width: 300px;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-xl);
  background: var(--bg-card-blue);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: var(--border-subtle);
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s ease,
              border-color 0.4s ease;
  transform: rotate(var(--tilt, 0deg));
}

.team-card--ketua {
  width: 280px;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--bg-card-violet);
  border: 2px solid rgba(124, 58, 237, 0.15);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.08);
}

.team-card--ketua .team-card__avatar {
  width: 96px;
  height: 96px;
}

.team-card:nth-child(odd) {
  --tilt: -2deg;
  margin-top: var(--space-xl);
  background: var(--bg-card-violet);
}

.team-card:nth-child(even) {
  --tilt: 1.5deg;
  background: var(--bg-card-rose);
}

.team-card:hover {
  --tilt: 0deg;
  transform: rotate(0deg) translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-card), var(--shadow-glow-cyan);
  border-color: rgba(0,229,255,0.12);
  z-index: 2;
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--cyan), var(--violet), var(--magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-card__name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.team-card__role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team-card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(244,160,181,0.12);
  color: var(--rose);
  margin-top: 0.35rem;
}

.team-card__desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: var(--space-md);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.team-card:hover .team-card__desc {
  max-height: 100px;
  opacity: 1;
  margin-top: var(--space-md);
}


/* ============================================================
   16. DOWNLOAD CTA
   ============================================================ */
.download {
  position: relative;
  overflow: hidden;
  background: var(--grad-download);
  text-align: center;
}

.download__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.download__content {
  position: relative;
  z-index: 1;
}

.download__title {
  margin-bottom: var(--space-md);
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.download__subtitle {
  max-width: 55ch;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
}

.download__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.download__badge-link {
  display: inline-flex;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.08));
}

.download__badge-link:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.12));
}

.download__play-badge {
  height: 56px;
  width: auto;
  border-radius: var(--radius-md);
}

.download__qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.download__qr {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download__qr:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.download__qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download__qr-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ============================================================
   17. FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-3xl) 0 var(--space-xl);
  background: var(--grad-footer);
  color: #CBD5E1;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer__brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #F8FAFC;
}

.footer__desc {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer__program {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.12);
}

.footer__program-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.footer__program-text {
  font-size: 0.78rem;
  color: #94A3B8;
  line-height: 1.5;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: #F1F5F9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  font-size: 0.85rem;
  color: #94A3B8;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer__links a:hover {
  color: #F8FAFC;
  padding-left: 4px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: #64748B;
}

.footer__partners {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-size: 0.7rem;
  color: #64748B;
}


/* ============================================================
   18. SECTION DIVIDERS
   ============================================================ */
.section-divider {
  display: none;
}


/* ============================================================
   19. RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --space-4xl: 5rem;
    --space-5xl: 8rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__cta-group {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__orb {
    width: 200px;
    height: 200px;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__visual {
    display: none;
  }

  .showcase__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .showcase__info {
    order: 1;
  }

  .showcase__phone-wrapper {
    order: 2;
  }

  .showcase__badges {
    justify-content: center;
  }

  .showcase__score {
    justify-content: center;
  }

  .pipeline__stage {
    width: 260px;
  }

  .privacy__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .privacy__visual {
    order: -1;
  }

  .features__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 16px;
  }

  .feature-card__icon {
    width: 36px;
    height: 36px;
    margin-bottom: var(--space-sm);
  }

  .feature-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .feature-card__title {
    font-size: 0.85rem;
  }

  .feature-card__desc {
    font-size: 0.72rem;
    margin-top: var(--space-sm);
    line-height: 1.5;
  }

  .feature-card:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .feature-card:nth-child(2),
  .feature-card:nth-child(3) {
    margin-top: 0;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
}


/* ============================================================
   20. RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --space-4xl: 3.5rem;
    --space-5xl: 5rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }

  .section {
    padding: var(--space-4xl) 0;
  }

  .hero {
    min-height: 100svh;
    padding-top: var(--nav-height);
  }

  .hero__text {
    padding-top: 0;
  }

  .hero__orb {
    width: 140px;
    height: 140px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
  }

  .btn {
    justify-content: center;
  }

  .about__stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
  }

  .about__stat-number {
    font-size: 2rem;
  }

  .phone-mockup {
    width: 220px;
  }

  .showcase__title {
    font-size: 1.5rem;
  }

  .showcase__score-number {
    font-size: 2.2rem;
  }

  .showcase__score-total {
    font-size: 1.1rem;
  }

  .showcase__score-label {
    font-size: 0.75rem;
    margin-left: 0;
    width: 100%;
    margin-top: var(--space-xs);
  }

  .showcase__score {
    flex-wrap: wrap;
    gap: var(--space-xs);
  }

  .pipeline__track {
    gap: var(--space-sm);
    padding: var(--space-lg) 0;
  }

  .pipeline__stage {
    width: 240px;
  }

  .pipeline__card {
    padding: var(--space-lg);
  }

  .pipeline__scroll-hint {
    font-size: 0.75rem;
  }

  .privacy__item {
    padding: var(--space-md);
    text-align: left;
  }

  .privacy__item-text h4 {
    font-size: 0.85rem;
  }

  .privacy__item-text p {
    font-size: 0.78rem;
  }

  .feature-card {
    padding: 20px;
  }

  .team__grid {
    gap: var(--space-md);
  }

  .team__assistants {
    gap: var(--space-md);
  }

  .team__leader {
    margin-bottom: var(--space-lg);
  }

  .team-card {
    width: 100%;
    padding: var(--space-lg) var(--space-md);
  }

  .team-card--ketua {
    width: 100%;
    max-width: 300px;
    padding: var(--space-xl) var(--space-lg);
  }

  .team-card:nth-child(odd),
  .team-card:nth-child(even) {
    --tilt: 0deg;
    margin-top: 0;
  }

  .team-card__avatar {
    width: 64px;
    height: 64px;
  }

  .team-card--ketua .team-card__avatar {
    width: 80px;
    height: 80px;
  }

  .team-card__name {
    font-size: 0.9rem;
  }

  .download__actions {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
  }

  .download__play-badge {
    height: 44px;
  }

  .download__qr {
    width: 80px;
    height: 80px;
  }

  .footer__top {
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
  }

  .footer {
    padding: var(--space-2xl) 0 var(--space-lg);
  }

  .footer__brand-name {
    font-size: 0.95rem;
  }

  .footer__desc {
    font-size: 0.78rem;
    margin-bottom: var(--space-md);
  }

  .footer__col-title {
    font-size: 0.72rem;
    margin-bottom: var(--space-md);
  }

  .footer__links a {
    font-size: 0.78rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
    padding-top: var(--space-lg);
  }

  .footer__partners {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .pipeline__stage {
    width: 240px;
  }

  .nav__mobile-menu a {
    font-size: 1.3rem;
  }
}

/* ============================================================
   21. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
