:root {
  --bg: #03060b;
  --surface: #08111d;
  --surface-2: #0d1828;
  --primary: #1f8fff;
  --primary-glow: #73c7ff;
  --premium: #d8b56d;
  --premium-light: #f5d58a;
  --success: #00d084;
  --text: #f5f7fa;
  --muted: #8a94a6;
  --border: rgba(255, 255, 255, 0.09);
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.page-glow {
  position: fixed;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(31, 143, 255, 0.25),
      transparent 28%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(216, 181, 109, 0.14),
      transparent 26%
    );
  z-index: -2;
}
.container {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}
.section {
  padding: 105px 0;
  position: relative;
}
.section.alt {
  background: linear-gradient(
    180deg,
    rgba(8, 17, 29, 0.62),
    rgba(3, 6, 11, 0.2)
  );
}
.eyebrow {
  color: var(--premium-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}
h1,
h2,
h3 {
  line-height: 1;
  margin: 0 0 22px;
}
h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.03em;
}
h1 {
  font-size: clamp(3rem, 8vw, 7.6rem);
}
h1 span {
  display: block;
  color: var(--premium-light);
  text-shadow: 0 0 26px rgba(216, 181, 109, 0.25);
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}
h3 {
  font-size: 1.45rem;
}
.muted,
.section-copy {
  color: var(--muted);
}
.navbar {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(3, 6, 11, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.brand img {
  width: 34px;
  height: 34px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: #dce6f7;
  font-size: 0.9rem;
}
.nav-links a:hover,
.nav-cta {
  background: rgba(255, 255, 255, 0.09);
}
.nav-toggle {
  display: none;
}
.hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  justify-items: start;
  overflow: hidden;
  padding: 0 0 22px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.92;
  filter: contrast(1.1) saturate(1.1) brightness(1.12);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 6, 11, 0.48) 0%,
      rgba(3, 6, 11, 0.12) 34%,
      rgba(3, 6, 11, 0.02) 66%,
      rgba(3, 6, 11, 0.24) 100%
    ),
    linear-gradient(
      0deg,
      rgba(3, 6, 11, 0.82) 0%,
      rgba(3, 6, 11, 0.18) 30%,
      rgba(3, 6, 11, 0.12) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1060px, calc(100% - 36px));
  padding: 16px 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(3, 6, 11, 0.72),
    rgba(3, 6, 11, 0.36)
  );
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}
.hero .eyebrow {
  margin: 0 0 8px;
  font-size: 0.68rem;
}
.hero h1 {
  font-size: clamp(2rem, 3.15vw, 3.25rem);
  line-height: 0.92;
  margin-bottom: 10px;
  max-width: 980px;
}
.hero h1 span {
  font-size: 0.78em;
  display: inline;
  margin-right: 0.16em;
}
.hero-copy {
  font-size: 0.95rem;
  color: #dce6f7;
  max-width: 620px;
  margin: 0 0 12px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.hero .scroll-cue {
  display: none;
}
.btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 13px 19px;
  font-weight: 800;
  cursor: pointer;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn.primary {
  background: linear-gradient(135deg, var(--primary), #0d65d9);
  border-color: rgba(115, 199, 255, 0.45);
  box-shadow: 0 0 30px rgba(31, 143, 255, 0.23);
}
.btn.ghost {
  background: rgba(255, 255, 255, 0.07);
}
.btn.big {
  padding: 16px 26px;
}
.btn.icon {
  font-size: 0.86rem;
}
.scroll-cue {
  display: inline-block;
  margin-top: 40px;
  color: var(--muted);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.card,
.risk-grid article {
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}
.card {
  padding: 24px;
}
.card b {
  display: block;
  margin-bottom: 8px;
}
.card span,
.card li {
  color: #c4cfdf;
}
.card-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.news-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.card.large {
  font-size: 1.06rem;
}
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.founders figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  background: var(--surface);
}
.founders img {
  height: 310px;
  width: 100%;
  object-fit: cover;
}
.founders figcaption {
  padding: 13px;
  color: var(--premium-light);
  font-weight: 800;
}
.market-cards {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.market-cards span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
}
#tv-ticker {
  min-height: 74px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  overflow: hidden;
}
.widget-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}
.dashboard {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
}
.rounded-media,
.dashboard img {
  border-radius: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}
