/* ===================== VARIABLES ===================== */
:root {
  --bg-void:     #02020a;
  --bg-deep:     #05050f;
  --bg-card:     #080819;
  --bg-surface:  #0d0d22;
  --blue-dark:   #091650;
  --blue-vortex: #0d1f5c;
  --blue-mid:    #1a3a8f;
  --blue-glow:   #2255cc;
  --purple-500:  #7B2FBE;
  --purple-400:  #9b3fe0;
  --purple-300:  #b866f5;
  --purple-200:  #d4a0ff;
  --gold-600:    #8f5e08;
  --gold-500:    #C9941A;
  --gold-400:    #D4AF37;
  --gold-300:    #F0CC50;
  --gold-200:    #FFE680;
  --text-white:  #FFFFFF;
  --text-silver: #C8C8E8;
  --text-muted:  #666688;
  --border-blue: rgba(34,85,204,0.3);
  --border-gold: rgba(212,175,55,0.25);
  --border-purp: rgba(123,47,190,0.3);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background-color: var(--bg-void);
  color: var(--text-white);
  overflow-x: hidden;
}

/* ===================== STAR FIELD ===================== */
#stars-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .55; }
#gold-canvas  { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022; pointer-events: none; z-index: 0;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 25%, rgba(10,25,90,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 85% 85%, rgba(123,47,190,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 15% 8%,  rgba(34,85,204,0.07) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

/* ===================== SCROLL PROGRESS ===================== */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 2000;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--blue-glow), var(--purple-400), var(--gold-300));
  box-shadow: 0 0 8px rgba(212,175,55,.6);
  transition: width .08s linear;
  pointer-events: none;
}

/* ===================== TYPOGRAPHY ===================== */
h1 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: .06em; }
h2 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: .04em; line-height: 1.0; color: #FFFFFF; }
h3 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: .04em; color: #FFFFFF; }
h4 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: .04em; color: #FFFFFF; }
p  { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 20px; line-height: 1.7; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.2em; color: var(--gold-300);
  text-transform: uppercase; margin-bottom: .75rem;
  display: block;
}

/* ===================== GRADIENTS & COLORS ===================== */
.brand-gradient {
  background: linear-gradient(180deg, #7B2FBE 0%, #D4AF37 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.3));
}
.logo-gradient {
  background: linear-gradient(180deg, var(--purple-300) 0%, var(--gold-300) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.blue-gold-text {
  background: linear-gradient(135deg, var(--blue-glow) 0%, var(--purple-300) 50%, var(--gold-300) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gold-text {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .9rem 2.2rem; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  font-size: 18px; text-decoration: none;
  transition: all .3s ease; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-dark), var(--purple-500));
  color: #fff;
  box-shadow: 0 4px 24px rgba(10,20,80,.6), 0 0 20px rgba(123,47,190,.3);
  border: 1px solid rgba(34,85,204,.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 36px rgba(10,20,80,.8), 0 0 32px rgba(123,47,190,.5); }
.btn-secondary {
  background: transparent; color: var(--text-silver);
  border: 1px solid var(--border-blue);
}
.btn-secondary:hover { transform: translateY(-3px); border-color: var(--blue-glow); color: #fff; background: rgba(34,85,204,.1); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400), var(--gold-200));
  color: var(--bg-void);
  font-family: 'Bebas Neue', sans-serif; font-weight: 400;
  letter-spacing: .08em; font-size: 20px;
  padding: 1.1rem 2.8rem;
  box-shadow: 0 8px 40px rgba(212,175,55,.45);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 60px rgba(212,175,55,.65); filter: brightness(1.1); }
.btn-outline-gold {
  background: transparent; color: var(--gold-400);
  border: 1px solid rgba(212,175,55,.45);
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 14px;
}
.btn-outline-gold:hover { background: rgba(212,175,55,.08); transform: translateY(-2px); border-color: var(--gold-300); }

/* ===================== SCROLL ANIMATIONS ===================== */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===================== SECTION DIVIDER ===================== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,85,204,.2), rgba(212,175,55,.15), rgba(34,85,204,.2), transparent);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 1.25rem 0;
  transition: all .35s ease;
}
.navbar.scrolled {
  background: rgba(2,2,10,.92); backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(34,85,204,.2); padding: .875rem 0;
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.logo-mark-wrap {
  width: 42px; height: 42px; border-radius: 10px;
  background: #0d0020;
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 0 16px rgba(123,47,190,0.5);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark-text {
  font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 16px; letter-spacing: .05em;
  background: linear-gradient(180deg, #7B2FBE 0%, #D4AF37 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 16px; font-weight: 400; letter-spacing: .06em; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-silver); text-decoration: none;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 500;
  transition: color .2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold-400);
  transform: scaleX(0); transition: transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-silver); }
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }

.nav-tg-icon { display: flex; align-items: center; color: var(--text-muted); transition: color .2s; }
.nav-tg-icon:hover { color: var(--text-silver); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-silver); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(2,2,10,.97); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-blue);
  padding: 1.5rem; z-index: 999;
  flex-direction: column; gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text-silver); text-decoration: none; font-size: 19px; padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.04); }

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 7rem; overflow: hidden;
}
#hero-canvas { position: absolute; inset: 0; z-index: 1; }

