/* Extracted full styles from index.html for reuse across all pages */

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

:root {
  --primary-blue: rgb(37, 80, 215);
  --dark-blue: rgb(25, 53, 143);
  --accent-light: rgb(173, 216, 255);
  --bg-color: rgb(26, 34, 52);
  --bg-gradient: linear-gradient(180deg,
    rgba(25, 53, 143, 0.85) 0%,
    rgba(25, 53, 143, 0.68) 15%,
    rgba(25, 53, 143, 0.34) 30%,
    rgba(25, 53, 143, 0.085) 50%,
    transparent 70%
  );
  --text-color: rgb(240, 240, 240);
  --header-bg: rgb(15, 35, 95);
  --header-text: rgb(255, 255, 255);
  --success-green: rgb(34, 197, 94);
  --error-red: rgb(239, 68, 68);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body.nav-open { overflow: hidden; }

.background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: var(--bg-color); }
.background::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%; background: var(--bg-gradient); z-index: -1; }

.header { position: fixed; top: 0; left: 0; width: 100%; padding: 15px 0; z-index: 100; background: var(--header-bg); backdrop-filter: blur(10px); display: flex; justify-content: center; }
.skip-link { position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); clip-path: inset(50%); white-space: nowrap; }
.skip-link:focus { left: 16px; top: 16px; width: auto; height: auto; padding: 10px 16px; clip: auto; clip-path: none; border-radius: 10px; background: var(--accent-light); color: #0f172a; text-decoration: none; font-weight: 600; box-shadow: 0 10px 25px rgba(0,0,0,0.25); }
.header-inner { width: 100%; max-width: 1200px; padding: 0 20px; display: grid; grid-template-columns: 1.6fr 3.4fr; align-items: center; gap: 32px; }
.logo-container { width: fit-content; animation: fadeInDown 1s ease-out; }
.logo-container svg * { fill: var(--header-text) !important; stroke: var(--header-text) !important; }
.header-inner .logo-container { justify-self: end; }

.nav-wrapper { display: flex; align-items: center; gap: 28px; justify-self: start; justify-content: flex-start; width: 100%; }
.nav-menu { display: flex; align-items: center; gap: 30px; justify-content: flex-start; }
.nav-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); color: var(--header-text); cursor: pointer; transition: background .2s ease, border-color .2s ease, transform .15s ease; }
.nav-toggle:hover { background: rgba(173,216,255,0.15); border-color: rgba(173,216,255,0.6); }
.nav-toggle:focus-visible { outline: 2px solid rgba(173,216,255,0.8); outline-offset: 2px; }
.nav-toggle:active { transform: scale(0.95); }
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: var(--header-text); margin: 0; border-radius: 999px; transition: transform .2s ease, opacity .2s ease, background .2s ease; }
.header.is-nav-open .nav-toggle { background: rgba(173,216,255,0.18); border-color: rgba(173,216,255,0.6); }
.header.is-nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(5px) rotate(45deg); background: #0f172a; }
.header.is-nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.header.is-nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-5px) rotate(-45deg); background: #0f172a; }
.nav-link { color: var(--header-text); text-decoration: none; font-size: 16px; font-weight: 500; padding: 10px 15px; border-radius: 5px; transition: all 0.3s ease; }
.nav-link:hover { background: rgba(255, 255, 255, 0.1); }
.nav-link.is-active { background: rgba(255, 255, 255, 0.18); }

.container { max-width: 1200px; margin: 0 auto; padding: 110px 20px 20px; position: relative; z-index: 1; }
.home .container { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; text-align: center; }

.logo-container svg { width: 100%; max-width: 240px; height: auto; transition: transform 0.3s ease; }
.logo-container:hover svg { transform: scale(1.05); }

.hero-content { animation: fadeInUp 1s ease-out 0.3s both; margin-bottom: 50px; }
h1 { font-size: clamp(40px, 6vw, 80px); font-weight: 800; margin-bottom: 25px; color: var(--accent-light); line-height: 1.2; padding-bottom: 8px; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); letter-spacing: -0.5px; }
.tagline { font-size: clamp(18px, 2.5vw, 24px); color: var(--text-color); opacity: 0.8; margin-bottom: 40px; font-weight: 400; letter-spacing: 0.5px; }

