:root {
  --bg-0: #000000;
  --bg-1: #040808;
  --bg-2: #081010;
  --bg-3: #0c1616;
  --surface: #0a1414;
  --surface-2: #111c1c;
  --border: rgba(0, 255, 252, 0.12);
  --border-strong: rgba(0, 255, 252, 0.28);
  --teal: #00FFFC;
  --teal-bright: #7FFFFE;
  --teal-soft: #99FFFE;
  --teal-deep: #00B8B5;
  --teal-glow: rgba(0, 255, 252, 0.55);
  --teal-halo: rgba(0, 255, 252, 0.18);
  --teal-wash: rgba(0, 255, 252, 0.06);
  --text: #e8f5f0;
  --text-dim: #a8b8b4;
  --text-muted: #6a7a76;
  --text-faint: #4a5a56;
  --warn: #ffb347;
  --danger: #ff6b6b;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-w: 1240px;
  --radius: 14px;
  --radius-lg: 22px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-0); color: var(--text);
  font-family: var(--font-body); font-weight: 400;
  font-size: 16px; line-height: 1.6; letter-spacing: -0.01em;
  overflow-x: hidden; min-height: 100vh; position: relative;
}
body::before {
  content: ''; position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 255, 252, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(0, 255, 252, 0.05), transparent 50%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  z-index: -2; pointer-events: none;
}
body::after {
  content: ''; position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 252, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 252, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
  z-index: -1; pointer-events: none;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--teal); color: var(--bg-0); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display); font-weight: 600;
  line-height: 1.05; letter-spacing: -0.03em; color: var(--text);
}
h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }
p { color: var(--text-dim); font-size: 1rem; line-height: 1.7; }
.eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--teal);
  display: inline-block;
}
.eyebrow-dot::before {
  content: '●'; color: var(--teal); margin-right: 0.6em;
  animation: pulse 2s ease-in-out infinite; display: inline-block;
}
@keyframes pulse {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 6px var(--teal)); }
  50% { opacity: 0.4; filter: drop-shadow(0 0 0 var(--teal)); }
}
.text-teal { color: var(--teal); }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 70px 0; } }
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem;
  color: var(--text); display: flex; align-items: center; gap: 8px;
}
.logo-mark {
  width: 30px; height: 30px; flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(0, 255, 252, 0.35));
  display: inline-block;
  object-fit: contain;
}
.logo .accent { color: var(--teal); }
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button {
  font-size: 0.92rem; font-weight: 500; color: var(--text-dim);
  transition: color 0.2s; padding: 10px 16px;
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 8px; font-family: inherit; background: transparent; cursor: pointer;
}
.nav-links > li > a:hover, .nav-links > li > button:hover,
.nav-links > li:hover > a, .nav-links > li:hover > button {
  color: var(--teal); background: var(--teal-wash);
}
.nav-links a.active { color: var(--teal); }
.nav-links > li > button::after {
  content: ''; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); margin-left: 2px;
  transition: transform 0.2s;
}
.nav-links > li:hover > button::after { transform: rotate(-135deg) translateY(-1px); }
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 0; min-width: 240px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border-strong); border-radius: 12px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 255, 252, 0.1);
  backdrop-filter: blur(20px); list-style: none;
}
.nav-links > li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown::before {
  content: ''; position: absolute; top: -10px; left: 20px;
  width: 14px; height: 14px; background: var(--bg-2);
  border-top: 1px solid var(--border-strong); border-left: 1px solid var(--border-strong);
  transform: rotate(45deg);
}
.nav-dropdown a {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 14px; border-radius: 8px; color: var(--text-dim);
  font-size: 0.9rem; font-weight: 500; transition: all 0.2s; white-space: nowrap;
}
.nav-dropdown a:hover { color: var(--teal); background: var(--teal-wash); }
.nav-dropdown .tag {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.15em;
  padding: 3px 8px; border-radius: 4px;
  background: rgba(0, 255, 252, 0.12); color: var(--teal);
  border: 1px solid var(--border-strong); text-transform: uppercase;
}
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle {
  display: none; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border-strong); border-radius: 8px;
  color: var(--text); background: transparent; cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.mobile-menu {
  display: none; position: fixed; top: 73px; left: 0; right: 0; bottom: 0;
  background: var(--bg-0); padding: 32px 24px; overflow-y: auto; z-index: 99;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu h6 {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
  margin: 24px 0 8px; font-weight: 500;
}
.mobile-menu a {
  display: block; padding: 14px 0; font-size: 1.05rem;
  color: var(--text); border-bottom: 1px solid var(--border);
}
.mobile-menu .mobile-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.mobile-menu .mobile-cta a { border: none; padding: 0; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-ghost { display: none; }
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; font-family: var(--font-body); font-weight: 600;
  font-size: 0.92rem; letter-spacing: 0.02em; border-radius: 6px;
  transition: all 0.25s ease; cursor: pointer; white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--teal); color: var(--bg-0);
  box-shadow: 0 0 30px var(--teal-halo), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-primary:hover {
  background: var(--teal-bright);
  box-shadow: 0 0 40px var(--teal-glow), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--teal-wash); border-color: var(--teal); color: var(--teal); }