.hero-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif; font-weight: 400;
  font-size: clamp(18rem, 38vw, 34rem);
  line-height: 1; letter-spacing: -.04em;
  background: linear-gradient(180deg, rgba(100,50,200,.04) 0%, rgba(212,175,55,.055) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  pointer-events: none; user-select: none; z-index: 1; white-space: nowrap;
}

.hero-deco { position: absolute; pointer-events: none; user-select: none; z-index: 2; opacity: .1; }
.hero-deco-compass { bottom: 6%; left: 4%; width: clamp(80px,10vw,140px); }
.hero-deco-book    { bottom: 6%; right: 4%; width: clamp(70px,8vw,120px); }
.hero-deco svg { width: 100%; height: 100%; }

.hero-content {
  position: relative; z-index: 3;
  text-align: center; max-width: 860px; padding: 0 1.5rem;
}

.hero-pre-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.2em; color: var(--text-silver);
  text-transform: uppercase; margin-bottom: 1.5rem;
  animation: fadeUp .8s ease forwards;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif; font-weight: 400;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.95; letter-spacing: .03em;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #7B2FBE 0%, #D4AF37 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.3));
  animation: fadeUp .8s .05s ease both;
}

.hero-tagline {
  font-family: 'Bebas Neue', sans-serif; font-weight: 400;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  letter-spacing: .05em;
  color: white; line-height: 1.1; margin-bottom: 1rem;
  animation: fadeUp .8s .15s ease both;
}

.hero-sub {
  font-size: 21px; color: var(--text-silver);
  max-width: 600px; margin: 0 auto;
  line-height: 1.6; font-weight: 400;
  animation: fadeUp .8s .25s ease both;
}

.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2.5rem;
  animation: fadeUp .8s .35s ease both;
}

