/* ═══════════════════════════════════════════════════════════
   NovaMind AI — Design System
   Palette: Indigo Ink × Gold × Lavender
   Fonts: Cormorant Garamond + Manrope
═══════════════════════════════════════════════════════════ */

:root {
  --indigo-deep:   #1B0A3C;
  --indigo-mid:    #2D1560;
  --indigo-soft:   #3D1E7C;
  --violet:        #7B68EE;
  --violet-light:  #A89CF7;
  --lavender:      #E8E0F0;
  --gold:          #C9A87C;
  --gold-light:    #E2C99A;
  --gold-dark:     #9A7A50;
  --cream:         #F5F0EB;
  --white:         #FFFFFF;
  --text-primary:  #F5F0EB;
  --text-muted:    #A89CF7;
  --text-dark:     #1B0A3C;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-glow-gold:   0 0 40px rgba(201,168,124,0.25);
  --shadow-glow-violet: 0 0 40px rgba(123,104,238,0.3);
  --shadow-card:        0 8px 40px rgba(0,0,0,0.4);
  --shadow-deep:        0 20px 80px rgba(0,0,0,0.6);

  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--indigo-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
em { font-style: italic; color: var(--gold); }
strong { font-weight: 700; color: var(--gold-light); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--indigo-deep); }
::-webkit-scrollbar-thumb { background: var(--indigo-soft); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--violet); }

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(27, 10, 60, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,124,0.12);
  transition: var(--transition);
}
.nav.scrolled {
  padding: 0.75rem 3rem;
  background: rgba(27, 10, 60, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo-svg { width: 36px; height: 36px; }
.nav-brand em { color: var(--gold); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.8;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { opacity: 1; color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--indigo-deep);
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,124,0.3);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,124,0.5);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ══════════════════════════════════════════════════════════
   COVER / HERO
══════════════════════════════════════════════════════════ */
.cover {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 20%, #3D1E7C 0%, #1B0A3C 50%, #0D0520 100%);
}
#neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.cover-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(27,10,60,0.8) 0%, transparent 70%);
  pointer-events: none;
}
.cover-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}
.cover-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,124,0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  background: rgba(201,168,124,0.08);
}
.cover-logo-wrap {
  margin: 0 auto 1.5rem;
  width: 100px;
  height: 100px;
  background: rgba(201,168,124,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,124,0.2);
  box-shadow: var(--shadow-glow-gold);
  animation: pulse-glow 3s ease-in-out infinite;
}
.cover-logo-svg { width: 64px; height: 64px; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(201,168,124,0.2); }
  50%       { box-shadow: 0 0 60px rgba(201,168,124,0.5), 0 0 100px rgba(123,104,238,0.2); }
}
.cover-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--cream);
}
.cover-title em { color: var(--gold); font-style: italic; }
.cover-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--violet-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.cover-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.5rem;
}
.cover-sub {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}
.cover-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}
.dot { color: var(--gold); opacity: 0.5; }
.cover-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  transition: var(--transition);
  animation: bounce-down 2s ease-in-out infinite;
}
.cover-scroll svg { width: 20px; height: 20px; }
.cover-scroll:hover { opacity: 1; }
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ══════════════════════════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════════════════════════ */
.page-section {
  padding: 8rem 2rem;
  position: relative;
}
.page-section:nth-child(even) {
  background: rgba(255,255,255,0.02);
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 3rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 1rem;
}
.section-intro {
  font-size: 1.1rem;
  color: var(--lavender);
  opacity: 0.8;
  max-width: 700px;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.sub-heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  margin: 3rem 0 1.5rem;
  letter-spacing: -0.01em;
}

/* ══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   ACKNOWLEDGEMENT
══════════════════════════════════════════════════════════ */
.ack-card {
  background: linear-gradient(135deg, rgba(61,30,124,0.3), rgba(27,10,60,0.5));
  border: 1px solid rgba(201,168,124,0.15);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}
.ack-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ack-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.15;
  margin-bottom: 1rem;
  font-style: italic;
}
.ack-text {
  font-size: 1.05rem;
  color: var(--lavender);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}
.ack-signature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,124,0.15);
  font-size: 0.9rem;
  color: var(--gold);
  font-style: italic;
}
.ack-date { color: var(--text-muted); font-style: normal; }