.btn-outline {
  background: var(--teal-wash); color: var(--teal);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover { background: rgba(0, 255, 252, 0.1); border-color: var(--teal); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn .arrow { font-family: var(--font-mono); transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(3px); }
.hero { padding: 180px 0 100px; position: relative; overflow: hidden; }
.hero-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; pointer-events: none; }
.hero-orb.orb-1 {
  width: 600px; height: 600px; background: var(--teal);
  top: -200px; right: -200px; opacity: 0.12;
  animation: float 15s ease-in-out infinite;
}
.hero-orb.orb-2 {
  width: 400px; height: 400px; background: var(--teal-deep);
  bottom: -100px; left: -100px; opacity: 0.1;
  animation: float 18s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}
.hero-content { max-width: 900px; }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 700;
  line-height: 0.96; letter-spacing: -0.04em; margin-bottom: 32px;
  animation: fade-up 0.8s ease 0.1s both;
}
.hero h1 .line-2 {
  display: block; color: var(--teal);
  text-shadow: 0 0 40px rgba(0, 255, 252, 0.45);
}
.hero-sub {
  font-size: 1.15rem; max-width: 640px; margin-bottom: 48px;
  color: var(--text-dim); animation: fade-up 0.8s ease 0.2s both;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; animation: fade-up 0.8s ease 0.3s both; }
