/* ============================================================
   SystemMaster — FINAL PREMIUM THEME
   Dark blueprint background, gold accents, glass cards
   ============================================================ */

:root {
  /* Background gradient (matches screenshot) */
  --bg-1:        #0a1428;
  --bg-2:        #0f2347;
  --bg-3:        #06101f;

  /* Brand */
  --navy:        #0a1428;
  --blue:        #3D7EF0;
  --blue-light:  #5A9FFF;
  --blue-deep:   #1F5FD6;
  --gold:        #E5A93C;
  --gold-light:  #F0C566;
  --gold-deep:   #c98e1f;
  --neon-green:  #00FFA3;
  --neon-orange: #FF9A3C;
  --purple:      #a78bfa;

  /* Text */
  --white:       #ffffff;
  --silver:      #d0d8ea;
  --slate:       #8896b3;
  --muted:       #6b7896;

  /* Glass */
  --line:        rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --glass:       rgba(255, 255, 255, 0.04);
  --glass-2:     rgba(255, 255, 255, 0.07);

  --radius:      16px;
  --radius-lg:   22px;
  --shadow-md:   0 14px 40px rgba(0, 0, 0, 0.4);
  --shadow-lg:   0 28px 70px rgba(0, 0, 0, 0.55);
  --glow-blue:   0 0 30px rgba(61, 126, 240, 0.4);
  --glow-gold:   0 0 30px rgba(229, 169, 60, 0.45);

  --maxw:        1200px;
}

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--silver);
  background:
    radial-gradient(ellipse at top left,  rgba(61,126,240,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(229,169,60,0.10) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 50%, var(--bg-3) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ===== 3D BLUEPRINT GRID (whole page) ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 126, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 126, 240, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
  z-index: 0;
  animation: gridShift 40s linear infinite;
  perspective: 1000px;
  transform: perspective(800px) rotateX(0deg);
}
@keyframes gridShift {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 70px 70px, 70px 70px; }
}

/* Drifting glowing orbs */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle 400px at 15% 25%, rgba(61, 126, 240, 0.18) 0%, transparent 60%),
    radial-gradient(circle 300px at 85% 75%, rgba(229, 169, 60, 0.15) 0%, transparent 60%),
    radial-gradient(circle 200px at 55% 55%, rgba(0, 255, 163, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: orbDrift 25s ease-in-out infinite;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -30px) scale(1.05); }
}