.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem; z-index: 3;
}
.scroll-indicator span { font-size: 11px; color: var(--text-muted); letter-spacing: .12em; }
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: rotate(45deg); animation: bounce 2s ease infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(6px)} }
@keyframes fadeUp  { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse   { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }

/* ===================== STATS BAR ===================== */
.stats-bar {
  border-top: 1px solid rgba(34,85,204,.18);
  border-bottom: 1px solid rgba(34,85,204,.18);
  background: rgba(5,5,20,.82); backdrop-filter: blur(14px);
  padding: 1.75rem 0; position: relative; z-index: 3;
}
.stats-inner { display: flex; align-items: center; justify-content: space-around; }
.stat-item { text-align: center; flex: 1; }
.stat-value {
  font-family: 'Bebas Neue', sans-serif; font-size: 3.1rem; font-weight: 400; letter-spacing: .06em;
  background: linear-gradient(180deg, var(--purple-300) 0%, var(--gold-300) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.2;
}
.stat-label { font-size: 15px; color: var(--text-silver); margin-top: .25rem; letter-spacing: .06em; }
.stat-divider { width: 1px; height: 44px; background: linear-gradient(to bottom, transparent, rgba(212,175,55,.45), transparent); }

/* ===================== SECTION BASE ===================== */
section { padding: 7rem 0; position: relative; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(3.6rem, 7.2vw, 6.6rem); margin-bottom: 1rem; }
.section-header p { color: var(--text-silver); font-size: 20px; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ===================== OVERVIEW BLOCK ===================== */
#overview { padding: 5rem 0; }

.overview-block {
  border-radius: 20px;
  background: rgba(6,6,22,0.6);
  border: 1px solid rgba(184,102,245,0.25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset, 0 24px 60px rgba(0,0,0,0.45);
  padding: 4rem 3rem;
}
.overview-block-header { margin-bottom: 3rem; }
.overview-block-header h2 { font-size: clamp(3.1rem, 6vw, 5.4rem); max-width: 680px; line-height: 1.0; }
.overview-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.05);
}
.overview-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; overflow: hidden;
  background: rgba(8,8,28,0.75);
  border: 1px solid rgba(123,47,190,0.25);
  border-radius: 16px;
  padding: 2.5rem 1.75rem 2rem;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.overview-item::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,47,190,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.overview-item::after {
  content: '';
  position: absolute; bottom: -30px; left: -30px;
  width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.overview-item:nth-child(2)::before { background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 70%); }
.overview-item:nth-child(3)::before { background: radial-gradient(circle, rgba(34,85,204,0.22) 0%, transparent 70%); }
.overview-item:nth-child(4)::before { background: radial-gradient(circle, rgba(34,85,204,0.2) 0%, transparent 70%); }
.overview-item:nth-child(5)::before { background: radial-gradient(circle, rgba(184,102,245,0.2) 0%, transparent 70%); }
.overview-item:nth-child(6)::before { background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%); }
.overview-item:hover {
  border-color: rgba(123,47,190,0.55);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 24px rgba(123,47,190,0.15);
}
.overview-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(123,47,190,0.2); border: 1px solid rgba(184,102,245,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-300);
  transition: all .3s ease;
  position: relative; z-index: 1;
}
.overview-item:hover .overview-icon-wrap {
  background: rgba(123,47,190,0.35);
  box-shadow: 0 0 20px rgba(123,47,190,0.4);
  color: var(--gold-400);
}
.overview-icon-letter { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 18px; color: var(--gold-400); }
.overview-name { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 25px; letter-spacing: .05em; color: white; margin-top: .85rem; position: relative; z-index: 1; }
.overview-desc { font-size: 17px; color: var(--text-silver); margin-top: .4rem; line-height: 1.5; max-width: 28ch; position: relative; z-index: 1; }

/* ===================== FEATURE SECTIONS ===================== */
.feature-section { padding: 7rem 0; position: relative; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.feature-grid.reverse .feature-text { order: 2; }
.feature-grid.reverse .feature-mock { order: 1; }

.feature-text .section-label { margin-bottom: 1rem; }
.feature-text h2 { font-size: clamp(3.6rem, 6.6vw, 6rem); margin-bottom: 0; }

/* Numbered list */
.numbered-list { list-style: none; margin-top: 2rem; }
.numbered-item {
  display: flex; gap: 1.5rem;
  padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.numbered-item:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.num-badge {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  color: var(--gold-300); letter-spacing: .12em;
  padding-top: .15rem; min-width: 28px; flex-shrink: 0;
}
.num-title { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 24px; letter-spacing: .05em; color: white; margin-bottom: .25rem; }
.num-desc  { font-size: 18px; color: var(--text-silver); line-height: 1.6; max-width: 36ch; }

/* ===================== MOCK UI ===================== */
.mock-ui {
  background: rgba(6,6,20,0.9);
  border: 1px solid rgba(34,85,204,0.2);
  border-radius: 16px; padding: 2rem;
}
.mock-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; letter-spacing: .2em; color: var(--text-silver);
  text-transform: uppercase; margin-bottom: .4rem; display: block;
  font-weight: 500;
}
.mock-value { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: .04em; }
.mock-value-xl { font-size: clamp(3.6rem, 7vw, 6rem); line-height: 1; }
.mock-value-lg { font-size: 1.75rem; line-height: 1.1; }
.mock-gold   { color: var(--gold-400); }
.mock-white  { color: #fff; }
.mock-silver { color: var(--text-silver); }
.mock-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,85,204,0.3), transparent);
  margin: 1.25rem 0;
}
.mock-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .75rem; }
.mock-tag {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: .12em; padding: .35rem .85rem; border-radius: 100px;
  border: 1px solid rgba(34,85,204,0.4); color: var(--text-silver); text-transform: uppercase;
}
.mock-tag-gold { border-color: rgba(212,175,55,0.4); color: var(--gold-400); }
.mock-tag-blue { border-color: rgba(34,85,204,0.5); color: var(--purple-200); }
.mock-market { margin-bottom: .75rem; }
.mock-market .mock-label { margin-bottom: .3rem; }
.mock-market-name {
  font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 16px; letter-spacing: .04em; color: var(--text-silver);
}
.mock-entry { margin-bottom: .75rem; }
.mock-entry .mock-label { margin-bottom: .3rem; }

