/* ============================================
   CADRO — Premium NFT Mint Landing
   Rich blue global gradient · Video load screen
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ALL TEXT IS WHITE — hierarchy via opacity, weight, size only */
  --t: #ffffff;
  --t-sub: rgba(255,255,255,0.82);
  --t-dim: rgba(255,255,255,0.58);

  /* Glass on blue */
  --glass: rgba(255,255,255,0.10);
  --glass-h: rgba(255,255,255,0.16);
  --glass-b: rgba(255,255,255,0.18);
  --glass-bh: rgba(255,255,255,0.30);

  /* Fonts */
  --fd: 'Syne', sans-serif;
  --fb: 'DM Sans', sans-serif;
  --fm: 'JetBrains Mono', monospace;

  /* Layout */
  --pad: clamp(80px, 10vh, 140px);
  --cw: min(1200px, 90vw);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

/* ============================================
   SINGLE GLOBAL BACKGROUND — rich blue
   ============================================ */
@keyframes drift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body {
  font-family: var(--fb);
  color: var(--t);
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(
    150deg,
    #0c2d48 0%,
    #145374 14%,
    #1a6fa0 28%,
    #2196c8 40%,
    #34a8d4 50%,
    #2a8bb8 60%,
    #1d6f9f 72%,
    #145374 85%,
    #0c2d48 100%
  );
  background-size: 300% 300%;
  animation: drift 35s ease infinite;
  min-height: 100vh;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Suppress all native video controls and play overlays */
video::-webkit-media-controls,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-overlay-play-button,
video::-webkit-media-controls-enclosure {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
}
video::-moz-media-controls { display: none !important; }
video {
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
  object-fit: cover;
  /* GPU compositing for smooth mobile rendering */
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  /* Transparent poster — no paused appearance */
  background: transparent;
}
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0c2d48; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 3px; }
::selection { background: #7ecbf0; color: #0c2d48; }

/* ============================================
   LOADING SCREEN — video background
   ============================================ */
#loading-screen {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: #0c2d48;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Video behind everything */
.load-video-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.load-video { width: 100%; height: 100%; object-fit: cover; }
/* Use clip-path not display:none — iOS won't autoplay display:none videos */
.load-video--desktop { position: absolute; inset: 0; }
.load-video--mobile { position: absolute; inset: 0; clip-path: inset(100%); height: 0; overflow: hidden; }
@media (max-width: 768px) {
  .load-video--desktop { clip-path: inset(100%); height: 0; overflow: hidden; }
  .load-video--mobile { clip-path: none; height: 100%; overflow: visible; }
}

/* Dark overlay for readability */
.load-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(12, 45, 72, 0.45);
}