main, header, section, footer, .wrap { position: relative; z-index: 1; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

.gold-word, .gold { color: var(--gold); }
.gold-word {
  background: linear-gradient(135deg, #ffe28a 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(229, 169, 60, 0.35);
}

p { color: var(--silver); }
a { color: var(--blue-light); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

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

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 20, 40, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled {
  background: rgba(10, 20, 40, 0.92);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 84px; height: 84px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(229, 169, 60, 0.35));
  image-rendering: -webkit-optimize-contrast;
}
.brand:hover .brand-mark { transform: scale(1.06); }

/* Footer logo bigger */
.footer-brand .brand-mark { width: 96px; height: 96px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: 'Sora';
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.brand-tag {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Sora';
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
}
.brand-tag {
  font-size: 0.68rem;
  color: var(--silver);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 9px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--silver);
  transition: all .25s ease;
}
.nav-links a:hover { background: var(--glass); color: var(--white); }
.nav-links a.active { color: var(--blue-light); }
.nav-links .nav-cta { margin-left: 8px; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: .3s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(61, 126, 240, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(61, 126, 240, 0.6), var(--glow-blue);
  color: var(--white);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: #2a1c00;
  box-shadow: 0 8px 24px rgba(229, 169, 60, 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
  font-weight: 800;
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(229, 169, 60, 0.65), var(--glow-gold);
  color: #2a1c00;
}
.btn-ghost {
  background: var(--glass);
  color: var(--white);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--glass-2);
  border-color: var(--blue-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61, 126, 240, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px; left: -150px;
  filter: blur(40px);
  animation: orbFloat1 16s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(229, 169, 60, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -180px; right: -120px;
  filter: blur(40px);
  animation: orbFloat2 18s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(50px, 40px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-50px, -40px); }
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 40px; }
}

.hero-left h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin: 22px 0 22px;
  color: var(--white);
}
.hero-left p {
  font-size: 1.08rem;
  color: var(--silver);
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  background: rgba(61, 126, 240, 0.12);
  border: 1px solid rgba(61, 126, 240, 0.3);
  color: var(--blue-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.hero-badge .badge-seal {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800;
  color: #2a1c00;
  box-shadow: 0 0 12px rgba(229,169,60,0.5);
}

.hero-actions { display: flex; gap: 14px; margin-top: 8px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  margin-top: 56px;
}
.hero-stat .big {
  font-family: 'Sora';
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(229, 169, 60, 0.5);
  position: relative;
  display: inline-block;
}
.hero-stat .big::after {
  content: "";
  position: absolute;
  left: 100%; top: 50%;
  width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-left: 6px;
}
.hero-stat:last-child .big::after { display: none; }
.hero-stat .cap {
  font-size: 0.8rem;
  color: var(--silver);
  letter-spacing: 0.06em;
  margin-top: 6px;
}

/* ===== DASHBOARD MOCKUP (hero right) ===== */
.hero-mockup {
  position: relative;
  padding: 26px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.08);
  animation: mockupFloat 7s ease-in-out infinite;
}
@keyframes mockupFloat {
  0%, 100% { transform: translateY(0) rotateX(0); }
  50%      { transform: translateY(-14px) rotateX(2deg); }
}
/* Radar circle behind mockup */
.hero-mockup::before {
  content: "";
  position: absolute;
  inset: -60px;
  border: 1px dashed rgba(61, 126, 240, 0.25);
  border-radius: 50%;
  animation: spinSlow 60s linear infinite;
  pointer-events: none;
  z-index: -1;
}
.hero-mockup::after {
  content: "";
  position: absolute;
  inset: -100px;
  border: 1px dashed rgba(229, 169, 60, 0.18);
  border-radius: 50%;
  animation: spinSlow 90s linear infinite reverse;
  pointer-events: none;
  z-index: -1;
}
@keyframes spinSlow { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.mockup-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.02rem;
}
.mockup-row {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 16px; margin: 10px 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all .3s;
}
.mockup-row:hover {
  background: rgba(61, 126, 240, 0.08);
  border-color: rgba(61, 126, 240, 0.3);
}
.mockup-row .mi {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.mi-blue   { background: rgba(61, 126, 240, 0.15); color: var(--blue-light); }
.mi-gold   { background: rgba(229, 169, 60, 0.15); color: var(--gold); }
.mi-green  { background: rgba(0, 255, 163, 0.12); color: var(--neon-green); }
.mi-purple { background: rgba(167, 139, 250, 0.15); color: var(--purple); }

.mockup-row .mt b { display: block; color: var(--white); font-weight: 700; font-size: 0.95rem; }
.mockup-row .mt span { color: var(--slate); font-size: 0.82rem; }
.mockup-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-green  { background: var(--neon-green); box-shadow: 0 0 12px var(--neon-green); }
.dot-gold   { background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.dot-blue   { background: var(--blue-light); box-shadow: 0 0 12px var(--blue-light); }
.dot-purple { background: var(--purple); box-shadow: 0 0 12px var(--purple); }

.mockup-bar {
  margin-left: auto;
  width: 60px; height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.mockup-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-green), var(--gold), #ef4444);
  border-radius: 4px;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-banner::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61, 126, 240, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  top: -150px; left: -100px;
  filter: blur(40px);
  animation: orbFloat1 14s ease-in-out infinite;
}
.page-banner > * { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); margin-bottom: 14px; }
.page-banner p { color: var(--silver); font-size: 1.05rem; max-width: 700px; margin: 0 auto; }
.page-banner .clock-line {
  margin-top: 14px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.crumb {
  font-size: 0.88rem;
  color: var(--slate);
  margin-top: 18px;
}
.crumb a { color: var(--silver); }
.crumb a:hover { color: var(--gold); }

/* ===== SECTION ===== */
section { padding: 60px 0; position: relative; z-index: 1; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.section-head h2 { color: var(--white); margin-bottom: 14px; }
.section-head p { color: var(--silver); font-size: 1.02rem; }
.section-soft { background: rgba(255, 255, 255, 0.015); }

.eyebrow {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(229, 169, 60, 0.12);
  border: 1px solid rgba(229, 169, 60, 0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

/* ===== GLASS CARDS ===== */
.value-card, .form-card, .panel, .founder-card, .policy-content {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--silver);
  transition: transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow .4s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.value-card::before, .form-card::before, .panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,126,240,0.05) 0%, transparent 60%);
  pointer-events: none;
  border-radius: inherit;
  opacity: 0; transition: opacity .4s;
}
.value-card:hover::before, .panel:hover::before { opacity: 1; }
.value-card:hover, .panel:hover {
  transform: translateY(-8px);
  border-color: rgba(61, 126, 240, 0.4);
  box-shadow: var(--shadow-md), var(--glow-blue);
}
.value-card h3, .panel h3, .form-card h3, .founder-card h3 { color: var(--white); margin-bottom: 10px; }
.value-card p, .panel p { color: var(--silver); font-size: 0.93rem; line-height: 1.6; }

.vc-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-flex;
  width: 56px; height: 56px;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(61,126,240,0.15), rgba(229,169,60,0.08));
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  animation: floatIcon 5s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

/* "Built on tools you trust" band */
.trust-band {
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
}
.trust-band .label {
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
.trust-row {
  display: flex; gap: 36px; justify-content: center; flex-wrap: wrap;
  color: var(--silver);
  font-weight: 600;
  font-size: 0.95rem;
}
.trust-row span { display: flex; align-items: center; gap: 6px; opacity: 0.85; }

/* ===== STATS BAND ===== */
.stats-band {
  background:
    linear-gradient(135deg, rgba(10, 20, 40, 0.6), rgba(15, 35, 71, 0.6)),
    radial-gradient(circle at 30% 50%, rgba(61, 126, 240, 0.2), transparent 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-box .big {
  font-family: 'Sora';
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(229, 169, 60, 0.5);
  display: block;
}
.stat-box .cap {
  font-size: 0.85rem;
  color: var(--silver);
  letter-spacing: 0.06em;
}

/* ===== SPLIT ===== */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
}
.split-text h2 { margin-bottom: 14px; }
.split-text p { color: var(--silver); margin-bottom: 14px; line-height: 1.7; }

.split-visual {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}
.mock-row {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 18px; margin: 10px 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all .3s;
}
.mock-row:hover {
  background: rgba(61, 126, 240, 0.08);
  border-color: rgba(61, 126, 240, 0.3);
  transform: translateX(6px);
}
.mock-row .mi {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(61,126,240,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.mock-row .mt b { display: block; color: var(--white); font-weight: 700; font-size: 0.96rem; }
.mock-row .mt span { color: var(--slate); font-size: 0.82rem; }

/* ===== CTA BAND ===== */
.cta-band {
  background:
    linear-gradient(135deg, rgba(61, 126, 240, 0.20), rgba(229, 169, 60, 0.15)),
    rgba(10, 20, 40, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 60px 40px;
  text-align: center;
  margin: 50px 0;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 163, 0.15), transparent 70%);
  border-radius: 50%;
  top: -150px; right: -150px;
  filter: blur(40px);
  animation: orbFloat1 12s ease-in-out infinite;
}
.cta-band h2, .cta-band p, .cta-band .btn { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: var(--silver); margin-bottom: 22px; font-size: 1.02rem; }

/* ===== FOUNDER ===== */
.founder-card {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(229, 169, 60, 0.10), rgba(61, 126, 240, 0.06));
  border: 1px solid rgba(229, 169, 60, 0.3);
}
.founder-avatar {
  width: 92px; height: 92px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--neon-orange));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora';
  font-weight: 800;
  font-size: 1.8rem;
  color: #2a1c00;
  box-shadow: var(--glow-gold);
}
.founder-card .role {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

/* ===== FORM ===== */
.form-card { padding: 34px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.85rem;
  color: var(--silver);
  margin-bottom: 8px;
  font-weight: 600;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all .25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(61, 126, 240, 0.18);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select option { background: var(--bg-1); color: var(--white); }

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.7), rgba(5, 10, 24, 0.95));
  border-top: 1px solid var(--line);
  padding: 70px 0 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 44px;
  margin-bottom: 36px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
.footer-brand p { color: var(--silver); font-size: 0.92rem; margin-top: 16px; line-height: 1.7; }
.footer-col h4 {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: var(--silver);
  font-size: 0.92rem;
  padding: 5px 0;
  transition: all .2s;
}
.footer-col a:hover { color: var(--gold); transform: translateX(4px); }

.fc-row {
  display: flex; gap: 10px; align-items: center;
  padding: 5px 0; font-size: 0.92rem; color: var(--silver);
}
.fc-row .ic { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 0.88rem;
  color: var(--slate);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all .3s;
  font-size: 1.05rem;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #fff !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  z-index: 99;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50%      { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }
.reveal.d5 { transition-delay: .5s; }

/* ===== PROJECT CARDS ===== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}
.project-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(61, 126, 240, 0.5);
  box-shadow: var(--shadow-lg), var(--glow-blue);
}
.pc-visual {
  height: 160px;
  background: linear-gradient(135deg, rgba(61,126,240,0.18), rgba(229,169,60,0.10));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.pc-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.pc-icon-box {
  width: 88px; height: 88px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(61,126,240,0.4);
  position: relative;
  z-index: 1;
}
.pc-icon-box.gold { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #2a1c00; box-shadow: 0 12px 30px rgba(229,169,60,0.4); }
.pc-icon-box.green { background: linear-gradient(135deg, var(--neon-green), #00b873); color: #002a16; box-shadow: 0 12px 30px rgba(0,255,163,0.35); }
.pc-icon-box.purple { background: linear-gradient(135deg, var(--purple), #7c3aed); color: #fff; box-shadow: 0 12px 30px rgba(167,139,250,0.4); }
.pc-icon-box.orange { background: linear-gradient(135deg, var(--neon-orange), #ea580c); color: #fff; box-shadow: 0 12px 30px rgba(255,154,60,0.4); }
.pc-icon-box.cyan { background: linear-gradient(135deg, #06b6d4, #0e7490); color: #fff; box-shadow: 0 12px 30px rgba(6,182,212,0.4); }

.pc-body {
  padding: 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pc-body h3 { color: var(--white); margin-bottom: 8px; }
.pc-body p { color: var(--silver); font-size: 0.9rem; line-height: 1.6; margin-bottom: 14px; flex: 1; }
.pc-tag {
  display: inline-block;
  background: rgba(229, 169, 60, 0.15);
  color: var(--gold);
  border: 1px solid rgba(229, 169, 60, 0.3);
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 12px;
}
.pc-features { list-style: none; padding: 0; font-size: 0.86rem; margin: 8px 0 18px; }
.pc-features li { padding: 4px 0; color: var(--silver); }
.pc-features li::before { content: "✓ "; color: var(--neon-green); font-weight: 700; margin-right: 4px; }

.pc-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.pc-actions .btn { flex: 1; padding: 10px 16px; font-size: 0.85rem; min-width: 130px; }

/* ===== DEMO PAGE KPI/PANEL ===== */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.kpi {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 20px 22px;
  backdrop-filter: blur(14px);
  transition: all .3s;
}
.kpi:hover {
  transform: translateY(-4px);
  border-color: var(--blue-light);
  box-shadow: var(--glow-blue);
}
.kpi-label { font-size: 0.72rem; color: var(--silver); text-transform: uppercase; letter-spacing: .5px; font-weight: 700; margin-bottom: 6px; }
.kpi-value { font-size: 2rem; font-weight: 800; color: var(--white); font-family: 'Sora'; }
.kpi-sub { font-size: 0.78rem; color: var(--slate); margin-top: 4px; }
.kpi.green .kpi-value { color: var(--neon-green); }
.kpi.orange .kpi-value { color: var(--neon-orange); }
.kpi.red .kpi-value { color: #ff6b6b; }
.kpi.blue .kpi-value { color: var(--blue-light); }
.kpi.gold .kpi-value { color: var(--gold); }

.panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 22px;
  backdrop-filter: blur(14px);
}

/* ===== TABLES ===== */
table.demo-table, table.lb-table { width:100%; border-collapse: collapse; color: var(--silver); }
table.demo-table th, table.lb-table th {
  text-align: left;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  color: var(--gold);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-weight: 700;
  border-bottom: 1px solid var(--line-strong);
}
table.demo-table td, table.lb-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--silver);
}
table.demo-table tr:hover td, table.lb-table tr:hover td { background: rgba(61, 126, 240, 0.06); }

.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; }
.b-open  { background: rgba(61, 126, 240, 0.2); color: var(--blue-light); }
.b-won   { background: rgba(0, 255, 163, 0.15); color: var(--neon-green); }
.b-lost  { background: rgba(255, 107, 107, 0.18); color: #ff8a8a; }
.b-hold  { background: rgba(229, 169, 60, 0.2); color: var(--gold); }
.b-im    { background: rgba(229, 169, 60, 0.2); color: var(--gold); }
.b-mn    { background: rgba(95, 220, 255, 0.15); color: #5fdcff; }
.b-gg    { background: rgba(255, 107, 107, 0.15); color: #ff8a8a; }
.b-ab    { background: rgba(255, 154, 60, 0.18); color: var(--neon-orange); }
.b-jd    { background: rgba(167, 139, 250, 0.18); color: var(--purple); }
.b-wa    { background: rgba(0, 255, 163, 0.15); color: var(--neon-green); }
.b-rf    { background: rgba(120, 130, 255, 0.18); color: #a4b0ff; }

/* ===== POLICY (privacy/terms) ===== */
.policy-content { padding: 44px 48px; line-height: 1.85; }
.policy-content h2 { color: var(--gold); font-size: 1.25rem; margin: 28px 0 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.policy-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.policy-content strong { color: var(--white); }
.policy-content a { color: var(--gold); font-weight: 600; }
.policy-content ul { margin: 12px 0 18px 26px; color: var(--silver); }
.policy-content li { margin-bottom: 7px; }
.last-updated {
  background: rgba(229, 169, 60, 0.08);
  border: 1px solid rgba(229, 169, 60, 0.2);
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--gold);
  margin-bottom: 26px;
  display: flex; gap: 8px; align-items: center;
}

/* ===== AUTH ===== */
.auth-section { padding: 60px 0; }
.auth-card { max-width: 580px; margin: 0 auto; }
.auth-divider {
  text-align: center;
  margin: 36px 0 28px;
  position: relative;
  color: var(--slate);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.auth-divider::before, .auth-divider::after {
  content: ""; position: absolute;
  top: 50%; width: 35%; height: 1px;
  background: var(--line-strong);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

/* ===== ADD-FORM (demo-erp) ===== */
.add-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.add-form input, .add-form select {
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line-strong);
  color: var(--white);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.88rem;
}
.add-form input:focus, .add-form select:focus { border-color: var(--blue-light); outline: none; }
.add-form select option { background: var(--bg-1); }

.demo-bar {
  background: linear-gradient(90deg, rgba(229, 169, 60, 0.12), transparent);
  border: 1px solid rgba(229, 169, 60, 0.3);
  border-left: 4px solid var(--gold);
  padding: 14px 22px;
  border-radius: 10px;
  margin-bottom: 28px;
  color: var(--gold-light);
  font-size: 0.95rem;
  display: flex; gap: 12px; align-items: center;
  backdrop-filter: blur(8px);
}
.demo-bar b { color: var(--white); }

.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  margin-bottom: 22px;
  align-items: center;
  backdrop-filter: blur(14px);
}
.chip {
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--silver);
  transition: all .2s;
}
.chip.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.chip:hover { border-color: var(--blue-light); color: var(--white); }

.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  color: #2a1c00;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 4px 14px rgba(61, 126, 240, 0.3);
}
.progress-bar {
  width: 110px; height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-green), var(--blue-light));
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(0, 255, 163, 0.4);
}

/* ===== MOBILE ===== */
@media (max-width: 800px) {
  .nav-links {
    position: absolute; top: 76px; right: 16px;
    flex-direction: column;
    background: rgba(10, 20, 40, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    padding: 14px;
    display: none;
    gap: 8px;
    min-width: 220px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .burger { display: block; }
  .hero { padding: 50px 0; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .hero-stat .big { font-size: 1.7rem; }
  .hero-stat .big::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .policy-content { padding: 30px 24px; }
}

/* ===== CARMA Process Flow Steps ===== */
.carma-step {
  position: relative;
  background: linear-gradient(135deg, #FF9A3C 0%, #ea580c 100%);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 154, 60, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform .3s ease, box-shadow .3s ease;
}
.carma-step:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(255, 154, 60, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.carma-step .carma-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0.85;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.carma-step .carma-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.25;
  color: #fff;
}
.carma-step .carma-arrow {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #2a1c00;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  box-shadow: 0 4px 12px rgba(229, 169, 60, 0.4);
  z-index: 2;
}
@media (max-width: 720px) {
  .carma-step .carma-arrow { display: none; }
}