/* ══════════════════════════════════════════════════════════
   CERTIFICATE
══════════════════════════════════════════════════════════ */
.certificate {
  max-width: 780px;
  margin: 0 auto;
}
.cert-border-outer {
  background: linear-gradient(135deg, var(--gold-dark), var(--violet), var(--gold-dark));
  padding: 3px;
  border-radius: var(--radius-xl);
}
.cert-border-inner {
  background: linear-gradient(160deg, #1e0d42 0%, #150830 50%, #1e0d42 100%);
  border-radius: calc(var(--radius-xl) - 3px);
  padding: 3.5rem;
  position: relative;
  text-align: center;
}
.cert-corner {
  position: absolute;
  width: 40px; height: 40px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
}
.cert-corner--tl { top: 16px; left: 16px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.cert-corner--tr { top: 16px; right: 16px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.cert-corner--bl { bottom: 16px; left: 16px; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.cert-corner--br { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }
.cert-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.cert-logo { width: 48px; height: 48px; }
.cert-org {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.cert-heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.cert-body {
  font-size: 0.95rem;
  color: var(--lavender);
  opacity: 0.8;
  margin-bottom: 0.5rem;
}
.cert-project-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream);
  margin: 1rem 0;
}
.cert-sigs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  gap: 1rem;
}
.cert-sig { flex: 1; text-align: center; }
.cert-sig-line {
  width: 80%;
  height: 1px;
  background: rgba(201,168,124,0.4);
  margin: 0 auto 0.5rem;
}
.cert-sig p { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.cert-seal {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,124,0.15), rgba(201,168,124,0.05));
  border: 2px solid rgba(201,168,124,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cert-seal-ring {
  width: 74px; height: 74px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,124,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.45rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  padding: 0.5rem;
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════
   INDEX
══════════════════════════════════════════════════════════ */
.index-grid { display: flex; flex-direction: column; gap: 0; }
.index-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(201,168,124,0.08);
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}
.index-item:hover {
  background: rgba(201,168,124,0.06);
  padding-left: 2rem;
}
.index-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.6;
  min-width: 2.5rem;
}
.index-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  flex: 1;
}
.index-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201,168,124,0.2);
  margin: 0 1rem;
}
.index-page {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════
   INTRODUCTION
══════════════════════════════════════════════════════════ */
.intro-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.intro-text p {
  font-size: 1rem;
  color: var(--lavender);
  opacity: 0.85;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.intro-lead {
  font-family: var(--font-display);
  font-size: 1.4rem !important;
  font-style: italic;
  color: var(--cream) !important;
  opacity: 1 !important;
  line-height: 1.5 !important;
  margin-bottom: 1.5rem !important;
}
.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: linear-gradient(135deg, rgba(61,30,124,0.4), rgba(27,10,60,0.6));
  border: 1px solid rgba(201,168,124,0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: var(--transition);
}
.stat-card:hover {
  border-color: rgba(201,168,124,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-gold);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   COMPANY
══════════════════════════════════════════════════════════ */
.company-hero {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(61,30,124,0.2), rgba(27,10,60,0.4));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,124,0.1);
}
.company-logo-large {
  width: 100px; height: 100px;
  background: rgba(201,168,124,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,124,0.2);
  flex-shrink: 0;
}
.company-logo-large svg { width: 70px; height: 70px; }
.company-headline h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--cream);
}
.company-tagline-sm {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.25rem;
}
.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.company-card {
  background: linear-gradient(160deg, rgba(61,30,124,0.3), rgba(27,10,60,0.5));
  border: 1px solid rgba(123,104,238,0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}
.company-card:hover {
  border-color: rgba(201,168,124,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-violet);
}
.company-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.company-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.company-card p { font-size: 0.9rem; color: var(--lavender); opacity: 0.8; line-height: 1.7; }
.company-details {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,124,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.detail-row {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(201,168,124,0.06);
  transition: var(--transition);
}
.detail-row:last-child { border-bottom: none; }
.detail-row:hover { background: rgba(201,168,124,0.04); }
.detail-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 200px;
}
.detail-value { font-size: 0.95rem; color: var(--cream); }

/* ══════════════════════════════════════════════════════════
   PRODUCT
══════════════════════════════════════════════════════════ */
.product-showcase {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.phone-frame {
  background: linear-gradient(160deg, #2a1560, #1B0A3C);
  border-radius: 36px;
  padding: 12px;
  border: 1px solid rgba(201,168,124,0.2);
  box-shadow: var(--shadow-deep), var(--shadow-glow-violet);
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 6px;
  background: rgba(201,168,124,0.3);
  border-radius: 3px;
}
.phone-screen {
  background: linear-gradient(160deg, #0f0520, #1a0840);
  border-radius: 28px;
  padding: 2rem 1.25rem 1.5rem;
  min-height: 480px;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.phone-brand { color: var(--gold); font-weight: 700; }
.phone-greeting {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.phone-mood {
  background: rgba(123,104,238,0.15);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.phone-mood p { font-size: 0.78rem; color: var(--lavender); margin-bottom: 0.75rem; }
.mood-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
}
.mood-active {
  background: rgba(201,168,124,0.2);
  border-radius: 8px;
  padding: 0 4px;
  border: 1px solid rgba(201,168,124,0.4);
}
.phone-insight {
  background: rgba(201,168,124,0.08);
  border: 1px solid rgba(201,168,124,0.2);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.insight-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.phone-insight p { font-size: 0.78rem; color: var(--lavender); line-height: 1.5; }
.phone-actions { display: flex; gap: 0.5rem; }
.phone-btn {
  flex: 1;
  text-align: center;
  padding: 0.6rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--indigo-deep);
  cursor: pointer;
}
.phone-btn--outline {
  background: transparent;
  border: 1px solid rgba(201,168,124,0.3);
  color: var(--gold);
}
.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(123,104,238,0.1);
  margin-bottom: 1rem;
  transition: var(--transition);
  background: rgba(255,255,255,0.01);
}
.feature-item:hover {
  border-color: rgba(201,168,124,0.3);
  background: rgba(201,168,124,0.04);
  transform: translateX(6px);
}
.feature-icon { font-size: 1.8rem; flex-shrink: 0; }
.feature-text h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.feature-text p { font-size: 0.88rem; color: var(--lavender); opacity: 0.8; line-height: 1.6; }

/* Pricing */
.pricing-section { margin-top: 2rem; }
.pricing-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 2rem;
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  background: linear-gradient(160deg, rgba(61,30,124,0.25), rgba(27,10,60,0.5));
  border: 1px solid rgba(123,104,238,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201,168,124,0.12), rgba(61,30,124,0.4));
  box-shadow: var(--shadow-glow-gold);
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--indigo-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.pricing-price span { font-size: 1rem; color: var(--text-muted); }
.pricing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-features li {
  font-size: 0.85rem;
  color: var(--lavender);
  opacity: 0.8;
}
.pricing-features li:has(✗) { opacity: 0.4; }

/* ══════════════════════════════════════════════════════════
   FUNDING
══════════════════════════════════════════════════════════ */
.funding-hero {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(201,168,124,0.1), rgba(61,30,124,0.3));
  border: 1px solid rgba(201,168,124,0.2);
  border-radius: var(--radius-xl);
  margin-bottom: 3rem;
  box-shadow: var(--shadow-glow-gold);
}
.funding-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.funding-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.funding-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.funds-grid { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
.fund-bar-item {}
.fund-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--lavender);
  margin-bottom: 0.4rem;
}
.fund-bar-label span:last-child { color: var(--gold); font-weight: 600; }
.fund-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.fund-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.fund-bar-fill.animated { width: var(--w); }

/* Funding Methods */
.funding-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.funding-method {
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
}
.funding-method:hover { transform: translateY(-4px); }
.funding-method--chosen {
  background: linear-gradient(160deg, rgba(201,168,124,0.12), rgba(61,30,124,0.4));
  border-color: rgba(201,168,124,0.35);
  box-shadow: var(--shadow-glow-gold);
}
.funding-method--secondary {
  background: linear-gradient(160deg, rgba(123,104,238,0.12), rgba(27,10,60,0.5));
  border-color: rgba(123,104,238,0.3);
}
.funding-method--future {
  background: linear-gradient(160deg, rgba(61,30,124,0.2), rgba(27,10,60,0.5));
  border-color: rgba(123,104,238,0.15);
}
.funding-method--avoided {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.06);
  opacity: 0.7;
}
.method-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  background: rgba(201,168,124,0.2);
  color: var(--gold);
  border: 1px solid rgba(201,168,124,0.3);
}
.method-badge--sec { background: rgba(123,104,238,0.2); color: var(--violet-light); border-color: rgba(123,104,238,0.3); }
.method-badge--fut { background: rgba(123,104,238,0.1); color: var(--text-muted); border-color: rgba(123,104,238,0.2); }
.method-badge--no  { background: rgba(255,255,255,0.05); color: var(--text-muted); border-color: rgba(255,255,255,0.1); }
.method-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.funding-method h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.method-amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.funding-method p { font-size: 0.85rem; color: var(--lavender); opacity: 0.8; line-height: 1.7; margin-bottom: 1rem; }
.method-pros { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pro, .con {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-weight: 600;
}
.pro { background: rgba(100,200,100,0.1); color: #7dd87d; border: 1px solid rgba(100,200,100,0.2); }
.con { background: rgba(200,100,100,0.1); color: #e08080; border: 1px solid rgba(200,100,100,0.2); }

/* Projections */
.projections { margin-top: 1rem; }
.proj-table {
  border: 1px solid rgba(201,168,124,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.proj-header, .proj-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr 1.5fr;
  padding: 1rem 1.5rem;
}
.proj-header {
  background: rgba(201,168,124,0.08);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.proj-row {
  border-top: 1px solid rgba(201,168,124,0.06);
  font-size: 0.9rem;
  color: var(--lavender);
  transition: var(--transition);
}
.proj-row:hover { background: rgba(201,168,124,0.04); }
.proj-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
}
.proj-status--burn   { background: rgba(200,100,100,0.15); color: #e08080; }
.proj-status--growth { background: rgba(123,104,238,0.2); color: var(--violet-light); }
.proj-status--profit { background: rgba(100,200,100,0.15); color: #7dd87d; }

/* ══════════════════════════════════════════════════════════
   CONCLUSION
══════════════════════════════════════════════════════════ */
.conclusion-content {
  max-width: 800px;
}
.conclusion-lead {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.conclusion-content p {
  font-size: 1rem;
  color: var(--lavender);
  opacity: 0.85;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.conclusion-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--indigo-deep);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,124,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,124,0.5);
}
.btn-secondary {
  display: inline-block;
  border: 1px solid rgba(201,168,124,0.4);
  color: var(--gold);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(201,168,124,0.08);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════════════
   BIBLIOGRAPHY
══════════════════════════════════════════════════════════ */
.bib-list { display: flex; flex-direction: column; gap: 1.25rem; }
.bib-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,124,0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.bib-item:hover {
  border-color: rgba(201,168,124,0.2);
  background: rgba(201,168,124,0.03);
}
.bib-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.7;
  min-width: 2rem;
  flex-shrink: 0;
}
.bib-item p {
  font-size: 0.88rem;
  color: var(--lavender);
  opacity: 0.8;
  line-height: 1.7;
}
.bib-item em { color: var(--cream); font-style: italic; }

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.contact-card {
  background: linear-gradient(160deg, rgba(61,30,124,0.3), rgba(27,10,60,0.5));
  border: 1px solid rgba(123,104,238,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(201,168,124,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-gold);
}
.contact-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.contact-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(201,168,124,0.1);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
}
.footer-logo em { color: var(--gold); }
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-disclaimer { font-size: 0.75rem; color: var(--text-muted); opacity: 0.5; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .intro-layout { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: repeat(2, 1fr); }
  .company-grid { grid-template-columns: 1fr; }
  .product-showcase { grid-template-columns: 1fr; }
  .phone-frame { max-width: 280px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .funding-methods { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cert-sigs { flex-direction: column; align-items: center; gap: 1.5rem; }
}
@media (max-width: 600px) {
  .page-section { padding: 5rem 1.25rem; }
  .cover-title { font-size: 3rem; }
  .section-title { font-size: 2.2rem; }
  .ack-card { padding: 2rem; }
  .cert-border-inner { padding: 2rem; }
  .intro-stats { grid-template-columns: 1fr; }
  .proj-header, .proj-row { grid-template-columns: 1fr 1fr 1fr; }
  .proj-header span:nth-child(2),
  .proj-row span:nth-child(2) { display: none; }
  .ack-signature { flex-direction: column; gap: 0.5rem; }
}