.check-list li {
  margin: 9px 0;
}
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.package {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.package.featured {
  border-color: rgba(216, 181, 109, 0.5);
  transform: translateY(-10px);
}
.price {
  font-family: "Share Tech Mono", monospace;
  font-size: 2rem;
  color: var(--premium-light);
}
.package ul {
  padding-left: 18px;
  margin: 0;
  min-height: 148px;
}
.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 999px;
  background: rgba(216, 181, 109, 0.18);
  color: var(--premium-light);
  padding: 6px 10px;
  font-size: 0.78rem;
}
.risk-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.risk-grid article {
  padding: 20px;
  font-weight: 800;
}
.risk-text {
  color: #d6dfed;
  background: rgba(216, 181, 109, 0.08);
  border: 1px solid rgba(216, 181, 109, 0.25);
  border-radius: 18px;
  padding: 14px;
}
.cta-section {
  text-align: center;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(31, 143, 255, 0.22),
    transparent 35%
  );
}
.footer {
  border-top: 1px solid var(--border);
  padding: 30px 0;
  color: var(--muted);
  background: #02050a;
}
.footer .container {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}
.footer a {
  margin-left: 14px;
  color: #dce6f7;
}
.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal:not(.visible) {
  opacity: 1;
  transform: none;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.chatbot-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(115, 199, 255, 0.4);
  background: linear-gradient(135deg, var(--primary), #083e99);
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 20px 60px rgba(31, 143, 255, 0.35);
  cursor: pointer;
}
.chatbot {
  position: fixed;
  right: 22px;
  bottom: 94px;
  z-index: 70;
  width: min(360px, calc(100vw - 36px));
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(5, 10, 18, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  display: none;
}
.chatbot.open {
  display: block;
}
.chatbot header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.chatbot-messages {
  height: 280px;
  overflow: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.msg {
  padding: 10px 12px;
  border-radius: 16px;
  max-width: 88%;
  background: rgba(255, 255, 255, 0.08);
}
.msg.user {
  align-self: flex-end;
  background: rgba(31, 143, 255, 0.25);
}
.chatbot form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border);
}
.chatbot input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #07101b;
  color: white;
  padding: 11px 12px;
}
.chatbot button {
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  padding: 0 14px;
  font-weight: 800;
}
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    background: transparent;
    color: white;
    border: 0;
    font-size: 1.4rem;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(3, 6, 11, 0.96);
    padding: 10px;
  }
  .nav-links.open {
    display: flex;
  }
  .split,
  .news-layout,
  .dashboard,
  .packages {
    grid-template-columns: 1fr;
  }
  .card-grid,
  .founders,
  .risk-grid {
    grid-template-columns: 1fr;
  }
  .package.featured {
    transform: none;
  }
  .footer .container {
    display: block;
  }
  .footer a {
    display: block;
    margin: 8px 0;
  }
  .section {
    padding: 78px 0;
  }
  .hero {
    align-items: end;
    padding: 0 0 88px;
  }
  .hero-content {
    margin-left: 18px;
    padding: 20px 20px 22px;
    width: calc(100% - 36px);
  }
  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }
  .founders img {
    height: 240px;
  }
}
.about-section {
  overflow: hidden;
}
.about-header {
  max-width: 880px;
  margin-bottom: 28px;
}
.about-header h2 {
  max-width: 820px;
}
.about-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 22px;
  align-items: stretch;
}
.about-main p {
  color: #cdd7e6;
  margin: 0 0 16px;
}
.about-main p:last-child {
  margin-bottom: 0;
}
.about-vision {
  position: relative;
  border-color: rgba(216, 181, 109, 0.28);
  background: linear-gradient(
    180deg,
    rgba(216, 181, 109, 0.11),
    rgba(255, 255, 255, 0.035)
  );
}
.about-vision h3 {
  font-size: 1.7rem;
  margin-top: 28px;
  color: #fff;
}
.about-vision p {
  color: #d8deea;
}
.badge.soft {
  left: 24px;
  right: auto;
  top: 20px;
  background: rgba(31, 143, 255, 0.14);
  color: #9fd3ff;
  border: 1px solid rgba(115, 199, 255, 0.28);
}
.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.activity-card {
  min-height: 166px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}
.activity-card b {
  display: block;
  color: var(--premium-light);
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 10px;
}
.activity-card span {
  color: #c4cfdf;
  font-size: 0.94rem;
}
.about-section:before {
  content: "";
  position: absolute;
  right: -10%;
  top: 8%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(31, 143, 255, 0.16),
    transparent 65%
  );
  pointer-events: none;
}
@media (max-width: 900px) {
  .about-layout,
  .activity-grid {
    grid-template-columns: 1fr;
  }
  .about-header {
    margin-bottom: 20px;
  }
  .activity-card {
    min-height: auto;
  }
  .about-vision h3 {
    font-size: 1.4rem;
  }
  .nav-links a {
    font-size: 0.88rem;
  }
}
.trust-layout {
  align-items: stretch;
}
.trust-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.trust-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 18px 20px;
  background: linear-gradient(
    135deg,
    rgba(31, 143, 255, 0.11),
    rgba(255, 255, 255, 0.035)
  );
}
.trust-card b {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}
.trust-card span {
  color: #c4cfdf;
}
.news-copy.large p {
  margin: 0;
  color: #d7e1ef;
  font-size: 1.08rem;
  line-height: 1.75;
}
@media (max-width: 900px) {
  .trust-cards {
    grid-template-columns: 1fr;
  }
  .news-copy.large p {
    font-size: 1rem;
  }
}
.trust-media-stack {
  display: grid;
  gap: 14px;
}
.trust-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 181, 109, 0.28);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}
.trust-visual img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}
.trust-layout {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}
.trust-cards {
  align-content: stretch;
}
.trust-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 112px;
}
@media (max-width: 900px) {
  .trust-visual img {
    height: 220px;
  }
  .trust-layout {
    grid-template-columns: 1fr;
  }
}
.trust-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.trust-visual-grid .trust-visual img {
  height: 250px;
}
.trust-visual-grid .trust-visual:first-child img {
  object-position: center;
}
.trust-visual-grid .trust-visual:nth-child(2) img {
  object-position: center top;
}
@media (max-width: 900px) {
  .trust-visual-grid {
    grid-template-columns: 1fr;
  }
  .trust-visual-grid .trust-visual img {
    height: 220px;
  }
}
