:root {
  --bg: #070b16;
  --bg-soft: #0e1424;
  --surface: rgba(255, 255, 255, 0.07);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f5f7ff;
  --muted: #b8c2de;
  --accent: #7c9cff;
  --accent-2: #63f5d5;
  --accent-3: #d17cff;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(124, 156, 255, 0.18), transparent 22%),
    radial-gradient(circle at 80% 20%, rgba(99, 245, 213, 0.12), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(209, 124, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #060913, #08101b 45%, #060913);
  overflow-x: hidden;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(124, 156, 255, 0.18), transparent 62%);
  filter: blur(18px);
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 1;
}

.cursor-glow.active {
  transform: translate(-50%, -50%) scale(1.3);
  background: radial-gradient(circle, rgba(99, 245, 213, 0.25), transparent 62%);
}

.site-header {
  position: relative;
  z-index: 100;
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  background: rgba(8, 12, 24, 0.62);
  border-radius: 999px;
  z-index: 100;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--border);
  background: var(--surface);
}

.site-header a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-header a:hover {
  color: var(--text);
}

main {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.hero {
  min-height: 96vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  margin-bottom: 18px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

h1 span {
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 900px;
}

.hero-text,
.content-card p,
.timeline-content p,
.venture-card p,
.vision-copy p,
.proof-card p,
.contact-card p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #6a7cff);
  color: white;
  border-color: transparent;
}

.btn-secondary,
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-stats div,
.content-card,
.venture-card,
.proof-card,
.contact-card,
.mini-panel,
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 18px;
  border-radius: 20px;
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.hero-stats strong {
  font-size: 1rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  animation: pulse 7s ease-in-out infinite alternate;
}

.orb-a {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(124, 156, 255, 0.95), rgba(124, 156, 255, 0.08));
  top: 8%;
  right: 8%;
}

.orb-b {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 35% 35%, rgba(99, 245, 213, 0.8), rgba(99, 245, 213, 0.08));
  bottom: 18%;
  left: 10%;
  animation-duration: 9s;
}

.orb-c {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 35% 35%, rgba(209, 124, 255, 0.75), rgba(209, 124, 255, 0.06));
  top: 54%;
  right: 26%;
  animation-duration: 8s;
}

.hero-image-container {
  position: absolute;
  top: -240px;
  left: 0;
  right: 0;
  height: 140%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}

.hero-photo {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(124, 156, 255, 0.15));
  transform-origin: bottom center;
  animation: floatPhoto 6s ease-in-out infinite;
}

@keyframes floatPhoto {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.glass-card {
  position: absolute;
  border-radius: 28px;
  padding: 28px;
  z-index: 1;
}

.glass-card-main {
  width: min(100%, 460px);
  left: 4%;
  top: 18%;
}

.glass-card-side {
  width: min(100%, 280px);
  right: 2%;
  bottom: 14%;
}

.glass-card p {
  color: var(--accent-2);
  margin-bottom: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glass-card h3,
.glass-card h4 {
  font-size: 1.7rem;
  line-height: 1.12;
  margin-bottom: 18px;
}

.glass-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.grid-two,
.vision-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.content-card,
.contact-card {
  border-radius: var(--radius);
  padding: 34px;
}

.card-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.venture-card,
.proof-card,
.mini-panel {
  padding: 26px;
  border-radius: 24px;
}

a.venture-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

a.venture-card:hover {
  transform: translateY(-8px);
  background: var(--surface-strong);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.tag {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(124, 156, 255, 0.15);
  color: #d8e0ff;
  font-size: 0.83rem;
  margin-bottom: 16px;
}

.venture-card h3,
.timeline-content h3,
.proof-card h3,
.mini-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.venture-logo {
  display: block;
  max-height: 48px;
  width: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: contain;
}

.timeline {
  margin-top: 34px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(124, 156, 255, 0.8), rgba(99, 245, 213, 0.2));
}

.timeline-item {
  position: relative;
  padding-left: 48px;
  margin-bottom: 28px;
  cursor: default;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-2), var(--accent));
  box-shadow: 0 0 24px rgba(99, 245, 213, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.timeline-content {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 32px rgba(99, 245, 213, 0.8);
  filter: brightness(1.2);
}

.timeline-item:hover .timeline-content {
  transform: translateY(-4px);
  background: var(--surface-strong);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.interest-marquee {
  margin-top: 30px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 16px 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.vision-panel {
  display: grid;
  gap: 18px;
}

.mini-panel span {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--accent-2);
  margin-bottom: 10px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.consult-note {
  color: #d4defb !important;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 0 0 50px;
  color: var(--muted);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.32s;
}

.float-y {
  animation: floatY 6s ease-in-out infinite;
}

.float-x {
  animation: floatX 8s ease-in-out infinite;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatX {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

@keyframes pulse {
  from {
    transform: scale(0.94);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {

  .hero,
  .grid-two,
  .vision-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
    min-height: auto;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-stats,
  .card-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 26px;
    padding: 16px 22px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(8, 12, 24, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .site-header.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.nav-open .mobile-menu-btn span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.nav-open .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .mobile-menu-btn span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 84px 0;
  }

  .glass-card-main,
  .glass-card-side {
    position: relative;
    inset: auto;
    width: 100%;
    margin-bottom: 18px;
    z-index: 2;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 20px;
  }

  .hero-image-container {
    position: relative;
    top: auto;
    height: 380px;
    margin-bottom: -120px;
    z-index: 0;
  }

  .hero-photo {
    max-width: 100%;
    max-height: 100%;
  }

  .site-nav {
    gap: 12px;
  }

  .cursor-glow {
    display: none;
  }
}