/* ===================== COPY DIAGRAM ===================== */
.copy-diagram {
  background: rgba(6,6,20,0.9);
  border: 1px solid rgba(34,85,204,0.2);
  border-radius: 16px; padding: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.copy-diagram-ring {
  width: 160px; height: 160px; border-radius: 50%;
  border: 1px solid var(--border-purp);
  background: rgba(123,47,190,0.06);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.copy-diagram-ring::before {
  content: ''; position: absolute; inset: 12px; border-radius: 50%;
  border: 1px dashed rgba(123,47,190,0.3);
}
.copy-diagram-center { text-align: center; padding: .5rem; position: relative; z-index: 1; }
.copy-diagram-center-title { font-family: 'Bebas Neue', sans-serif; font-size: 17px; font-weight: 400; letter-spacing: .05em; color: white; }
.copy-diagram-center-sub { font-size: 12px; color: var(--text-silver); margin-top: .2rem; line-height: 1.4; }
.copy-diagram-tags { display: flex; gap: .5rem; }
.copy-diagram-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; width: 100%; }
.copy-diagram-block {
  background: rgba(34,85,204,0.07); border: 1px solid rgba(34,85,204,0.18);
  border-radius: 8px; padding: .75rem 1rem;
}
.copy-diagram-block-label {
  font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: .18em;
  color: var(--gold-400); text-transform: uppercase; margin-bottom: .25rem; font-weight: 500;
}
.copy-diagram-block-desc { font-size: 14px; color: var(--text-silver); line-height: 1.4; }

/* ===================== LIFECYCLE ===================== */
#lifecycle { padding: 7rem 0; }
.lifecycle-header { text-align: center; margin-bottom: 5rem; }
.lifecycle-header h2 { font-size: clamp(3.6rem, 7.2vw, 6.6rem); margin-bottom: 1rem; }
.lifecycle-header p { font-size: 20px; color: var(--text-silver); max-width: 520px; margin: 0 auto; line-height: 1.7; }

.lifecycle-track {
  position: relative; display: flex;
  justify-content: space-between; gap: 1rem;
}
.lifecycle-track::before {
  content: ''; position: absolute;
  top: 11px; left: 11px; right: 11px; height: 1px;
  background: linear-gradient(90deg, var(--gold-500), var(--blue-glow), var(--gold-500));
  opacity: .35;
}
.lifecycle-step { flex: 1; }
.lifecycle-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg-deep); border: 2px solid rgba(34,85,204,0.4);
  margin-bottom: 1rem; position: relative; z-index: 1;
}
.lifecycle-dot.active {
  border-color: var(--gold-400);
  box-shadow: 0 0 12px rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.1);
}
.lifecycle-num { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; color: var(--gold-300); letter-spacing: .14em; margin-bottom: .3rem; }
.lifecycle-name { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 23px; letter-spacing: .05em; color: white; margin-bottom: .4rem; }
.lifecycle-desc { font-size: 16px; color: var(--text-silver); line-height: 1.5; max-width: 22ch; }

/* ===================== SECURITY ===================== */
#security { padding: 7rem 0; }
.security-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin-top: 4rem; max-width: 860px; margin-left: auto; margin-right: auto; }
.sec-card {
  background: var(--bg-card); border: 1px solid rgba(212,175,55,0.1);
  border-radius: 12px; padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.sec-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-200));
}
.sec-card .card-shimmer { position: absolute; inset: 0; z-index: 1; overflow: hidden; border-radius: 12px; pointer-events: none; }
.sec-card .card-shimmer::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.035) 50%, transparent 60%);
  transition: left .5s ease;
}
.sec-card:hover .card-shimmer::after { left: 160%; }
.sec-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,.5), 0 0 20px rgba(212,175,55,.08); }
.sec-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: all .3s ease;
  color: var(--gold-400);
}
.sec-card:hover .sec-icon { background: rgba(212,175,55,.14); box-shadow: 0 0 14px rgba(212,175,55,.25); color: var(--gold-300); }
.sec-card h3 { font-size: 32px; margin-bottom: .75rem; }
.sec-card p  { font-size: 18px; color: var(--text-silver); line-height: 1.7; }