.access-buttons { display: flex; gap: 20px; margin-bottom: 80px; animation: fadeInUp 1s ease-out 0.6s both; flex-wrap: wrap; justify-content: center; }
.access-btn { padding: 18px 40px; border-radius: 50px; font-size: 18px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 12px; min-width: 200px; justify-content: center; border: 2px solid transparent; }
.btn-download,
.btn-browser { background: transparent; color: var(--text-color); border-color: var(--accent-light); box-shadow: inset 0 0 0 0 rgba(173,216,255,0.4); }
.btn-download:hover,
.btn-browser:hover { background: var(--accent-light); color: #0f172a; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(173, 216, 255, 0.4); }

.differentiators { width: 100%; max-width: 1000px; margin-bottom: 60px; animation: fadeInUp 1s ease-out 0.9s both; }
.differentiators h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 40px; color: var(--accent-light); font-weight: 600; }
.differentiators-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.differentiator { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(37, 80, 215, 0.2); padding: 30px 25px; border-radius: 15px; transition: all 0.3s ease; text-align: left; }
.differentiator:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.05); border-color: rgba(37, 80, 215, 0.5); box-shadow: 0 10px 30px rgba(37, 80, 215, 0.2); }
.differentiator h3 { font-size: 20px; margin-bottom: 15px; color: var(--accent-light); font-weight: 600; }
.differentiator p { font-size: 16px; color: var(--text-color); opacity: 0.8; line-height: 1.6; }

.bottom-section { width: 100%; max-width: 1200px; margin-top: 40px; margin-left: auto; margin-right: auto; animation: fadeInUp 1s ease-out 1.2s both; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; align-items: start; }
.bottom-section--single { grid-template-columns: 1fr; justify-items: center; }
.social-section { text-align: center; }
.social-content { text-align: center; }
.social-section h2 { font-size: 20px; margin-bottom: 25px; color: var(--text-color); font-weight: 600; }
.social-links { display: flex; flex-direction: row; gap: 20px; align-items: center; justify-content: center; }
.contact-section { text-align: center; }
.contact-section h3 { font-size: 20px; margin-bottom: 20px; color: var(--text-color); font-weight: 600; text-align: center; }
.email-contact { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--text-color); text-decoration: none; font-size: 16px; font-weight: 500; transition: all 0.3s ease; padding: 12px 20px; border-radius: 8px; }
.email-contact:hover { color: var(--accent-light); background: rgba(173, 216, 255, 0.08); transform: translateY(-2px); }
.email-icon { width: 20px; height: 20px; fill: currentColor; transition: all 0.3s ease; }

.legal-section { text-align: left; }
.legal-section h3 { font-size: 20px; margin-bottom: 16px; color: var(--text-color); font-weight: 600; text-align: left; }
.legal-links { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.legal-link { display: flex; align-items: center; justify-content: flex-start; color: var(--text-color); text-decoration: none; font-size: 16px; font-weight: 500; transition: all 0.3s ease; padding: 4px 0; border-radius: 4px; width: fit-content; }
.legal-link:hover { color: var(--accent-light); background: rgba(173, 216, 255, 0.08); transform: translateY(-1px); }

.social-link { display: inline-flex; align-items: center; justify-content: center; color: var(--text-color); text-decoration: none; transition: all 0.3s ease; width: 40px; height: 40px; border-radius: 50%; background: rgba(173, 216, 255, 0.12); border: 1px solid rgba(173, 216, 255, 0.2); }
.social-link:hover { color: var(--accent-light); background: rgba(173, 216, 255, 0.18); transform: scale(1.1); }
.social-link.coming-soon { opacity: 0.6; cursor: not-allowed; }
.social-link.coming-soon:hover { transform: none; color: var(--text-color); background: rgba(173, 216, 255, 0.12); border: 1px solid rgba(173, 216, 255, 0.2); }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; line-height: 1; transition: all 0.3s ease; }
svg.social-icon { fill: currentColor; }
i.social-icon { font-size: 20px; }
.future-content { display: none; }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .header { padding: 12px 0; }
  .header-inner { padding: 0 16px; grid-template-columns: 1fr auto; }
  .header-inner .logo-container { justify-self: start; }
  .nav-wrapper { gap: 12px; justify-content: flex-end; width: auto; }
  .nav-toggle { display: inline-flex; }
  .nav-menu { position: absolute; top: calc(100% + 10px); left: 16px; right: 16px; display: grid; gap: 6px; padding: 16px; border-radius: 12px; background: rgba(10, 19, 40, 0.96); border: 1px solid rgba(173,216,255,0.18); box-shadow: 0 18px 48px rgba(0,0,0,0.45); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .25s ease, transform .25s ease; }
  .header.is-nav-open .nav-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-menu .nav-link { width: 100%; padding: 12px 14px; border-radius: 8px; text-align: left; background: transparent; display: flex; align-items: center; justify-content: flex-start; }
  .nav-menu .nav-link:hover { background: rgba(173, 216, 255, 0.12); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 14px; }
  .nav-menu { left: 14px; right: 14px; }
  .logo-container svg { max-width: 180px; }
  .container { padding: 120px 20px 20px; }
  .access-buttons { flex-direction: column; align-items: center; }
  .access-btn { width: 100%; max-width: 300px; }
  .differentiators-grid { grid-template-columns: 1fr; }
  .bottom-section { grid-template-columns: 1fr; gap: 40px; }
  .legal-links { flex-direction: row; justify-content: center; align-items: center; flex-wrap: wrap; gap: 12px; }
  .social-content { text-align: center; }
}