/* UI sits above */
.load-ui { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

.load-btn {
  font-family: var(--fd);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 48px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 60px;
  color: #fff;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s var(--ease);
}
.load-btn:hover, .load-btn:focus-visible {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  transform: scale(1.03);
}
.load-btn:focus-visible { outline: 2px solid #7ecbf0; outline-offset: 4px; }
.load-btn.loading-active { pointer-events: none; opacity: 0.7; }

.progress-wrap {
  width: min(320px, 70vw); margin-top: 32px;
  opacity: 0; transform: translateY(10px);
  transition: all 0.5s var(--ease);
}
.progress-wrap.visible { opacity: 1; transform: translateY(0); }

.progress-track { width: 100%; height: 3px; background: rgba(255,255,255,0.12); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #7ecbf0, #fff); border-radius: 2px; transition: width 0.15s linear; }
.progress-pct { font-family: var(--fm); font-size: 11px; color: var(--t-dim); text-align: center; margin-top: 12px; letter-spacing: 0.1em; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px clamp(20px, 4vw, 40px);
  display: flex; align-items: center; gap: 8px;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(12, 45, 72, 0.8);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  font-family: var(--fd); font-weight: 700; font-size: 20px;
  letter-spacing: 0.08em; margin-right: auto;
  color: #fff; display: flex; align-items: center; gap: 10px;
}
/* Use favicon image (blue bg version) as header logo */
.nav-logo-img { width: 34px; height: 34px; border-radius: 9px; object-fit: cover; }

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-link {
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  padding: 8px 16px; border-radius: 8px;
  transition: all 0.3s var(--ease); white-space: nowrap;
  color: var(--t-sub);
}
.nav-link:hover, .nav-link:focus-visible { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link:focus-visible { outline: 2px solid #7ecbf0; outline-offset: 2px; }
.nav-link--accent { color: #fff; border: 1px solid rgba(126,203,240,0.25); background: rgba(126,203,240,0.08); }
.nav-link--accent:hover { background: rgba(126,203,240,0.15); color: #fff; }

.nav-toggle {
  display: none; width: 36px; height: 36px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px; z-index: 1001;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 1px; transition: all 0.3s var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: min(300px, 80vw); height: 100vh; height: 100dvh;
    flex-direction: column; align-items: stretch;
    padding: 100px 24px 40px;
    background: rgba(12, 45, 72, 0.95);
    backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid rgba(255,255,255,0.08);
    transition: right 0.4s var(--ease); gap: 4px;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 15px; padding: 14px 16px; }
}

/* ============================================
   HERO — pinned scroll
   ============================================ */
.hero-pin-container { position: relative; height: 200vh; height: 200dvh; }
.hero-pin-sticky { position: sticky; top: 0; width: 100%; height: 100vh; height: 100dvh; overflow: hidden; z-index: 1; }

.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-video--desktop { position: absolute; inset: 0; }
.hero-video--mobile { position: absolute; inset: 0; clip-path: inset(100%); height: 0; overflow: hidden; }
@media (max-width: 768px) { .hero-video--desktop { clip-path: inset(100%); height: 0; overflow: hidden; } .hero-video--mobile { clip-path: none; height: 100%; overflow: visible; } }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(12,45,72,0.25) 0%, rgba(12,45,72,0.08) 35%,
    rgba(12,45,72,0.35) 75%, rgba(12,45,72,0.80) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}

.hero-title {
  font-family: var(--fd); font-size: clamp(40px, 8vw, 80px); font-weight: 800;
  letter-spacing: 0.06em; line-height: 1.1; color: #fff;
  opacity: 0; transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.hero-title.revealed { opacity: 1; transform: translateY(0); }

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px); color: var(--t-sub);
  margin-top: 20px; line-height: 1.7; max-width: 560px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s var(--ease) 0.3s, transform 1s var(--ease) 0.3s;
}
.hero-subtitle.revealed { opacity: 1; transform: translateY(0); }

.hero-countdown-wrap {
  margin-top: 48px; opacity: 0; transform: translateY(20px);
  transition: opacity 1s var(--ease) 0.6s, transform 1s var(--ease) 0.6s;
}
.hero-countdown-wrap.revealed { opacity: 1; transform: translateY(0); }

.countdown-label { font-family: var(--fm); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.countdown { display: flex; gap: 12px; justify-content: center; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; min-width: 64px; }
.countdown-num {
  font-family: var(--fd); font-size: clamp(28px, 5vw, 44px); font-weight: 700; color: #fff; line-height: 1;
  background: var(--glass); border: 1px solid var(--glass-b); border-radius: 12px;
  padding: 12px 16px; min-width: 60px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.countdown-txt { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--t-dim); margin-top: 8px; }
.countdown-sep { font-family: var(--fd); font-size: clamp(24px, 4vw, 36px); color: var(--t-dim); align-self: flex-start; padding-top: 14px; }

.scroll-indicator {
  position: absolute; bottom: 32px;
  left: 0; right: 0;
  width: fit-content; margin-left: auto; margin-right: auto;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 1s var(--ease) 0.8s forwards;
}
.scroll-indicator span { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--t-dim); }
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 1.5px solid var(--t-dim); border-bottom: 1.5px solid var(--t-dim);
  transform: rotate(45deg); animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }

/* ============================================
   SHARED SECTIONS — all transparent over body gradient
   ============================================ */
.section { position: relative; padding: var(--pad) 0; }
.container { width: var(--cw); margin: 0 auto; }

.section-label { font-family: var(--fm); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.section-title { font-family: var(--fd); font-size: clamp(32px, 5vw, 56px); font-weight: 700; letter-spacing: 0.04em; color: #fff; line-height: 1.15; }
.section-subtitle { font-size: clamp(14px, 1.5vw, 16px); color: var(--t-sub); margin-top: 12px; line-height: 1.7; max-width: 600px; }

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

.roadmap::after, .tokenomics::after, .utility::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: min(600px, 60vw); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

/* ============================================
   ROADMAP
   ============================================ */
.roadmap { background: transparent; overflow: hidden; }
.roadmap-header { text-align: center; margin-bottom: 60px; }
.roadmap-header .section-subtitle { margin-left: auto; margin-right: auto; text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; }

.timeline { position: relative; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 0 20px; }
/* Connector line — z-index: 0 so dots (z-index:1) sit above */
.timeline::before { content: ''; position: absolute; top: 40px; left: 60px; right: 60px; height: 2px; background: linear-gradient(90deg, #7ecbf0, rgba(126,203,240,0.2), #7ecbf0); z-index: 0; }

.timeline-item { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; cursor: pointer; }
.timeline-dot {
  width: 80px; height: 80px; border-radius: 16px;
  background: var(--glass); border: 1px solid var(--glass-b);
  backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-weight: 700; font-size: 14px; letter-spacing: 0.05em; color: #fff;
  transition: all 0.4s var(--ease); position: relative;
}
.timeline-dot::after {
  content: ''; position: absolute; inset: -2px; border-radius: 18px;
  background: linear-gradient(135deg, #7ecbf0, transparent, #5ab8e0);
  opacity: 0; z-index: -1; transition: opacity 0.4s;
}
.timeline-item:hover .timeline-dot::after, .timeline-item.active .timeline-dot::after { opacity: 1; }
.timeline-item:hover .timeline-dot, .timeline-item.active .timeline-dot { transform: scale(1.08); border-color: transparent; }
.timeline-quarter { font-family: var(--fm); font-size: 12px; color: var(--t-sub); margin-top: 12px; letter-spacing: 0.08em; }

.roadmap-detail { margin-top: 48px; min-height: 200px; }
.roadmap-card {
  display: none; background: var(--glass); border: 1px solid var(--glass-b);
  border-radius: 20px; padding: clamp(28px, 4vw, 48px);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  animation: cardReveal 0.5s var(--ease);
}
.roadmap-card.active { display: block; }
.roadmap-card-title { font-family: var(--fd); font-size: clamp(20px, 3vw, 28px); font-weight: 700; color: #fff; margin-bottom: 8px; }
.roadmap-card-sub { font-family: var(--fm); font-size: 12px; color: #fff; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.roadmap-card p { font-size: clamp(14px, 1.4vw, 15.5px); color: var(--t-sub); line-height: 1.8; margin-bottom: 16px; }
.roadmap-card p:last-child { margin-bottom: 0; }
@keyframes cardReveal { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

/* Desktop subtitle / mobile subtitle toggle */
.section-subtitle--mobile { display: none; }
@media (max-width: 768px) {
  .section-subtitle--desktop { display: none; }
  .section-subtitle--mobile { display: block; margin-left: auto; margin-right: auto; }
}

/* Desktop timeline stays as-is */
.timeline--desktop { display: flex; }

/* Mobile: hide desktop timeline, show arrow nav */
.rm-mobile { display: none; }

@media (max-width: 768px) {
  .timeline--desktop { display: none !important; }
  .rm-mobile { display: block; }

  .rm-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
  }

  .rm-arrow {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--glass);
    border: 1px solid var(--glass-b);
    border-radius: 14px;
    color: #fff;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .rm-arrow:active { transform: scale(0.92); }
  .rm-arrow:hover { background: var(--glass-h); border-color: var(--glass-bh); }

  .rm-mobile-dot {
    width: 90px; height: 90px;
    border-radius: 18px;
    background: var(--glass);
    border: 1px solid var(--glass-b);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 4px;
    transition: all 0.3s var(--ease);
    position: relative;
  }
  .rm-mobile-dot::after {
    content: ''; position: absolute; inset: -2px; border-radius: 20px;
    background: linear-gradient(135deg, #7ecbf0, transparent, #5ab8e0);
    opacity: 1; z-index: -1;
  }

  .rm-mobile-q {
    font-family: var(--fd); font-weight: 700; font-size: 20px; color: #fff;
    letter-spacing: 0.05em; line-height: 1;
  }
  .rm-mobile-year {
    font-family: var(--fm); font-size: 11px; color: var(--t-sub);
    letter-spacing: 0.08em;
  }

  /* Step indicators */
  .rm-mobile-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .rm-ind {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s var(--ease);
  }
  .rm-ind.active {
    background: #7ecbf0;
    width: 24px;
    border-radius: 4px;
  }

  .roadmap-detail { margin-top: 24px; }
}

/* ============================================
   TOKENOMICS
   ============================================ */
.tokenomics { background: transparent; }
.tokenomics-header { text-align: center; margin-bottom: 60px; }
.token-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 768px) { .token-grid { grid-template-columns: 1fr; } }

.token-card {
  background: var(--glass); border: 1px solid var(--glass-b); border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
  backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  transition: border-color 0.3s;
}
.token-card:hover { border-color: var(--glass-bh); }
.token-card-title { font-family: var(--fd); font-size: clamp(18px, 2.5vw, 22px); font-weight: 700; color: #fff; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.token-card-title .icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(126,203,240,0.12); display: flex; align-items: center; justify-content: center; color: #fff; }

.supply-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); gap: 16px; }
.supply-row:last-child { border-bottom: none; }
.supply-row .label { font-size: 14px; color: var(--t-sub); line-height: 1.6; flex: 1; }
.supply-row .value { font-family: var(--fd); font-weight: 700; font-size: 15px; color: #fff; text-align: right; white-space: nowrap; }

.supply-chart { margin-top: 32px; }
.chart-bar-wrap { margin-bottom: 20px; }
.chart-bar-label { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 13px; }
.chart-bar-label .name { color: var(--t-sub); }
.chart-bar-label .pct { color: #fff; font-family: var(--fm); font-size: 12px; }
.chart-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.chart-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #7ecbf0, #b8e6ff); width: 0%; transition: width 1.2s var(--ease); }

.mint-description { font-size: clamp(14px, 1.4vw, 15.5px); color: var(--t-sub); line-height: 1.8; margin-bottom: 28px; }
.mint-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.mint-info-item { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mint-info-item:nth-child(odd) { padding-right: 20px; }
.mint-info-item:nth-child(even) { padding-left: 20px; border-left: 1px solid rgba(255,255,255,0.08); }
.mint-info-item:nth-last-child(-n+2) { border-bottom: none; }
.mint-info-label { display: block; font-size: 11px; color: var(--t-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; font-family: var(--fm); }
.mint-info-value { display: block; font-size: 14px; color: #fff; font-weight: 500; line-height: 1.5; }
.mint-info-value--highlight { font-family: var(--fd); font-size: 18px; font-weight: 700; color: #fff; }

/* Smaller secondary card (airdrop details) */
.token-card--sm { padding: clamp(20px, 3vw, 32px); }
.token-card--sm .mint-description { margin-bottom: 0; }
@media (max-width: 600px) {
  .mint-info-grid { grid-template-columns: 1fr; }
  .mint-info-item:nth-child(even) { padding-left: 0; border-left: none; }
  .mint-info-item:nth-child(odd) { padding-right: 0; }
  .mint-info-item:nth-last-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ============================================
   UTILITY
   ============================================ */
.utility { background: transparent; position: relative; }
.utility-header { text-align: center; margin-bottom: 16px; }
.utility-intro { text-align: center; max-width: 640px; margin: 0 auto 56px; font-size: clamp(14px, 1.5vw, 16px); color: var(--t-sub); line-height: 1.8; }

.util-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.util-card {
  background: var(--glass); border: 1px solid var(--glass-b); border-radius: 16px;
  padding: clamp(24px, 3vw, 32px);
  backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  transition: all 0.4s var(--ease); display: flex; flex-direction: column;
}
.util-card:hover { border-color: var(--glass-bh); transform: translateY(-4px); background: var(--glass-h); }
.util-card--wide { grid-column: span 2; }
@media (max-width: 768px) { .util-grid { grid-template-columns: 1fr; gap: 12px; } .util-card--wide { grid-column: span 1; } }

.util-cmd { font-family: var(--fm); font-size: 13px; color: #fff; background: rgba(126,203,240,0.1); padding: 6px 14px; border-radius: 8px; display: inline-block; margin-bottom: 14px; width: fit-content; }
.util-card-title { font-family: var(--fd); font-size: clamp(16px, 2vw, 20px); font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.util-card p { font-size: clamp(13px, 1.3vw, 14.5px); color: var(--t-sub); line-height: 1.7; }

.access-section { margin-top: 80px; text-align: center; }
.access-title { font-family: var(--fd); font-size: clamp(24px, 4vw, 36px); font-weight: 700; color: #fff; margin-bottom: 40px; }
.access-steps { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.access-step {
  display: flex; align-items: center; gap: 14px;
  background: var(--glass); border: 1px solid var(--glass-b); border-radius: 14px;
  padding: 18px 24px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  flex: 1; min-width: 220px; max-width: 280px; text-align: left;
}
.access-step-num { font-family: var(--fd); font-weight: 800; font-size: 20px; color: #fff; min-width: 28px; }
.access-step-text { font-size: 14px; color: var(--t-sub); line-height: 1.5; }
@media (max-width: 768px) { .access-steps { flex-direction: column; align-items: center; } .access-step { max-width: 100%; width: 100%; } }

.access-closing { font-family: var(--fd); font-size: clamp(16px, 2vw, 20px); font-weight: 600; color: var(--t); margin-top: 24px; line-height: 1.6; }
.access-closing span { color: #fff; }

.btn-whitepaper {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 40px;
  font-family: var(--fd); font-weight: 600; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 16px 36px;
  background: rgba(126,203,240,0.12); border: 1px solid rgba(126,203,240,0.3);
  border-radius: 14px; color: #fff; transition: all 0.4s var(--ease);
}
.btn-whitepaper:hover { background: rgba(126,203,240,0.22); border-color: #fff; transform: translateY(-2px); }

/* ============================================
   CTA / FOOTER
   ============================================ */
.cta { background: transparent; text-align: center; padding: var(--pad) 0 80px; position: relative; }
.cta-title { font-family: var(--fd); font-size: clamp(28px, 5vw, 52px); font-weight: 800; color: #fff; letter-spacing: 0.04em; line-height: 1.15; margin-bottom: 48px; }
.cta-title span { color: #fff; }

.cta .countdown-wrap { margin-top: 0; margin-bottom: 48px; opacity: 1; transform: none; }
.cta .countdown-label { color: #fff; }

.social-links { display: flex; justify-content: center; gap: 16px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
  background: var(--glass); border: 1px solid var(--glass-b); border-radius: 14px;
  font-size: 14px; font-weight: 500; color: #fff;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.social-btn:hover { border-color: var(--glass-bh); background: var(--glass-h); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; }

.footer-bottom { margin-top: 80px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: var(--t-dim); letter-spacing: 0.05em; }

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

.util-grid.visible .util-card { opacity: 0; animation: fadeUp 0.6s var(--ease) forwards; }
.util-grid.visible .util-card:nth-child(1) { animation-delay: 0.05s; }
.util-grid.visible .util-card:nth-child(2) { animation-delay: 0.12s; }
.util-grid.visible .util-card:nth-child(3) { animation-delay: 0.19s; }
.util-grid.visible .util-card:nth-child(4) { animation-delay: 0.26s; }
.util-grid.visible .util-card:nth-child(5) { animation-delay: 0.33s; }
.util-grid.visible .util-card:nth-child(6) { animation-delay: 0.40s; }

@media (min-width: 769px) and (max-width: 1024px) {
  .util-grid { grid-template-columns: repeat(2, 1fr); }
  .util-card--wide { grid-column: span 2; }
  .timeline-dot { width: 68px; height: 68px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .hero-pin-container { height: auto !important; }
}