/* ===================== CTA + MINI FOOTER ===================== */
#cta {
  padding: 7rem 0 0;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border-purp);
}
.cta-glow-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(123,47,190,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta-main {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 4rem; padding-bottom: 5rem; position: relative; z-index: 1;
}
.cta-text { max-width: 540px; }
.cta-text .section-label { margin-bottom: 1.25rem; }
.cta-text h2 { font-size: clamp(3.6rem,7.2vw,6.6rem); margin-bottom: 1.25rem; text-align: left; }
.cta-text > p { font-size: 20px; color: var(--text-silver); line-height: 1.7; max-width: 480px; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; flex-shrink: 0; }
.cta-referral-note { font-size: 13px; color: var(--text-muted); text-align: right; margin-top: .25rem; }
.cta-referral-note strong { color: var(--gold-400); font-weight: 500; }

.cta-mini-footer { border-top: 1px solid var(--border-purp); padding: 2.5rem 0 3rem; position: relative; z-index: 1; }
.cta-mini-footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; gap: 2rem; }
.cta-mini-footer-brand { display: flex; align-items: center; gap: .75rem; }
.cta-mini-footer-brand-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 15px;
  background: linear-gradient(180deg, #7B2FBE 0%, #D4AF37 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-mini-footer-brand-desc { font-size: 16px; color: var(--text-silver); margin-top: .2rem; }
.cta-mini-footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: flex-end; }
.cta-mini-footer-nav a { font-size: 17px; color: var(--text-silver); text-decoration: none; transition: color .2s; }
.cta-mini-footer-nav a:hover { color: var(--text-silver); }
.cta-mini-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.04);
  gap: 1rem; flex-wrap: wrap;
}
.cta-mini-footer-bottom p { font-size: 15px; color: var(--text-silver); }
.footer-tagline { letter-spacing: .15em; text-transform: uppercase; }
.footer-socials { display: flex; align-items: center; gap: 1rem; }
.footer-socials a { color: var(--text-muted); transition: color .2s; display: flex; }
.footer-socials a:hover { color: var(--gold-400); }

/* ===================== BACK TO TOP ===================== */
#back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(8,8,25,.9); backdrop-filter: blur(10px);
  border: 1px solid var(--border-blue); color: var(--gold-400); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  opacity: 0; transform: translateY(12px);
  transition: all .3s ease; box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
#back-top.visible { opacity: 1; transform: translateY(0); }
#back-top:hover   { background: rgba(34,85,204,.3); border-color: var(--blue-glow); transform: translateY(-3px); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: 1fr; gap: 3rem; }
  .feature-grid.reverse .feature-text { order: 1; }
  .feature-grid.reverse .feature-mock { order: 2; }
  .overview-grid { grid-template-columns: repeat(2,1fr); }
  .lifecycle-track { flex-direction: column; gap: 2rem; }
  .lifecycle-track::before { display: none; }
  .lifecycle-step { display: flex; gap: 1.5rem; align-items: flex-start; }
  .lifecycle-dot { margin-bottom: 0; flex-shrink: 0; margin-top: 0; }
  .cta-main { flex-direction: column; align-items: flex-start; gap: 2.5rem; }
  .cta-actions { align-items: flex-start; }
  .hero-deco { opacity: .07; }
}
@media (max-width: 768px) {
  section { padding: 5rem 0; }
  #overview { padding: 3.5rem 0; }
  .overview-block { padding: 2.5rem 1.5rem; }
  .overview-grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .security-grid-2 { grid-template-columns: 1fr; }
  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stat-divider { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-watermark { font-size: clamp(10rem,40vw,18rem); }
  .hero-deco { display: none; }
  .cta-mini-footer-top { flex-direction: column; }
  .cta-mini-footer-nav { justify-content: flex-start; }
  .cta-mini-footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  section { padding: 4rem 0; }
  .overview-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-inner { grid-template-columns: 1fr; }
  .copy-diagram-blocks { grid-template-columns: 1fr; }
  .cta-main { padding-bottom: 3rem; }
}