.hero-eyebrow { margin-bottom: 24px; animation: fade-up 0.8s ease both; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.license-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 10px;
  background: var(--teal-wash);
  border: 1px solid var(--border-strong); border-radius: 100px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.15em;
  color: var(--teal); text-transform: uppercase;
}
.license-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 10px var(--teal);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 10px var(--teal); }
  50% { box-shadow: 0 0 18px var(--teal), 0 0 30px var(--teal-halo); }
}
.hero-stats {
  margin-top: 80px; padding: 32px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal-wash), rgba(0, 0, 0, 0.4));
  backdrop-filter: blur(10px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; animation: fade-up 0.8s ease 0.4s both;
}
.stat { position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: -12px; top: 10%; bottom: 10%;
  width: 1px; background: var(--border);
}
.stat-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--text);
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px;
}
.stat-num .unit { color: var(--teal); font-weight: 500; }
.stat-label {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted);
}
@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); padding: 24px; gap: 20px; }
  .stat + .stat::before { display: none; }
  .hero { padding: 140px 0 60px; }
}
.ticker {
  overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0; background: var(--bg-1); position: relative;
}
.ticker-track {
  display: flex; gap: 60px; animation: ticker-scroll 40s linear infinite;
  white-space: nowrap; width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.82rem;
  color: var(--text-dim); letter-spacing: 0.05em;
}
.ticker-item .symbol { color: var(--text); font-weight: 500; }
.ticker-item .change { color: var(--teal); }
.ticker-item .change.down { color: var(--danger); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.trust-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 22px 0; background: rgba(0, 255, 252, 0.02);
}
.trust-bar-inner {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 20px 48px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim);
}
.trust-item svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }
.section-head { max-width: 780px; margin-bottom: 64px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { font-size: 1.1rem; max-width: 640px; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; position: relative; transition: all 0.3s ease; overflow: hidden;
}
.card:hover {
  border-color: var(--border-strong); transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 252, 0.08);
}
.card-num {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em;
  color: var(--text-muted); margin-bottom: 20px;
}
.card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(0, 255, 252, 0.08); border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 255, 252, 0.1);
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: 10px; }
.card h3 .accent { color: var(--teal); }
.card p { font-size: 0.93rem; color: var(--text-dim); }
.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1100px) { .tools-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .tools-grid { grid-template-columns: 1fr; } }
.feature-box {
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  padding: 60px;
  background:
    radial-gradient(ellipse at top right, rgba(0, 255, 252, 0.08), transparent 60%),
    linear-gradient(135deg, var(--bg-2), var(--bg-0));
  position: relative; overflow: hidden;
}
.feature-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
.feature-grid.reverse { grid-template-columns: 1fr 1.2fr; }
@media (max-width: 900px) {
  .feature-grid, .feature-grid.reverse { grid-template-columns: 1fr; gap: 40px; }
  .feature-box { padding: 40px 30px; }
}
.execution-flow { display: flex; flex-direction: column; gap: 12px; }
.flow-node {
  padding: 16px 20px; background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.05em;
  color: var(--text-dim); display: flex; align-items: center; gap: 14px;
}
.flow-node.highlight {
  background: var(--teal-wash); border-color: var(--teal);
  color: var(--teal); box-shadow: 0 0 20px var(--teal-halo);
}
.flow-node .node-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg-0); border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--teal); flex-shrink: 0;
}
.flow-connector {
  height: 24px; margin-left: 30px;
  border-left: 1px dashed var(--border-strong); position: relative;
}
.flow-connector::after {
  content: ''; position: absolute; left: -5px; bottom: -4px;
  width: 9px; height: 9px;
  border-right: 1px solid var(--teal); border-bottom: 1px solid var(--teal);
  transform: rotate(45deg);
}
.page-hero { padding: 160px 0 80px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; top: 80px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, var(--teal-halo), transparent 60%);
  filter: blur(80px); opacity: 0.5; pointer-events: none;
}
.page-hero-inner {
  max-width: 880px; margin: 0 auto; text-align: center;
  position: relative; z-index: 2;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem); margin: 20px 0 24px;
}
.page-hero h1 .accent {
  color: var(--teal); text-shadow: 0 0 30px rgba(0, 255, 252, 0.45);
}
.page-hero p {
  font-size: 1.15rem; max-width: 640px; margin: 0 auto;
}
.breadcrumb {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em;
  color: var(--text-muted); text-transform: uppercase;
  display: flex; gap: 10px; justify-content: center; align-items: center;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .current { color: var(--teal); }
.hub-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 64px;
}
.hub-stat {
  padding: 36px; border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  text-align: center; position: relative; overflow: hidden;
}
.hub-stat::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0.6;
}
.hub-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5.5vw, 5rem); font-weight: 700; line-height: 1.05;
  color: var(--teal); text-shadow: 0 0 30px var(--teal-halo);
  margin-bottom: 8px; letter-spacing: -0.04em;
  word-break: keep-all; hyphens: none;
}

/* Compact 2x2 stats grid for partners/tradelocker cards where text can be longer */
.stats-grid-2x2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.stats-grid-2x2 .hub-stat {
  padding: 22px 14px;
}
.stats-grid-2x2 .hub-stat-num {
  font-size: clamp(1.3rem, 4.5vw, 2.4rem);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stats-grid-2x2 .hub-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}
