
/* ══════════════════════════════════════════
   ROOT & RESET
══════════════════════════════════════════ */
:root {
  --navy:      #0D1B2A;
  --navy-mid:  #162336;
  --navy-lt:   #1E3048;
  --gold:      #C9A84C;
  --gold-lt:   #E8D5A3;
  --gold-dim:  rgba(201,168,76,0.15);
  --cream:     #F7F3EC;
  --cream-dim: #EDE8DF;
  --slate:     #4A6077;
  --slate-lt:  #7A94A8;
  --white:     #FFFFFF;
}

/* removed global reset */

html { scroll-behavior: smooth; }

body.landing-theme {
  background: var(--navy);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.4s ease, width 0.3s, height 0.3s, opacity 0.3s;
  transform: translate(-50%, -50%);
}
body.landing-theme:has(a:hover) .cursor-ring,
body.landing-theme:has(button:hover) .cursor-ring {
  width: 56px; height: 56px;
  opacity: 0.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ══════════════════════════════════════════
   NOISE TEXTURE OVERLAY
══════════════════════════════════════════ */
body.landing-theme::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(12px);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--white);
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--slate-lt);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

/* Radial glow behind logo */
.hero::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Decorative lines left & right */
.hero-line-left,
.hero-line-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.15), transparent);
}
.hero-line-left  { left: 60px; }
.hero-line-right { right: 60px; }

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
}

/* ── HERO LOGO MARK ── */
.hero-logomark {
  width: 140px; height: 140px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.4s forwards;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 700;
  letter-spacing: clamp(10px, 3vw, 28px);
  line-height: 1;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1.2s ease 0.6s forwards;
}
.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--slate-lt);
  letter-spacing: 3px;
  margin-top: 16px;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero-divider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 36px auto;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}

.hero-desc {
  max-width: 560px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--slate-lt);
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
}

.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 18px 48px;
  text-decoration: none;
  border: none;
  cursor: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}
.btn-primary:hover::after { opacity: 1; }

.btn-secondary {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 18px 48px;
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.4);
  cursor: none;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 1.8s forwards;
}
.scroll-indicator span {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--slate);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 32px 60px;
  display: flex;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 0 40px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(201,168,76,0.2);
}
.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-top: 8px;
  font-weight: 300;
}

/* ══════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════ */
section {
  padding: 120px 60px;
  position: relative;
}

.section-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--slate-lt);
  max-width: 560px;
}

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
.about {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

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

.about-logo-wrap {
  position: relative;
}

.about-logo-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1), transparent 70%);
  border-radius: 50%;
}

/* ══════════════════════════════════════════
   MODULES SECTION
══════════════════════════════════════════ */
.modules-section {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.08);
}

.modules-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}
.modules-header .section-label { justify-content: center; }
.modules-header .section-label::before { display: none; }
.modules-header .section-body { margin: 0 auto; text-align: center; }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.module-card {
  background: var(--navy);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: none;
}
.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.module-card:hover { background: var(--navy-lt); }
.module-card:hover::before { transform: scaleX(1); }

.module-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: 20px; right: 30px;
}

.module-icon {
  width: 52px; height: 52px;
  margin-bottom: 28px;
}

.module-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}

.module-subtitle {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.module-divider {
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin-bottom: 20px;
}

.module-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate-lt);
}

.module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.tag {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 5px 12px;
  font-weight: 400;
  transition: background 0.3s;
}
.module-card:hover .tag {
  background: rgba(201,168,76,0.08);
}

/* ══════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════ */
.process-section {
  background: var(--navy);
  max-width: 100%;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 80px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), rgba(201,168,76,0.3), rgba(201,168,76,0.3), transparent);
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-circle {
  width: 64px; height: 64px;
  border: 1px solid rgba(201,168,76,0.4);
  background: var(--navy);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}
.step:hover .step-circle {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

.step-num {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.step-title {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
}

.step-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate-lt);
}

/* ══════════════════════════════════════════
   FEATURES / KEUNGGULAN
══════════════════════════════════════════ */
.features-section {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.08);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.features-left .section-body { margin-bottom: 40px; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 50px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.feature-item:last-child { border-bottom: none; }

.feature-icon-wrap {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.feature-item:hover .feature-icon-wrap {
  background: rgba(201,168,76,0.08);
}

.feature-text h4 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate-lt);
}

/* Right side: report preview card */
.report-card {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 40px;
  position: relative;
}
.report-card::before, .report-card::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.4;
}
.report-card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.report-card::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.report-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.7;
}

.report-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.report-avatar {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}
.report-name {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}
.report-meta {
  font-size: 11px;
  color: var(--slate-lt);
  letter-spacing: 1px;
  margin-top: 3px;
}

.report-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.report-result-row:last-child { border-bottom: none; }

.result-key {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate-lt);
}

.result-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}
.result-val span { color: var(--gold); }

.bar-wrap {
  margin-top: 28px;
}
.bar-label-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.bar-label-row span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate-lt);
}
.bar-track {
  width: 100%; height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
  animation: barGrow 1.5s ease forwards;
  transform-origin: left;
}
@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ══════════════════════════════════════════
   TESTIMONIAL / QUOTE
══════════════════════════════════════════ */
.quote-section {
  background: var(--navy);
  text-align: center;
  padding: 100px 60px;
  border-top: 1px solid rgba(201,168,76,0.08);
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.12;
  line-height: 0.6;
  margin-bottom: 20px;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.quote-text em { color: var(--gold); font-style: normal; }

.quote-author {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--slate-lt);
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  text-align: center;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.05), transparent 70%);
  pointer-events: none;
}

.cta-section .section-label { justify-content: center; }
.cta-section .section-label::before { display: none; }

.cta-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  margin: 20px auto 16px;
  max-width: 700px;
  line-height: 1.2;
}
.cta-title span { color: var(--gold); }

.cta-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--slate-lt);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: #08111A;
  padding: 60px 60px 40px;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 8px;
  color: var(--white);
}
.footer-logo-text span { color: var(--gold); }

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--slate);
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  gap: 80px;
}
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--slate-lt);
  text-decoration: none;
  margin-bottom: 10px;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-lt); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 2px;
}
.footer-badge {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 6px 16px;
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   LOGO MARK SVG ANIMATIONS
══════════════════════════════════════════ */
.ring-spin {
  animation: rotateSlow 25s linear infinite;
  transform-origin: 60px 60px;
}
.ring-spin-rev {
  animation: rotateSlow 18s linear infinite reverse;
  transform-origin: 60px 60px;
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.pulse-dot {
  animation: pulseDot 3s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { r: 4; opacity: 1; }
  50% { r: 6; opacity: 0.7; }
}
