/* ============================================================
   KLED.AI - COMPLETE STYLESHEET
   ============================================================ */

/* ----- FONTS ----- */
@font-face {
  font-family: 'Fragment Mono';
  font-style: normal; font-weight: 400;
  src: url(https://fonts.gstatic.com/s/fragmentmono/v6/4iCr6K5wfMRRjxp0DA6-2CLnB41HhrUI.woff2) format('woff2');
}
@font-face {
  font-family: 'Neue Montreal';
  src: url("https://framerusercontent.com/assets/EN0wrjjcgDdG3SMgxfEI19PNHRs.woff2") format('woff2');
  font-display: swap; font-style: normal; font-weight: 400;
}
@font-face {
  font-family: 'PP Neue Montreal Book';
  src: url("https://framerusercontent.com/assets/yUScEiZtXZCqdRimefTfBx1Q4.woff2") format('woff2');
  font-display: swap; font-style: normal; font-weight: 400;
}
@font-face {
  font-family: 'Aeonik Fono';
  src: url("https://framerusercontent.com/assets/K3pXvxxhnEJJDgdT1w0Y8uiByE.woff2") format('woff2');
  font-display: swap; font-style: normal; font-weight: 400;
}
@font-face {
  font-family: 'PP Neue Montreal Medium';
  src: url("https://framerusercontent.com/assets/6uIfYl8bnz9kOy3KOuV7PxhFPhA.woff2") format('woff2');
  font-display: swap; font-style: normal; font-weight: 500;
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiA.woff2) format('woff2');
}

/* ----- RESET & BASE ----- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Inter', 'Neue Montreal', -apple-system, sans-serif;
  background-color: #fdfdfb;
  color: #000;
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ----- UTILITY ----- */
.section-container {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
}
.section-title {
  font-family: 'PP Neue Montreal Medium', 'Neue Montreal', sans-serif;
  font-size: 56px; font-weight: 500; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 48px;
}
.section-label {
  font-family: 'Fragment Mono', monospace;
  font-size: 13px; font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.08em; color: #737c95; margin-bottom: 12px;
}