@media (max-width: 380px) {
  .stats-grid-2x2 .hub-stat-num { font-size: 1.15rem; }
  .stats-grid-2x2 .hub-stat { padding: 18px 10px; }
}
.hub-stat-label {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted);
}
@media (max-width: 700px) { .hub-stats { grid-template-columns: 1fr; gap: 14px; } }
.tradeschool-levels {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.level-card {
  padding: 24px 16px; background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border); border-radius: var(--radius); text-align: center;
}
.level-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--teal); line-height: 1; margin-bottom: 8px;
  text-shadow: 0 0 20px var(--teal-halo);
}
.level-label {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted);
}
.license-card {
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  padding: 48px;
  background:
    radial-gradient(ellipse at top right, rgba(0, 255, 252, 0.06), transparent 60%),
    linear-gradient(135deg, var(--bg-2), var(--bg-1));
  position: relative; overflow: hidden; margin-bottom: 40px;
}
.license-card::before {
  content: 'SAINT LUCIA'; position: absolute; top: 32px; right: 32px;
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.3em; color: var(--teal);
  padding: 6px 14px; border: 1px solid var(--border-strong); border-radius: 100px;
  background: var(--teal-wash);
}
.license-card-head { margin-bottom: 40px; max-width: 70%; }
.license-card h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.license-data {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  padding: 28px; background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.license-data-item .label {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.18em; color: var(--text-muted);
  text-transform: uppercase; margin-bottom: 8px; display: block;
}
.license-data-item .value {
  font-family: var(--font-mono); font-size: 0.92rem;
  color: var(--text); font-weight: 500; line-height: 1.5; word-break: break-word;
}
.license-data-item.full { grid-column: 1 / -1; }
@media (max-width: 768px) {
  .license-card { padding: 32px 24px; }
  .license-card::before { position: static; display: inline-block; margin-bottom: 20px; }
  .license-card-head { max-width: 100%; }
  .license-data { grid-template-columns: 1fr; padding: 20px; }
}
.protection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .protection-grid { grid-template-columns: 1fr; } }
.faq { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); margin-bottom: 12px; overflow: hidden;
  transition: all 0.3s;
}
.faq-item[open] {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
}
.faq-item summary {
  padding: 22px 28px; font-weight: 500; font-size: 1rem;
  color: var(--text); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal); }