/* Generic page sections used on subpages */
.page-intro { text-align: left; margin-top: 16px; margin-bottom: 40px; }
.content { max-width: 900px; margin: 0 auto; display: grid; gap: 16px; text-align: left; }

/* Anchor offset for fixed header */
.anchor-section { scroll-margin-top: 100px; }

/* Lists: ensure bullets and numbers align consistently */
.content ul, .content ol {
  list-style-position: outside;
  padding-left: 1.25rem;
  margin: 0 0 1rem 1.25rem;
}
.content ul { list-style-type: disc; }
.content ol { list-style-type: decimal; }
.content li { margin: 0.25rem 0; }
.content li ul, .content li ol { margin-top: 0.5rem; }

/* Gallery v2 (thumbnails + modal lightbox) */
.gallery-section { width: 100%; max-width: 1100px; margin: 40px auto 32px; padding: 0 20px; }
.gallery-header { text-align: center; margin-bottom: 16px; }
.thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.thumb { position: relative; border-radius: 10px; overflow: hidden; background: rgba(255,255,255,0.03); border: 1px solid rgba(173,216,255,0.18); cursor: pointer; }
.thumb::after { content: ''; display: block; padding-top: 62%; }
.thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease; }
.thumb:hover img { transform: scale(1.03); }
.thumb-title { position: absolute; left: 8px; bottom: 8px; right: 8px; font-size: 12px; color: #fff; background: rgba(0,0,0,0.6); padding: 4px 8px; border-radius: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.thumbs-empty { padding: 24px; text-align: center; color: var(--text-color); opacity: 0.8; border: 1px dashed rgba(173,216,255,0.2); border-radius: 10px; }

.lightbox { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,0.7); z-index: 9999; }
.lightbox.open { display: flex; }
.lightbox-content { position: relative; max-width: 95vw; max-height: 90vh; width: min(1200px, 95vw); background: rgba(0,0,0,0.85); border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.5); }
.lightbox-viewport { width: 100%; height: 100%; display: grid; place-items: center; background: #000; }
.lightbox-viewport img { max-width: 100%; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.85); border: none; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 8px; }
.lightbox-btn { background: rgba(255,255,255,0.85); border: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; }
.lightbox-caption { color: #fff; font-size: 13px; padding: 10px 14px; background: rgba(0,0,0,0.5); }

/* --- Road Map Timeline --- */
.roadmap-section { position: relative; width: 100%; max-width: 1000px; margin: 32px auto; padding: 24px 20px; }
.roadmap-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100vw; height: 100%; background: rgba(173,216,255,0.08); z-index: 0; }
.roadmap-section h2 { position: relative; z-index: 1; text-align: center; margin-bottom: 16px; }
.roadmap { position: relative; z-index: 1; }
.roadmap { display: grid; gap: 16px; }
.roadmap-track { position: relative; display: flex; gap: 12px; align-items: flex-end; justify-content: center; padding: 12px 140px 56px 0; overflow-x: auto; }
.roadmap-track::before { content: ''; position: absolute; left: var(--line-start, 0px); bottom: var(--line-offset, 10px); width: var(--line-length, 100%); height: 2px; background: rgba(173,216,255,0.18); }
.roadmap-track::after { content: ''; position: absolute; left: calc(var(--line-start, 0px) + var(--line-length, 0px)); bottom: var(--line-offset, 10px); transform: translate(-1px, 50%); width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 10px solid rgba(173,216,255,0.6); }
.roadmap-node { position: relative; background: transparent; border: none; display: inline-flex; flex-direction: column; align-items: center; gap: 8px; padding: 0 10px 22px; cursor: pointer; border-radius: 12px; z-index: 1; color: var(--text-color); font-weight: 600; width: min(240px, 42vw); }
.node-dot { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 14px; height: 14px; border-radius: 50%; background: #0f172a; border: 3px solid rgba(173,216,255,0.35); box-shadow: 0 0 0 2px #0f172a; }
.roadmap-node.is-active .node-dot { border-color: var(--primary-blue); background: var(--primary-blue); box-shadow: 0 0 0 2px rgba(37,80,215,0.15); }
.roadmap-node .node-label { white-space: normal; overflow-wrap: anywhere; word-break: break-word; text-align: center; font-size: 14px; line-height: 1.35; }
.roadmap-node .node-time { position: absolute; left: 50%; transform: translateX(-50%); bottom: -26px; font-size: 12px; opacity: .7; white-space: nowrap; }
.roadmap-node.is-active .node-label { color: var(--primary-blue); }
.roadmap-panels { background: rgba(255,255,255,0.03); border: 1px solid rgba(173,216,255,0.18); border-radius: 12px; padding: 16px; }
.roadmap-panel { display: grid; gap: 8px; }
.roadmap-panel[hidden] { display: none; }
.roadmap-future { position: absolute; left: calc(var(--line-start, 0px) + var(--line-length, 0px) + 12px); bottom: calc(var(--line-offset, 10px) + 1px); font-size: 12px; color: var(--text-color); opacity: .7; white-space: nowrap; }

@media (max-width: 640px) {
  .roadmap-section { padding: 24px 16px; }
  .roadmap { gap: 20px; }
  .roadmap-track { flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 20px; padding: 8px 0 12px 28px; overflow: visible; }
  .roadmap-track::before { left: 11px; top: 16px; bottom: 24px; width: 2px; height: auto; transform: none; }
  .roadmap-track::after { display: none; }
  .roadmap-node { width: 100%; align-items: flex-start; text-align: left; padding: 12px 12px 12px 24px; flex-direction: column; gap: 4px; }
  .roadmap-node .node-label { text-align: left; font-size: 15px; }
  .roadmap-node .node-time { position: static; transform: none; margin-top: 2px; font-size: 13px; }
  .node-dot { top: 18px; left: -24px; bottom: auto; transform: none; }
  .roadmap-panels { padding: 14px; }
  .roadmap-future { position: static; font-size: 13px; opacity: .75; padding-left: 4px; }
}

/* --- FAQ Section --- */
.faq-section { width: 100%; max-width: 900px; margin: 40px auto; padding: 0 20px; text-align: left; }
.faq-section h2 { text-align: center; margin-bottom: 16px; }
.faq-list { display: grid; gap: 10px; }
details.faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(173,216,255,0.18); border-radius: 10px; padding: 0; overflow: hidden; }
summary.faq-summary { cursor: pointer; list-style: none; padding: 14px 16px; font-weight: 600; display: flex; align-items: center; justify-content: space-between; }
summary.faq-summary::-webkit-details-marker { display: none; }
.faq-chevron { transition: transform .2s ease; margin-left: 12px; opacity: .7; }
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 16px 16px; color: var(--text-color); opacity: 0.9; font-family: inherit; font-size: 1.0625rem; line-height: 1.6; }

