:root {
  --bg: #05060a;
  --bg-soft: #0b0e16;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --muted: #a6b0c3;
  --muted-2: #7f8899;
  --gold: #d8b36a;
  --blue: #7aa2ff;
  --cyan: #6de5ff;
  --violet: #9d7dff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(122, 162, 255, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(157, 125, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #06070b 0%, #080b12 40%, #05060a 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    radial-gradient(rgba(255,255,255,0.25) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  z-index: 1;
}

.mouse-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 162, 255, 0.15), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: blur(18px);
  opacity: 0.9;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 56px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-tag,
.eyebrow,
.mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(216, 179, 106, 0.22);
  background: rgba(216, 179, 106, 0.07);
  color: #f2d39a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mini-tag.gold {
  background: rgba(109, 229, 255, 0.08);
  border-color: rgba(109, 229, 255, 0.18);
  color: #9cefff;
}

.section-heading h2,
.hero-content h1,
.cta-card h2 {
  margin: 18px 0 18px;
  font-family: "Manrope", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.section-heading p,
.hero-subtext,
.philosophy-left p,
.difference-left p,
.cta-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* NAV */
.vision-navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  background: rgba(5, 6, 10, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #fff0c2);
  box-shadow: 0 0 24px rgba(216, 179, 106, 0.5);
}
.brand-logo{
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.brand-main{
    color: #ffffff;
    font-weight: 700;
}

.brand-dotin{
    color: #0071e3;
    font-weight: 700;
    margin-left: 1px;
    text-shadow:
        0 0 8px rgba(0, 113, 227, 0.28),
        0 0 18px rgba(0, 113, 227, 0.14);
}

.brand-logo:hover .brand-dotin{
    color: #2997ff;
    text-shadow:
        0 0 10px rgba(41, 151, 255, 0.38),
        0 0 22px rgba(41, 151, 255, 0.18);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--text);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.28s ease;
}

.nav-cta {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.09);
}

/* HERO */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  opacity: 0.25;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(122, 162, 255, 0.28);
  top: 12%;
  left: 8%;
}

.orb-2 {
  width: 380px;
  height: 380px;
  background: rgba(157, 125, 255, 0.22);
  right: 10%;
  top: 18%;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(216, 179, 106, 0.16);
  left: 40%;
  bottom: 8%;
}

.hero-content {
  text-align: center;
  max-width: 1080px;
}

.hero-content h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  margin-top: 22px;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #ffffff, #e5d0a0, #8bd8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  max-width: 860px;
  margin: 0 auto 34px;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f0d6a2, #c99b49);
  color: #0b0d11;
  box-shadow: 0 18px 40px rgba(201, 155, 73, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(201, 155, 73, 0.34);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: var(--text);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.metric-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  text-align: left;
}

.metric-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  font-family: "Manrope", sans-serif;
  color: #f4d9a8;
  margin-bottom: 8px;
}

.metric-label {
  color: var(--muted);
  line-height: 1.6;
}

/* MANIFESTO */
.manifesto-grid,
.platform-grid,
.future-grid,
.scope-grid {
  display: grid;
  gap: 22px;
}

.manifesto-grid {
  grid-template-columns: repeat(3, 1fr);
}

.manifesto-card,
.feature-card,
.future-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.manifesto-card h3,
.feature-card h3,
.future-card h3,
.scope-card h3,
.timeline-content h3 {
  margin: 0 0 14px;
  font-size: 1.28rem;
  font-family: "Manrope", sans-serif;
}

.manifesto-card p,
.feature-card p,
.future-card p,
.scope-card p,
.timeline-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* PHILOSOPHY */
.philosophy-layout,
.difference-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.compare-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
}

.compare-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.22), transparent);
}

.compare-column h3 {
  margin: 16px 0 14px;
  font-family: "Manrope", sans-serif;
}

.compare-column ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  line-height: 2;
}

/* PLATFORM */
.platform-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(216, 179, 106, 0.18), rgba(122, 162, 255, 0.14));
  border: 1px solid rgba(255,255,255,0.08);
  color: #f1d39b;
  font-weight: 800;
  margin-bottom: 20px;
}

/* SCOPE */
.scope-grid {
  grid-template-columns: repeat(3, 1fr);
}

.scope-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.scope-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 179, 106, 0.25);
}

/* TIMELINE */
.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

.timeline-line {
  position: absolute;
  left: 23px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(216, 179, 106, 0.2), rgba(122, 162, 255, 0.2));
}

.timeline-item {
  position: relative;
  padding-left: 68px;
}

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 28px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, #f0d39f, #c69443);
  box-shadow: 0 0 24px rgba(216, 179, 106, 0.45);
}

.timeline-content {
  padding: 28px;
  border-radius: 24px;
}

.timeline-content span {
  display: inline-block;
  margin-bottom: 12px;
  color: #f2d39a;
  font-weight: 800;
  letter-spacing: 0.1em;
}

/* DIFFERENCE */
.difference-panel {
  border-radius: 28px;
  padding: 20px;
}

.difference-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.difference-row:last-child {
  border-bottom: 0;
}

.difference-row span {
  color: var(--muted);
}

.difference-row strong {
  text-align: right;
  font-size: 1rem;
  color: var(--text);
}

/* FUTURE */
.future-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* CTA */
.cta-section {
  padding: 90px 0 120px;
}

.cta-card {
  border-radius: 36px;
  padding: 54px 38px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(216,179,106,0.12), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}

.cta-card h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* FOOTER */
.vision-footer {
  padding: 36px 0 56px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.18);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-inner h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.18em;
}

.footer-inner p {
  margin: 0;
  color: var(--muted-2);
}

.footer-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
}

/* REVEAL */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-metrics,
  .manifesto-grid,
  .platform-grid,
  .scope-grid,
  .future-grid,
  .philosophy-layout,
  .difference-layout {
    grid-template-columns: 1fr 1fr;
  }

  .compare-card {
    grid-template-columns: 1fr;
  }

  .compare-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 780px) {
  .nav-links {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding-top: 90px;
  }

  .hero-metrics,
  .manifesto-grid,
  .platform-grid,
  .scope-grid,
  .future-grid,
  .philosophy-layout,
  .difference-layout {
    grid-template-columns: 1fr;
  }

  .footer-inner,
  .difference-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .difference-row strong {
    text-align: left;
  }

  .section {
    padding: 82px 0;
  }

  .container {
    width: min(100% - 26px, var(--container));
  }

  .metric-card,
  .manifesto-card,
  .feature-card,
  .future-card,
  .scope-card,
  .timeline-content,
  .cta-card {
    padding: 24px;
  }

  .hero-content h1 {
    font-size: clamp(2.6rem, 12vw, 4.4rem);
  }

  .hero-subtext {
    font-size: 1rem;
  }
}