.faq-item summary::after {
  content: '+'; font-family: var(--font-mono);
  color: var(--teal); font-size: 1.4rem; flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body {
  padding: 0 28px 24px; color: var(--text-dim);
  font-size: 0.95rem; line-height: 1.7;
}
.access-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px;
}
.access-step {
  padding: 28px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); position: relative;
}
.access-step-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--teal); line-height: 1; letter-spacing: -0.05em;
  text-shadow: 0 0 20px var(--teal-halo); margin-bottom: 16px; opacity: 0.9;
}
.access-step h4 { font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.access-step p { font-size: 0.9rem; color: var(--text-dim); }
.access-step code {
  font-family: var(--font-mono); color: var(--teal); font-size: 0.85rem;
  background: var(--teal-wash); padding: 2px 6px;
  border-radius: 4px; border: 1px solid var(--border);
}
@media (max-width: 768px) { .access-steps { grid-template-columns: 1fr; } }
.prohibit-block {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  margin-bottom: 20px;
}
.prohibit-block h3 {
  font-size: 1.35rem; margin-bottom: 14px; color: var(--text);
  display: flex; align-items: center; gap: 12px;
}
.prohibit-block h3 .num {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--teal); letter-spacing: 0.15em;
  border: 1px solid var(--border-strong); padding: 4px 10px;
  border-radius: 4px; background: var(--teal-wash);
}
.prohibit-block p { margin-bottom: 14px; }
.prohibit-block ul {
  list-style: none; padding: 0; margin-top: 16px;
}
.prohibit-block ul li {
  padding: 10px 0 10px 24px; color: var(--text-dim);
  font-size: 0.94rem; position: relative; border-bottom: 1px solid var(--border);
}
.prohibit-block ul li:last-child { border-bottom: none; }
.prohibit-block ul li::before {
  content: '✕'; position: absolute; left: 0; top: 10px;
  color: var(--danger); font-family: var(--font-mono); font-weight: 700;
}
.warning-box {
  padding: 24px 28px;
  background: rgba(255, 179, 71, 0.05);
  border: 1px solid rgba(255, 179, 71, 0.25);
  border-radius: var(--radius); margin: 32px 0;
  display: flex; gap: 16px; align-items: flex-start;
}
.warning-box svg {
  width: 24px; height: 24px; color: var(--warn); flex-shrink: 0; margin-top: 2px;
}
.warning-box strong {
  color: var(--warn); display: block; margin-bottom: 6px;
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase;
}
.warning-box p { color: var(--text-dim); font-size: 0.95rem; margin: 0; }
.platform-hero-visual {
  aspect-ratio: 4 / 3; max-width: 500px; margin: 0 auto;
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, var(--teal-halo), transparent 60%),
    linear-gradient(135deg, var(--bg-2), var(--bg-0));
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.platform-hero-visual::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 252, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 252, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 40%, transparent 100%);
}
.platform-chart {
  width: 80%; height: 65%; position: relative; z-index: 2;
}
.platform-chart svg { width: 100%; height: 100%; }
.device-bar {
  display: flex; gap: 16px; margin-top: 28px;
  flex-wrap: wrap;
}
.device-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--teal-wash);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.1em; color: var(--teal); text-transform: uppercase;
}
.device-chip svg { width: 14px; height: 14px; }
.cta-section { padding: 120px 0; position: relative; text-align: center; overflow: hidden; }
.cta-box {
  max-width: 900px; margin: 0 auto; padding: 80px 40px;
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at center, rgba(0, 255, 252, 0.1), transparent 60%),
    linear-gradient(135deg, var(--bg-2), var(--bg-1));
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--teal-halo), transparent 60%);
  filter: blur(80px); top: -100px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.cta-box h2 { margin-bottom: 18px; position: relative; }
.cta-box h2 .accent { color: var(--teal); }
.cta-box p {
  max-width: 580px; margin: 0 auto 36px;
  font-size: 1.1rem; position: relative;
}
.cta-buttons {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; position: relative;
}
@media (max-width: 600px) { .cta-box { padding: 50px 24px; } }