/* --- Contact Support Section --- */
.contact-form-section { width: 100%; max-width: 900px; margin: 40px auto 20px; padding: 0 20px; }
.contact-form-section h2 { text-align: center; margin-bottom: 10px; }
.contact-form-sub { text-align: center; opacity: 0.85; margin-bottom: 24px; }
.contact-support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.contact-support-card { position: relative; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px; padding: 22px 20px; border-radius: 16px; text-decoration: none; color: inherit; background: linear-gradient(135deg, rgba(37,80,215,0.22) 0%, rgba(15,35,95,0.4) 100%); border: 1px solid rgba(173,216,255,0.18); box-shadow: 0 12px 30px rgba(0,0,0,0.25); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease; }
.contact-support-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.32); border-color: rgba(173,216,255,0.35); background: linear-gradient(135deg, rgba(61,121,255,0.3) 0%, rgba(15,35,95,0.55) 100%); }
.contact-support-icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: rgba(15,23,42,0.8); border: 1px solid rgba(173,216,255,0.25); color: var(--accent-light); }
.contact-support-icon svg { width: 26px; height: 26px; fill: currentColor; }
.contact-support-icon i { font-size: 26px; line-height: 1; }
.contact-support-content { display: grid; gap: 4px; }
.contact-support-content h3 { margin: 0; font-size: 18px; font-weight: 600; color: var(--accent-light); }
.contact-support-content p { margin: 0; color: var(--text-color); opacity: 0.88; font-size: 15px; }
@media (max-width: 520px) {
  .contact-support-card { grid-template-columns: auto 1fr; }
}

/* --- Toast Notifications --- */
.toast-container { position: fixed; right: 16px; bottom: 16px; display: grid; gap: 10px; z-index: 10000; }
.toast { display: grid; grid-auto-flow: column; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 10px; color: #fff; background: rgba(15,23,42,0.95); box-shadow: 0 10px 24px rgba(0,0,0,0.2); border-left: 4px solid var(--primary-blue); opacity: 0; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast-success { border-left-color: var(--success-green); }
.toast-error { border-left-color: var(--error-red); background: rgba(127,29,29,0.95); }
.toast-close { appearance: none; border: none; background: transparent; color: #fff; opacity: .8; cursor: pointer; padding: 4px; line-height: 0; }
.toast-close:hover { opacity: 1; }