/* ----- NAVIGATION ----- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(253,253,251,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-container {
  max-width: 1440px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 26px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-item {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 400;
  color: #000; letter-spacing: 0.01em; transition: opacity 0.2s;
}
.nav-item:hover { opacity: 0.6; }

/* Products Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: #000;
}
.chevron { font-size: 10px; transition: transform 0.3s; }
.nav-dropdown.open .chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: -16px;
  background: #fff; border-radius: 12px; padding: 8px;
  min-width: 200px; box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-item {
  padding: 10px 14px; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: #000;
  transition: background 0.15s;
}
.dropdown-item:hover { background: rgba(0,0,0,0.04); }

.nav-trust { position: relative; }
.nav-trust::after {
  content: 'NEW'; position: absolute; top: -8px; right: -28px;
  font-family: 'Fragment Mono', monospace; font-size: 9px;
  background: #15254e; color: #fdfdfb; padding: 2px 5px;
  border-radius: 4px; letter-spacing: 0.05em;
}
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-signin {
  font-family: 'Inter', sans-serif; font-size: 14px; color: #000;
  transition: opacity 0.2s;
}
.nav-signin:hover { opacity: 0.6; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500;
  letter-spacing: 0.01em; transition: all 0.2s; cursor: pointer;
}
.btn-nav { padding: 10px 20px; font-size: 13px; }
.btn-primary { background: #15254e; color: #fdfdfb; }
.btn-primary:hover { background: #1e3570; }
.btn-secondary { background: rgba(0,0,0,0.05); color: #000; }
.btn-secondary:hover { background: rgba(0,0,0,0.1); }
.btn-research { background: #000; color: #fdfdfb; }
.btn-research:hover { background: #1a1a1a; }
.btn-outline { border: 1px solid rgba(0,0,0,0.15); color: #000; background: transparent; }
.btn-outline:hover { border-color: rgba(0,0,0,0.3); background: rgba(0,0,0,0.03); }

/* Mobile menu button */
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-menu-btn span {
  display: block; width: 22px; height: 2px; background: #000;
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 120px 40px 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%; will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(253,253,251,0) 0%, rgba(253,253,251,0.3) 40%, rgba(253,253,251,0.7) 65%, #fdfdfb 90%);
}
.hero-content { position: relative; z-index: 1; max-width: 880px; }
.hero-badge {
  display: inline-block;
  font-family: 'Fragment Mono', monospace; font-size: 12px;
  letter-spacing: 0.04em; color: #15254e;
  background: rgba(21,37,78,0.06); padding: 8px 20px;
  border-radius: 100px; margin-bottom: 12px;
}
.hero-badge-sub {
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: #737c95; margin-bottom: 24px;
}
.hero-title {
  font-family: 'PP Neue Montreal Medium', 'Neue Montreal', sans-serif;
  font-size: clamp(48px, 8vw, 96px); font-weight: 500;
  line-height: 0.95; letter-spacing: -0.03em;
  margin-bottom: 16px; color: #000;
}
.hero-subtitle { margin-bottom: 32px; }
.hero-subtitle-text {
  font-family: 'PP Neue Montreal Medium', 'Neue Montreal', sans-serif;
  font-size: clamp(32px, 6vw, 64px); font-weight: 500;
  line-height: 1.05; letter-spacing: -0.025em;
}
.hero-subtitle-line { color: #000; }
.hero-subtitle-highlight { color: #15254e; }
.hero-description {
  font-family: 'Inter', sans-serif; font-size: 18px;
  line-height: 1.6; color: #505c7a;
  max-width: 620px; margin: 0 auto 48px;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}

/* ===== INSTITUTION TICKER ===== */
.institution-bar {
  position: relative; z-index: 1; margin-top: 80px;
  text-align: center; width: 100%; max-width: 1100px;
}
.institution-label {
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: #969daf; margin-bottom: 24px; letter-spacing: 0.03em;
}
.institution-ticker-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.institution-ticker { overflow: hidden; width: 100%; }
.ticker-track {
  display: flex; gap: 54px; align-items: center;
  width: fit-content; animation: tickerScroll 30s linear infinite;
}
.ticker-item { flex-shrink: 0; }
.ticker-item img {
  height: 26px; width: auto; opacity: 0.5;
  filter: grayscale(100%); transition: opacity 0.3s, filter 0.3s;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track:hover .ticker-item img { opacity: 0.8; filter: grayscale(50%); }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== STORIES CAROUSEL ===== */
.stories { padding: 120px 0 80px; background: #fdfdfb; }
.carousel-container {
  position: relative; display: flex; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 0 60px;
}
.carousel-viewport { overflow: hidden; width: 100%; }
.carousel-track {
  display: flex; gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.story-card {
  flex: 0 0 calc(33.333% - 14px); min-width: 300px;
  border-radius: 16px; overflow: hidden;
  background: #f5f4f0; transition: transform 0.3s;
}
.story-card:hover { transform: translateY(-4px); }
.story-image { overflow: hidden; aspect-ratio: 4/3; }
.story-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.story-card:hover .story-image img { transform: scale(1.03); }
.story-content { padding: 20px 24px 24px; }
.story-read-time {
  font-family: 'Fragment Mono', monospace; font-size: 10px;
  color: #737c95; letter-spacing: 0.06em; display: block; margin-bottom: 8px;
}
.story-name {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 20px; font-weight: 500; line-height: 1.2;
  margin-bottom: 6px; color: #000;
}
.story-text {
  font-family: 'Inter', sans-serif; font-size: 14px;
  line-height: 1.5; color: #505c7a;
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #000; z-index: 10; transition: box-shadow 0.2s, background 0.2s;
}
.carousel-arrow:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.14); background: #f9f9f6; }
.carousel-arrow:disabled { opacity: 0.3; cursor: default; }
.carousel-prev, .companies-prev { left: 0; }
.carousel-next, .companies-next { right: 0; }

/* Carousel Dots */
.carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 32px;
}
.carousel-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,0.15); transition: background 0.3s, transform 0.3s;
}
.carousel-dots .dot.active { background: #15254e; transform: scale(1.3); }

/* ===== INVESTORS ===== */
.investors { padding: 100px 0 120px; background: #fdfdfb; }
.investors-header { margin-bottom: 60px; }
.investors-title {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 48px; font-weight: 500; line-height: 1.05; letter-spacing: -0.02em;
}
.category-title {
  font-family: 'Fragment Mono', monospace; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.06em; color: #737c95;
  margin-bottom: 32px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.investors-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.investor-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px; border-radius: 12px; transition: background 0.2s;
}
.investor-card:hover { background: rgba(0,0,0,0.03); }
.investor-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
}
.investor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder {
  background: #15254e; color: #fdfdfb;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fragment Mono', monospace; font-size: 14px; font-weight: 500;
}
.investor-name {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700;
  color: #000; margin-bottom: 2px;
}
.investor-role { font-size: 12px; color: #737c95; line-height: 1.3; }

/* ===== COMPANIES CASE STUDY ===== */
.companies { padding: 0 0 100px; background: #fdfdfb; }
.companies-carousel {
  position: relative; display: block; padding: 0;
}
.companies-viewport { overflow: hidden; width: 100%; }
.companies-track {
  display: flex; transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.company-slide { flex: 0 0 100%; min-width: 100%; }
.company-card {
  background: #0e1014; color: #fdfdfb;
  border-radius: 20px; padding: 48px;
  display: grid; grid-template-columns: 1fr 300px; gap: 48px;
}
.company-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.company-logo {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 32px; font-weight: 500;
}
.company-read-time {
  font-family: 'Fragment Mono', monospace; font-size: 11px;
  color: #737c95; letter-spacing: 0.04em;
}
.company-tags { display: flex; gap: 10px; margin-bottom: 24px; }
.company-tag {
  font-family: 'Fragment Mono', monospace; font-size: 10px;
  letter-spacing: 0.08em; color: #969daf;
  padding: 6px 12px; border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
}
.company-text {
  font-family: 'Inter', sans-serif; font-size: 16px;
  line-height: 1.6; color: #b9beca; margin-bottom: 32px; max-width: 620px;
}
.company-stats {
  display: flex; flex-direction: column; gap: 24px;
}
.cstat-item {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cstat-number {
  display: block;
  font-family: 'Aeonik Fono', 'Fragment Mono', monospace;
  font-size: 36px; font-weight: 400; color: #fdfdfb; margin-bottom: 4px;
}
.cstat-label {
  font-family: 'Inter', sans-serif; font-size: 14px; color: #737c95;
}
.btn-company {
  margin-top: 32px; border-color: rgba(255,255,255,0.15); color: #fdfdfb;
}
.btn-company:hover {
  border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05);
}

/* ===== RESEARCH ===== */
.research { padding: 0 0 100px; background: #fdfdfb; }
.research-header { margin-bottom: 48px; }
.research-title {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 48px; font-weight: 500; line-height: 1.05; letter-spacing: -0.02em;
}
.research-card {
  display: grid; grid-template-columns: 1fr 280px; gap: 48px;
  background: #0e1014; color: #fdfdfb;
  border-radius: 20px; padding: 48px;
}
.research-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.research-tag {
  font-family: 'Fragment Mono', monospace; font-size: 10px;
  letter-spacing: 0.08em; color: #969daf;
  padding: 6px 12px; border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
}
.research-read-time {
  font-family: 'Fragment Mono', monospace; font-size: 10px;
  letter-spacing: 0.08em; color: #969daf; padding: 6px 0;
}
.research-card-title {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 36px; font-weight: 500; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.research-card-text {
  font-family: 'Inter', sans-serif; font-size: 16px;
  line-height: 1.6; color: #b9beca; margin-bottom: 32px;
}
.research-stats {
  display: flex; flex-direction: column; gap: 28px; padding-top: 8px;
}
.stat-item {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stat-number {
  display: block;
  font-family: 'Aeonik Fono', 'Fragment Mono', monospace;
  font-size: 36px; font-weight: 400; color: #fdfdfb; margin-bottom: 4px;
}
.stat-label { font-family: 'Inter', sans-serif; font-size: 14px; color: #737c95; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 120px 0 100px; background: #fdfdfb; }
.hiw-header { text-align: center; margin-bottom: 72px; }
.hiw-title { margin-bottom: 16px; }
.hiw-subtitle {
  font-family: 'Inter', sans-serif; font-size: 18px;
  line-height: 1.6; color: #505c7a;
  max-width: 640px; margin: 0 auto;
}
.hiw-steps {
  display: flex; align-items: flex-start; gap: 0;
  max-width: 1000px; margin: 0 auto;
}
.hiw-step {
  flex: 1; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  padding: 0 32px;
}
.hiw-step-number {
  font-family: 'Aeonik Fono', 'Fragment Mono', monospace;
  font-size: 13px; letter-spacing: 0.08em; color: #15254e;
  margin-bottom: 20px;
}
.hiw-step-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(21,37,78,0.06); color: #15254e;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.hiw-step-title {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 22px; font-weight: 500; line-height: 1.2;
  margin-bottom: 12px; color: #000;
}
.hiw-step-text {
  font-family: 'Inter', sans-serif; font-size: 15px;
  line-height: 1.6; color: #505c7a;
}
.hiw-step-divider {
  width: 80px; height: 1px; background: rgba(0,0,0,0.08);
  margin-top: 32px; flex-shrink: 0;
}

/* ===== DATA STATS DASHBOARD ===== */
.stats-dashboard { padding: 0 0 80px; background: #fdfdfb; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 960px; margin: 0 auto;
}
.stat-block {
  text-align: center; padding: 40px 24px;
  background: #f5f4f0; border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}
.stat-block-number {
  font-family: 'Aeonik Fono', 'Fragment Mono', monospace;
  font-size: 48px; font-weight: 400; color: #15254e;
  line-height: 1; transition: color 0.3s;
}
.stat-block-suffix {
  font-family: 'Aeonik Fono', 'Fragment Mono', monospace;
  font-size: 24px; font-weight: 400; color: #15254e;
  vertical-align: super;
}
.stat-block-label {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 14px; color: #737c95; margin-top: 8px;
}

/* ===== WHY KLED ===== */
.why-kled { padding: 0 0 120px; background: #fdfdfb; }
.why-header { text-align: center; margin-bottom: 64px; }
.why-title { margin-bottom: 0; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.why-card {
  padding: 36px; border-radius: 16px;
  background: #f5f4f0; transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}
.why-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(21,37,78,0.06); color: #15254e;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card-title {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 20px; font-weight: 500; line-height: 1.3;
  margin-bottom: 10px; color: #000;
}
.why-card-text {
  font-family: 'Inter', sans-serif; font-size: 14px;
  line-height: 1.6; color: #505c7a;
}

/* ===== TOKENOMICS ===== */
.tokenomics { padding: 0 0 120px; background: #fdfdfb; }
.tokenomics-header { margin-bottom: 48px; }
.tokenomics-title { margin-bottom: 0; }
.tokenomics-card {
  display: grid; grid-template-columns: 1fr 360px; gap: 64px;
  background: #0e1014; color: #fdfdfb;
  border-radius: 20px; padding: 48px;
  align-items: center;
}
.tokenomics-badge { margin-bottom: 20px; }
.tokenomics-chain {
  font-family: 'Fragment Mono', monospace; font-size: 10px;
  letter-spacing: 0.1em; color: #969daf;
  padding: 6px 12px; border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
}
.tokenomics-card-title {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 32px; font-weight: 500; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.tokenomics-card-text {
  font-family: 'Inter', sans-serif; font-size: 16px;
  line-height: 1.6; color: #b9beca; margin-bottom: 28px;
}
.tokenomics-features {
  display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px;
}
.tokenomics-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: #dcdee4;
}
.tfeature-icon {
  color: #4ade80; flex-shrink: 0; font-size: 16px; font-weight: 700;
}
.tokenomics-visual {
  background: rgba(255,255,255,0.03); border-radius: 16px;
  padding: 32px;
}
.tokenomics-cycle {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.tcycle-node {
  text-align: center; padding: 16px 20px;
  background: rgba(255,255,255,0.04); border-radius: 12px;
  width: 100%;
}
.tcycle-label {
  display: block;
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 16px; font-weight: 500; color: #fdfdfb; margin-bottom: 4px;
}
.tcycle-desc {
  font-family: 'Inter', sans-serif; font-size: 13px; color: #737c95;
}
.tcycle-arrow {
  font-size: 20px; color: #737c95; padding: 4px 0;
}

/* ===== TRUST & PRIVACY ===== */
.trust { padding: 0 0 120px; background: #fdfdfb; }
.trust-header { text-align: center; margin-bottom: 56px; }
.trust-title { margin-bottom: 16px; }
.trust-subtitle {
  font-family: 'Inter', sans-serif; font-size: 18px;
  line-height: 1.6; color: #505c7a;
  max-width: 640px; margin: 0 auto;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.trust-grid .trust-card:last-child:nth-child(3n+1) { grid-column: 2; }
.trust-card {
  padding: 32px; border-radius: 16px;
  background: #f5f4f0; transition: transform 0.3s, box-shadow 0.3s;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}
.trust-card-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.trust-card-header svg { color: #15254e; flex-shrink: 0; }
.trust-card-header h4 {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 18px; font-weight: 500; color: #000;
}
.trust-card p {
  font-family: 'Inter', sans-serif; font-size: 14px;
  line-height: 1.6; color: #505c7a;
}

/* ===== FAQ ===== */
.faq { padding: 0 0 120px; background: #fdfdfb; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-title { margin-bottom: 0; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; text-align: left;
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 18px; font-weight: 500; color: #000;
  transition: opacity 0.2s;
}
.faq-question:hover { opacity: 0.7; }
.faq-icon { flex-shrink: 0; color: #737c95; transition: transform 0.3s; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer p {
  font-family: 'Inter', sans-serif; font-size: 15px;
  line-height: 1.6; color: #505c7a; padding-bottom: 24px;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ===== UPDATES ===== */
.updates { padding: 0 0 120px; background: #fdfdfb; }
.updates-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 48px;
}
.update-card {
  display: block; border-radius: 16px; overflow: hidden;
  background: #f5f4f0; transition: transform 0.2s, box-shadow 0.2s;
}
.update-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.update-card-hero {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr;
}
.update-card-image { overflow: hidden; aspect-ratio: 16/9; }
.update-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.update-card:hover .update-card-image img { transform: scale(1.03); }
.update-card-body { padding: 28px; }
.update-date {
  font-family: 'Fragment Mono', monospace; font-size: 12px;
  color: #737c95; letter-spacing: 0.04em; display: block; margin-bottom: 10px;
}
.update-title {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 20px; font-weight: 500; line-height: 1.2;
  color: #000; margin-bottom: 8px;
}
.update-card-hero .update-title { font-size: 26px; }
.update-excerpt {
  font-family: 'Inter', sans-serif; font-size: 14px;
  line-height: 1.5; color: #505c7a; margin-bottom: 18px;
}
.update-tag {
  font-family: 'Fragment Mono', monospace; font-size: 10px;
  letter-spacing: 0.06em; color: #15254e; text-transform: uppercase;
}
.updates-cta { text-align: center; }

/* ===== FOOTER ===== */
.footer { background: #0e1014; color: #fdfdfb; padding: 80px 0 40px; }
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
  margin-bottom: 60px;
}
.footer-logo img { height: 24px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-family: 'Inter', sans-serif; font-size: 16px; color: #737c95; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-heading {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: #969daf;
  margin-bottom: 20px;
}
.footer-column { display: flex; flex-direction: column; gap: 12px; }
.footer-column a {
  font-family: 'Inter', sans-serif; font-size: 15px;
  color: #dcdee4; transition: color 0.2s;
}
.footer-column a:hover { color: #fdfdfb; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copyright { font-size: 13px; color: #505c7a; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fdfdfb; z-index: 999;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 120px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  overflow-y: auto;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-content {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.mobile-menu-item {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 28px; font-weight: 500; color: #000; transition: opacity 0.2s;
}
.mobile-menu-item:hover { opacity: 0.5; }
.mobile-has-sub { font-size: 22px; color: #737c95; }
.mobile-sub {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-sub-item { font-size: 18px; }
.mobile-menu-signin {
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 400;
}
.mobile-menu-cta {
  font-family: 'Inter', sans-serif; font-size: 18px;
  background: #15254e; color: #fdfdfb;
  padding: 14px 32px; border-radius: 100px;
}

/* ===== ANIMATIONS: REVEAL ON SCROLL ===== */
.reveal-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .section-title { font-size: 44px; }
  .investors-title, .research-title, .why-title, .tokenomics-title, .trust-title, .faq-title { font-size: 38px; }
  .updates-grid { grid-template-columns: repeat(2, 1fr); }
  .story-card { flex: 0 0 calc(50% - 10px); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .tokenomics-card { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps { flex-direction: column; align-items: center; gap: 40px; }
  .hiw-step-divider {
    width: 1px; height: 40px; margin-top: 0;
  }
}
@media (max-width: 1024px) {
  .nav-links, .nav-actions .nav-signin { display: none; }
  .nav-actions { gap: 8px; }
  .mobile-menu-btn { display: flex; }
  .investors-grid { grid-template-columns: repeat(3, 1fr); }
  .company-card, .research-card { grid-template-columns: 1fr; gap: 32px; }
  .company-stats, .research-stats {
    flex-direction: row; flex-wrap: wrap; gap: 20px;
  }
  .cstat-item, .stat-item {
    flex: 1; min-width: 130px; border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.08);
    padding-right: 20px; padding-bottom: 0;
  }
  .cstat-item:last-child, .stat-item:last-child { border-right: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid .trust-card:last-child:nth-child(3n+1) { grid-column: auto; }
  .tokenomics-card { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section-container { padding: 0 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-badge { font-size: 11px; padding: 6px 14px; }
  .hero-badge-sub { font-size: 12px; }
  .hero-title { font-size: 40px; }
  .hero-subtitle-text { font-size: 26px; }
  .hero-description { font-size: 15px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .section-title { font-size: 34px; margin-bottom: 32px; }
  .story-card { flex: 0 0 100%; min-width: 260px; }
  .carousel-container { padding: 0 48px; }
  .investors-grid { grid-template-columns: repeat(2, 1fr); }
  .investors-title, .research-title, .why-title, .tokenomics-title, .trust-title, .faq-title { font-size: 30px; }
  .company-card, .research-card, .tokenomics-card { padding: 28px; }
  .company-logo { font-size: 24px; }
  .research-card-title { font-size: 26px; }
  .tokenomics-card-title { font-size: 24px; }
  .updates-grid { grid-template-columns: 1fr; }
  .update-card-hero { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cstat-number, .stat-number { font-size: 28px; }
  .hiw-steps { flex-direction: column; gap: 32px; }
  .hiw-step-divider { width: 1px; height: 32px; margin-top: 0; }
  .hiw-subtitle, .trust-subtitle { font-size: 15px; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block-number { font-size: 36px; }
  .stat-block-suffix { font-size: 20px; }
  .tokenomics-visual { padding: 20px; }
  .faq-question { font-size: 16px; }
}
@media (max-width: 480px) {
  .investors-grid { grid-template-columns: 1fr; }
  .investor-card { padding: 8px; }
  .carousel-arrow { width: 40px; height: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .hiw-step { padding: 0 16px; }
  .tokenomics-card { padding: 20px; }
  .tokenomics-card-title { font-size: 20px; }
}