/* ========== TRUSTPILOT ========== */
.trustpilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 252, 0.15);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  margin-top: 20px;
}
.trustpilot-badge:hover {
  background: rgba(0, 255, 252, 0.05);
  border-color: rgba(0, 255, 252, 0.3);
  transform: translateY(-1px);
}
.tp-stars { display: inline-flex; gap: 2px; }
.tp-star {
  width: 16px; height: 16px;
  background: #00b67a;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 2px;
}
.tp-star svg { width: 11px; height: 11px; fill: #fff; }
.tp-star.tp-star-half {
  background: linear-gradient(90deg, #00b67a 50%, rgba(255,255,255,0.1) 50%);
}
.tp-rating {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700;
  color: var(--text); letter-spacing: -0.01em;
}
.tp-divider { width: 1px; height: 14px; background: rgba(255, 255, 255, 0.15); }
.tp-label { font-size: 0.78rem; color: var(--text-dim); font-weight: 500; }
.tp-label strong { color: var(--teal); font-weight: 600; }
.tp-arrow { color: var(--text-dim); font-size: 0.9rem; transition: transform 0.25s; }
.trustpilot-badge:hover .tp-arrow { transform: translateX(2px); color: var(--teal); }

/* Full Trustpilot section */
.tp-section {
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg-1);
}
.tp-section-inner { max-width: 560px; margin: 0 auto; }
.tp-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem; letter-spacing: 0.2em;
  color: var(--teal); text-transform: uppercase;
  margin-bottom: 24px;
}
.tp-big-score {
  font-family: var(--font-display);
  font-size: 3.8rem; font-weight: 700;
  color: var(--text); line-height: 1;
  letter-spacing: -0.03em; margin-bottom: 14px;
}
.tp-big-stars { display: inline-flex; gap: 4px; margin-bottom: 16px; }
.tp-big-star {
  width: 28px; height: 28px;
  background: #00b67a; border-radius: 3px;
  display: inline-flex; align-items: center; justify-content: center;
}
.tp-big-star svg { width: 18px; height: 18px; fill: #fff; }
.tp-big-star.tp-big-star-half {
  background: linear-gradient(90deg, #00b67a 50%, rgba(255,255,255,0.08) 50%);
}
.tp-review-count {
  font-size: 1rem; color: var(--text-dim);
  margin-bottom: 32px;
}
.tp-review-count strong { color: var(--text); font-weight: 600; }
.tp-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: transparent; border: 1px solid var(--teal);
  border-radius: 100px; color: var(--teal);
  text-decoration: none; font-size: 0.92rem; font-weight: 500;
  transition: all 0.25s;
}
.tp-cta:hover { background: var(--teal); color: var(--bg-0); }


.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px; background: var(--bg-1);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 18px; font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--text-dim); transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.risk-disclaimer {
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.7;
}
.risk-disclaimer strong {
  color: var(--text-dim); display: block; margin-bottom: 8px;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  margin-top: 32px; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal a:hover { color: var(--teal); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================
   FUNDING SECTION (homepage + funding page)
   ============================ */
.pay-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(0, 217, 192, 0.02) 100%);
  position: relative;
  overflow: hidden;
}
.pay-section::before {
  content: ""; position: absolute; top: 0; right: 0; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 217, 192, 0.08) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
}
.pay-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.pay-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal); font-family: var(--font-mono);
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 20px;
}
.pay-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 12px var(--teal);
}
.pay-headline {
  font-family: var(--font-display); font-size: 3rem; line-height: 1.05;
  font-weight: 600; letter-spacing: -0.02em; margin-bottom: 24px; color: var(--text);
}
.pay-lead {
  font-size: 1.05rem; line-height: 1.65; color: var(--text-muted);
  margin-bottom: 32px; max-width: 540px;
}
.pay-chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
}
.pay-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 217, 192, 0.2);
  color: var(--text); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.02em;
}
.pay-chip svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.pay-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Holographic LivvFX card visual */
.pay-card-wrap {
  display: flex; justify-content: center; align-items: center;
  position: relative; perspective: 1200px;
}
.pay-card {
  width: 100%; max-width: 420px; aspect-ratio: 1.586 / 1;
  border-radius: 22px; padding: 28px;
  background: linear-gradient(135deg, #0a1a18 0%, #0e2826 50%, #0a1a18 100%);
  border: 1px solid rgba(0, 217, 192, 0.3);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(0, 217, 192, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative; overflow: hidden;
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.4s ease;
}
.pay-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 217, 192, 0.1) 50%, transparent 100%);
  pointer-events: none;
}
.pay-card::after {
  content: ""; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(0, 217, 192, 0.25) 0%, transparent 60%);
  filter: blur(20px); pointer-events: none;
}
.pay-card:hover { transform: rotateY(-4deg) rotateX(2deg); }
.pay-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 60px; position: relative; z-index: 2;
}
.pay-card-brand {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.05em; color: var(--text);
}
.pay-card-brand .accent { color: var(--teal); }
.pay-card-chip {
  width: 40px; height: 30px; border-radius: 6px;
  background: linear-gradient(135deg, #c9a557 0%, #f4d97f 50%, #c9a557 100%);
  position: relative;
}
.pay-card-chip::before, .pay-card-chip::after {
  content: ""; position: absolute; background: rgba(0, 0, 0, 0.2);
}
.pay-card-chip::before { top: 33%; left: 0; right: 0; height: 1px; }
.pay-card-chip::after { left: 50%; top: 0; bottom: 0; width: 1px; }
.pay-card-number {
  font-family: var(--font-mono); font-size: 1.15rem; letter-spacing: 0.15em;
  color: var(--text); margin-bottom: 24px; position: relative; z-index: 2;
}
.pay-card-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  position: relative; z-index: 2;
}
.pay-card-name {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 4px;
}
.pay-card-holder {
  font-family: var(--font-mono); font-size: 0.9rem; color: var(--text);
  letter-spacing: 0.05em;
}
.pay-card-network {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--teal); letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .pay-section { padding: 70px 0; }
  .pay-grid { grid-template-columns: 1fr; gap: 50px; }
  .pay-headline { font-size: 2.2rem; }
  .pay-card { transform: none; }
  .pay-card:hover { transform: none; }
}

/* ============================
   FUNDING PAGE (funding.html)
   ============================ */
.fund-methods {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.fund-method {
  padding: 32px 28px; border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.fund-method:hover {
  border-color: rgba(0, 217, 192, 0.4);
  transform: translateY(-4px);
}
.fund-method-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0, 217, 192, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.fund-method-icon svg { width: 24px; height: 24px; color: var(--teal); }
.fund-method h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  margin-bottom: 10px; color: var(--text);
}
.fund-method p {
  font-size: 0.92rem; line-height: 1.6; color: var(--text-muted);
}
.fund-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 40px;
}
.fund-step {
  padding: 28px 22px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border);
  position: relative;
}
.fund-step-num {
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--teal);
  letter-spacing: 0.18em; margin-bottom: 14px; font-weight: 600;
}
.fund-step h4 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  margin-bottom: 8px; color: var(--text);
}
.fund-step p {
  font-size: 0.88rem; line-height: 1.55; color: var(--text-muted);
}
.fund-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.fund-stat {
  padding: 32px 24px; border-radius: 14px; text-align: center;
  background: rgba(0, 217, 192, 0.04);
  border: 1px solid rgba(0, 217, 192, 0.18);
}
.fund-stat-value {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--teal); margin-bottom: 8px; letter-spacing: -0.02em;
}
.fund-stat-label {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.5;
}
@media (max-width: 900px) {
  .fund-methods, .fund-steps { grid-template-columns: 1fr; }
  .fund-stats { grid-template-columns: 1fr; }
}

/* ============================
   TRADING JOURNAL MOCKUP
   ============================ */
.journal-showcase {
  padding: 80px 0 40px;
  position: relative;
}
.journal-mock {
  max-width: 1080px;
  margin: 0 auto;
  background: linear-gradient(180deg, #0e1414 0%, #0a1010 100%);
  border: 1px solid rgba(0, 217, 192, 0.18);
  border-radius: 20px;
  padding: 32px;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(0, 217, 192, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}
.journal-mock::before {
  content: ""; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 217, 192, 0.08) 0%, transparent 60%);
  filter: blur(40px); pointer-events: none;
}
.journal-mock-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative; z-index: 2;
}
.journal-mock-title {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  color: var(--text); letter-spacing: -0.01em;
}
.journal-mock-tag {
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--teal); letter-spacing: 0.18em;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(0, 217, 192, 0.08);
  border: 1px solid rgba(0, 217, 192, 0.25);
}
.journal-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative; z-index: 2;
}
.journal-stat {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 20px 18px;
  position: relative;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.journal-stat-label {
  font-family: var(--font-mono); font-size: 0.68rem;
  color: var(--text-muted); letter-spacing: 0.16em;
  text-transform: uppercase; margin-bottom: 8px;
}
.journal-stat-value {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.55rem; line-height: 1.1; letter-spacing: -0.01em;
  color: var(--text);
}
.journal-stat-value.green { color: #a3e635; }
.journal-stat-value.teal { color: var(--teal); }
.journal-stat-sub {
  font-size: 0.72rem; color: var(--text-muted); margin-top: 4px;
}
.journal-gauge {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: 8px;
}
.journal-gauge-svg {
  width: 64px; height: 36px; flex-shrink: 0;
}
.journal-gauge-svg .bg { stroke: rgba(255,255,255,0.08); }
.journal-gauge-svg .fg { stroke: var(--teal); stroke-linecap: round; }
.journal-stat-mini {
  display: flex; gap: 10px; margin-top: 6px;
  font-family: var(--font-mono); font-size: 0.7rem;
}
.journal-stat-mini .win { color: #a3e635; }
.journal-stat-mini .be  { color: var(--text-muted); }
.journal-stat-mini .lose { color: #ef4444; }
.journal-trendline {
  width: 100%; height: 36px; margin-top: 8px;
}
.journal-trendline path { stroke: #a3e635; fill: none; stroke-width: 2; stroke-linecap: round; }
.journal-donut {
  width: 56px; height: 56px; flex-shrink: 0;
}
.journal-donut .ring-bg { stroke: rgba(255,255,255,0.08); }
.journal-donut .ring-fg { stroke: var(--teal); stroke-linecap: round; }
.journal-bar {
  width: 100%; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.06); margin-top: 10px;
  position: relative; overflow: hidden;
}
.journal-bar-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: linear-gradient(90deg, #a3e635 0%, #f97316 100%);
  border-radius: 3px;
}
@media (max-width: 900px) {
  .journal-mock { padding: 20px; border-radius: 16px; }
  .journal-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .journal-stat { min-height: 110px; padding: 14px; }
  .journal-stat-value { font-size: 1.3rem; }
  .journal-mock-title { font-size: 1.1rem; }
}

/* ============================
   AI CHAT MOCK PREVIEW
   ============================ */
.ai-chat-section {
  padding: 60px 0 80px;
}
.ai-chat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: 1080px; margin: 0 auto;
}
.ai-chat-copy h2 {
  font-family: var(--font-display); font-size: 2.4rem; line-height: 1.1;
  font-weight: 600; letter-spacing: -0.02em; margin-bottom: 20px;
}
.ai-chat-copy p {
  font-size: 1rem; line-height: 1.65; color: var(--text-muted);
  margin-bottom: 20px;
}
.ai-chat-mock {
  background: linear-gradient(180deg, #0e1414 0%, #0a1010 100%);
  border: 1px solid rgba(0, 217, 192, 0.2);
  border-radius: 20px;
  padding: 24px;
  box-shadow:
    0 30px 70px -20px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(0, 217, 192, 0.1);
  max-width: 480px;
  position: relative;
}
.ai-chat-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 18px;
}
.ai-chat-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, #007a6e 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 217, 192, 0.4);
}
.ai-chat-avatar svg { width: 22px; height: 22px; color: #001a18; }
.ai-chat-avatar::after {
  content: ""; position: absolute; bottom: 1px; right: 1px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #4ade80; border: 2px solid #0e1414;
}
.ai-chat-info { flex: 1; }
.ai-chat-name {
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: var(--text);
}
.ai-chat-status {
  font-size: 0.72rem; color: #4ade80;
  display: flex; align-items: center; gap: 5px; margin-top: 2px;
}
.ai-chat-status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80;
}
.ai-chat-msgs {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 16px;
}
.ai-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.88rem; line-height: 1.5;
}
.ai-msg.user {
  align-self: flex-end;
  background: rgba(0, 217, 192, 0.15);
  border: 1px solid rgba(0, 217, 192, 0.3);
  color: var(--text);
  border-bottom-right-radius: 4px;
}
.ai-msg.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.ai-msg.bot strong { color: var(--teal); }
.ai-typing {
  display: flex; gap: 4px; padding: 4px 0;
}
.ai-typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); opacity: 0.4;
  animation: ai-dot 1.4s ease-in-out infinite;
}
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes ai-dot {
  0%, 60%, 100% { opacity: 0.4; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.ai-chat-input {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
}
.ai-chat-input-text {
  flex: 1; font-size: 0.85rem; color: var(--text-muted);
}
.ai-chat-input-send {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.ai-chat-input-send svg { width: 14px; height: 14px; color: #001a18; }

@media (max-width: 900px) {
  .ai-chat-grid { grid-template-columns: 1fr; gap: 40px; }
  .ai-chat-copy h2 { font-size: 1.8rem; }
  .ai-chat-mock { max-width: 100%; margin: 0 auto; }
}
