:root {
      --primary:#6366F1;
      --secondary:#4F46E5;
      --bg-dark:#0F172A;
      --text-muted:#64748B;
    }

  html {
    scroll-behavior: smooth;
  }
    /* RESET */
    * { margin:0; padding:0; box-sizing:border-box; font-family:'Inter', sans-serif; }
  body {
      position: relative;
    background:
      radial-gradient(circle at 20% 20%, rgba(99,102,241,0.15), transparent 40%),
      radial-gradient(circle at 80% 60%, rgba(79,70,229,0.12), transparent 50%),
      var(--bg-dark);

    color:#E2E8F0;
  }

    /* GLOBAL */
    section {
      padding:120px 10%;
      position:relative;
    }

    section:last-of-type {
    background: linear-gradient(
      180deg,
      rgba(15,23,42,0.7),
      rgba(15,23,42,1)
    );
  }

    section::after {
    content:'';
    position:absolute;
    bottom:0;
    left:10%;
    right:10%;
    height:1px;
    background:linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.08),
      transparent
    );
  }

  h2 {
    font-size:44px;
    line-height:1.2;
    font-weight:600;
    letter-spacing:-0.5px;
  }

  p {
    margin-top:20px;
    color:#CBD5F5;
    font-size:16px;
    line-height:1.6;
  }

  /* ===== HEADER ===== */

  .header {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%);

    width: auto;
    z-index: 1000;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 10px 10px;

    border-radius: 999px; /* 👈 pill shape */

    background: rgba(15,23,42,0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 
      0 10px 30px rgba(0,0,0,0.25),
      0 0 20px rgba(99,102,241,0.15); /* subtle glow */
  }	

  .header .btn {
    margin-top:0;
    padding:10px 20px;
    font-size:14px;
  }

  /* NAV CONTAINER */
  .nav {
    display: flex;
    align-items: center;
    gap: 10px; /* tighter */
  }

  .nav a {
    text-decoration: none;
    color: #CBD5F5;
    font-size: 14px;

    padding: 8px 14px;
    border-radius: 999px;

    transition: all 0.3s ease;
  }

  .nav a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
  }

  .nav a.active {
    background: #fff;
    color: #0F172A;
    font-weight: 500;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }

   /* LOGO */
  .floating-logo {
    position: fixed;
    top: 50px;              /* SAME as header */
    left: 40px;             /* spacing from edge */
    transform: translateY(-50%);

    z-index: 1001;          /* above nav */

    display: flex;
    align-items: center;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* TEXT */
.logo-text {
  position: relative;
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 600;

  color: #fdfdfe;

  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);

  backdrop-filter: blur(10px);

  overflow: hidden; /* important */
}

/* ✨ animated border layer */
.logo-text::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 2px; /* thicker border */

  background: linear-gradient(
    120deg,
    transparent,
    #6366F1,
    #818CF8,
    #4F46E5,
    transparent
  );

  background-size: 200% 100%;
  background-position: -100% 0;

  opacity: 0;
  transition: opacity 0.3s ease;

  /* mask for border */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.logo:hover .logo-text {
  text-shadow: 0 0 10px #6366F1, 0 0 20px #6366F1;
  box-shadow: 0 0 10px rgba(99,102,241,0.5);
}

/* 🚀 hover activates animation */
.logo:hover .logo-text::before {
  opacity: 1;
  animation: borderRun 2.2s linear infinite;
  filter: blur(1px);
}

/* animation */
@keyframes borderRun {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

/* keep your existing hover */
.logo:hover .logo-text {
  text-shadow: 0 0 20px rgba(99,102,241,0.7);
  transform: translateY(-1px);
}


  /* ===== MOBILE MENU ===== */
  .mobile-menu {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;

    background: rgba(15,23,42,0.95);
    backdrop-filter: blur(20px);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:30px;

    transform:translateY(-100%);
    transition:0.4s ease;

    z-index:999;
  }

  .mobile-menu a {
    font-size:22px;
    color:#fff;
    text-decoration:none;
  }

  .mobile-menu a:hover {
    color: #fff;
    transform: scale(1.05);
  }

  /* ACTIVE MENU */
  .mobile-menu.active {
    transform:translateY(0);
  }
  
  /* TOGGLE MENU */

  .menu-toggle {
  width: 42px;              /* equal width & height */
  height: 42px;
  border-radius: 50%;       /* makes it a circle */

  position: fixed;
  
  top: 50px;                /* SAME reference line */
  right: 20px;
  transform: translateY(-50%); 	
  
    display: none;

  cursor: pointer;
  z-index: 2001;

  align-items: center;
  justify-content: center;

  padding: 10px 10px;

    background: rgba(15,23,42,0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 
      0 10px 30px rgba(0,0,0,0.25),
      0 0 20px rgba(99,102,241,0.15); /* subtle glow */

  transition: 0.3s ease;
}

.menu-toggle:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow:
    0 0 20px rgba(99,102,241,0.4);
}

.menu-toggle span {
  position: absolute;
  height: 2px;
  width: 18px; /* smaller so it fits inside circle nicely */
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
  
.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 26px;
}

body.menu-open .menu-toggle span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

  /* ===== RESPONSIVE ===== */

  /* show only on mobile */
  @media (max-width: 768px) {
    .floating-logo {
    top: 50px;              /* SAME as everything */
    left: 20px;
    transform: translateY(-50%);
  }

  .menu-toggle {
    top: 50px;
    right: 20px;
    transform: translateY(-50%);
    display: flex;

  }

  .header {
    display: none; /* optional but cleaner */
  }

    .header-inner {
      padding: 0;
    }

    .nav {
      display: none; /* hide desktop nav */
    }


    .header .btn {
      display: none;
    }

  }


    /* ===== HERO ===== */

    .hero {
      height: 100vh;
      display:flex;
      justify-content:center;
      align-items:center;
      text-align:center;
      position:relative; /* remove sticky */
      overflow:hidden;
    }

    .hero-content {
      transition: all 0.5s ease;
      position: relative;
      z-index: 3;
    }

    .hero-bg {
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at center, var(--primary), var(--bg-dark));
    animation: moveBg 10s infinite alternate ease-in-out;
    z-index: 0; /* keep above canvas */
  }

    @keyframes moveBg {
    0% { transform:translate(-2%, 2%) scale(1); }
    100% { transform:translate(2%, -2%) scale(1.05); }
  }

    .hero h1 {
      font-size:54px;
      max-width:900px;
      line-height:1.2;
      transition: all 0.4s ease;
    }
    .hero p {
      margin-top:20px;
      color:#CBD5F5;
    }

  .btn {
    margin-top:30px;
    padding:12px 26px;
    border-radius:999px;
    border:none;
    cursor:pointer;
    font-weight:600;

    position:relative;
    overflow:hidden;

    transition: all 0.3s ease;
  }

  .btn:active {
    transform: scale(0.96);
  }

  /* PRIMARY BUTTON */
  .primary {
    background:linear-gradient(135deg, var(--primary), var(--secondary));
    color:#fff;
  }

  .glow {
    color:#fff;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: 0.4s ease;
  }
  
  .btn.glow {
  color:#fff;
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* glow layer */
.btn.glow::before {
  content:'';
  position:absolute;
  inset:0;
  border-radius:999px;
  background: linear-gradient(135deg, #6366F1, #4F46E5);
  filter: blur(14px);
  opacity:0;
  transition:0.3s ease;
  z-index:-1;
}

/* hover effect */
.btn.glow:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 20px rgba(99,102,241,0.4);
}

.btn.glow:hover::before {
  opacity:0.6;
}

  /* glow layer */
  .primary::before {
    content:'';
    position:absolute;
    inset:0;
    border-radius:999px;

    background: linear-gradient(135deg, #6366F1, #4F46E5);
    filter: blur(14px);
    opacity:0;

    transition:0.3s ease;
    z-index:-1;
  }

  /* hover */
  .primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 20px rgba(99,102,241,0.4);
  }

  .primary:hover::before {
    opacity:0.6;
  }

  /* SECONDARY BUTTON */
  .secondary {
    background:transparent;
    border:1px solid rgba(255,255,255,0.3);
    color:#fff;
  }

  /* subtle hover */
  .secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
  }

    /* ===== LIGHT SECTION ===== */
    .light {
      background:#fff;
      color:#0F172A;
    }
    .light h2 {
      font-size:52px;
    }

    .power-content {
    max-width:420px;
  }

  .experience-header {
    max-width:600px;
    margin:0 auto 60px auto;
  }

    /* ===== ASPIRATION SECTION ===== */

  .aspiration {
    position:relative;
    background: linear-gradient(
      180deg,
      rgba(15,23,42,0.8),
      rgba(30,41,59,0.95)
    );
    padding:140px 10%;
    overflow:hidden;
  }

  /* layout */
  .aspiration-wrapper {
    display:flex;
    flex-direction: row-reverse;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
  }

  /* LEFT */
  .aspiration-content {
    flex:1;
    min-width:300px;
  }

  .aspiration-content h2 {
    font-size:44px;
    line-height:1.2;
  }

  .aspiration-content p {
    margin-top:20px;
    color:#CBD5F5;
    max-width:420px;
  }

  /* RIGHT */
  .aspiration-visual {
    flex:1;
    min-width:300px;
    display:flex;
    justify-content:center;
    align-items:center;
  }

  /* morph container upgraded */
  .morph-container {
    position:relative;
    height:80px;
    width:100%;
    max-width:400px;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  /* subtle glow behind */
  .aspiration::before {
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background: radial-gradient(circle, rgba(99,102,241,0.15), transparent);
    top:50%;
    right:10%;
    transform:translateY(-50%);
    filter: blur(80px);
    z-index:0;
  }

  /* keep content above glow */
  .aspiration-wrapper {
    position:relative;
    z-index:1;
  }

  /* responsive */
  @media(max-width:768px) {
    .aspiration-wrapper {
      flex-direction:column;
      text-align:center;
    }

    .aspiration-content p {
      margin:auto;
    }
  }

  /* ===== IDENTITY (UPGRADED) ===== */
  .identity {
    position:relative;

    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.95),
      rgba(248,250,252,1)
    );

    color:#0F172A;
    overflow:hidden;
  }

  /* subtle glow like other sections */
  .identity::before {
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background: radial-gradient(circle, rgba(99,102,241,0.15), transparent);
    top:50%;
    left:10%;
    transform:translateY(-50%);
    filter: blur(80px);
    z-index:0;
  }

  .identity-wrapper {
    max-width:900px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:1;
  }

  .identity h2 {
    font-size:48px;
    line-height:1.2;
    font-weight:600;
    letter-spacing:-0.5px;
  }

  .identity p {
    margin-top:20px;
    color:#475569;
    max-width:600px;
    margin-left:auto;
    margin-right:auto;
  }

  /* ===== POINTS ===== */
  .identity-points {
    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
  }

  .point {
    display:flex;
    align-items:center;
    gap:10px;

    padding:12px 18px;
    border-radius:999px;

    background: rgba(15,23,42,0.04);
    border:1px solid rgba(15,23,42,0.08);

    font-size:14px;
    color:#0F172A;

    transition:0.3s;
  }

  .point i {
    width:18px;
    height:18px;
    color: var(--primary);
  }

  /* hover micro interaction */
  .point:hover {
    transform: translateY(-3px);
    background: rgba(99,102,241,0.08);
    border-color: rgba(99,102,241,0.3);
    box-shadow: 0 0 20px rgba(99,102,241,0.15);
  }
  
  .highlight-line {
  margin-top: 24px;
  font-weight: 500;
  font-size: 18px;
  color: #6366F1;
  letter-spacing: -0.2px;
}

    /* ===== SPLIT ===== */
    .split {
      display:flex;
      gap:60px;
      align-items:center;
    }
    .split img {
      width:100%;
      border-radius:20px;
      transform:translateY(40px);
      transition:all 1s ease;
    }

    /* ===== CARDS ===== */
    .cards {
      display:flex;
      gap:20px;
      flex-wrap:wrap;
    }
    .card {
    position: relative;
    flex:1;
    min-width:260px;

    padding:30px;

    border-radius:16px;
    border: 2px solid rgba(255,255,255,0.2);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    background: transparent;

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);

    transition: 0.4s ease;
  }

  /* glow layer (same as form) */
  .card::before {
    content:'';
    position:absolute;
    inset:-2px;
    border-radius:16px;
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    opacity:0.15;
    filter: blur(20px);
    z-index:-1;
  }

  /* hover polish */
  .card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(99,102,241,0.5);
    box-shadow: 0 0 30px rgba(99,102,241,0.25);
  }

    .experience {
    background: linear-gradient(
      180deg,
      rgba(15,23,42,0.6),
      rgba(15,23,42,0.9)
    );
  }

    .icon {
    width:28px;
    height:28px;
    margin-bottom:15px;
    color: var(--primary);
  }

  .card h3 {
    font-size:18px;
    font-weight:500;
    color:#E2E8F0;
  }

    /* ===== CENTER ===== */
    .center {
    text-align:center;
  }

  .cta-box {
    max-width:700px;
    margin:auto;

    background: transparent;
      border: 2px solid rgba(255,255,255,0.2);

      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);

      box-shadow: 0 10px 30px rgba(0,0,0,0.25);

      color:#fff;
      border-radius:16px;
      padding:40px;
      transition:0.4s;	
  }

    .cta-box::before {
      content:'';
      position:absolute;
      inset:-2px;
      border-radius:16px;
      background: linear-gradient(135deg, #6366F1, #4F46E5);
      opacity:0.2;
      filter: blur(20px);
      z-index:-1;
    }

  .cta-box:hover {
      border-color: rgba(99,102,241,0.5);
      box-shadow: 0 0 25px rgba(99,102,241,0.25);
    }

  .cta-box h2 {
    color: #FFFFFF;
  }

  .conversion {
    background: linear-gradient(
      180deg,
      rgba(15,23,42,0.7),
      rgba(15,23,42,1)
    );
    padding:140px 10%;
  }

  .conversion-wrapper {
    display:flex;
    position:relative;
    gap:60px;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
  }

  .conversion-wrapper::before {
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background: radial-gradient(circle, rgba(99,102,241,0.2), transparent);
    right:10%;
    filter: blur(60px);
    z-index:-1;
  }

  /* LEFT SIDE */
  .conversion-content {
    flex:1;
    min-width:300px;
  }

  .conversion-content h2 {
    font-size:42px;
    line-height:1.2;
  }

  .conversion-content p {
    margin-top:20px;
    color:#CBD5F5;
    max-width:400px;
  }

  /* RIGHT SIDE FORM already matches your glass style */
  .value-list {
    list-style:none;
    padding:0;
    margin:0;

    display:flex;
    flex-direction:column;
    gap:20px;
  }

  .value-list li {
    display:flex;
    align-items:center;
    gap:14px;

    font-size:18px;
    color:#E2E8F0;

    padding:14px 18px;
    border-radius:12px;

    background: rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    transition:0.3s ease;
  }

  /* hover polish */
  .value-list li:hover {
    transform: translateX(6px);
    border-color: rgba(99,102,241,0.4);
    background: rgba(99,102,241,0.08);
    box-shadow: 0 0 20px rgba(99,102,241,0.2);
  }

  /* tick icon */
  .tick {
    width:20px;
    height:20px;
    color:#6366f1;
    flex-shrink:0;
  }

  /* RESPONSIVE */
  @media(max-width:768px) {
    .conversion-wrapper {
      flex-direction:column;
      text-align:center;
    }

    .conversion-content p {
      margin:auto;
    }
  }

    /* ===== PARALLAX TEXT ===== */
    .reveal {
      opacity:0;
      transform:translateY(40px);
      transition:1s ease;
    }
    .reveal.show {
      opacity:1;
      transform:translateY(0);
    }

    /* ===== FORM ===== */

    .form-box {
      width:420px;
      max-width:90%;
      margin:auto;
      position: relative;

      background: transparent;
      border: 2px solid rgba(255,255,255,0.2);

      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);

      box-shadow: 0 10px 30px rgba(0,0,0,0.25);

      color:#fff;
      border-radius:16px;
      padding:40px;
      transition:0.4s;
    }

    .form-box::before {
      content:'';
      position:absolute;
      inset:-2px;
      border-radius:16px;
      background: linear-gradient(135deg, #6366F1, #4F46E5);
      opacity:0.2;
      filter: blur(20px);
      z-index:-1;
    }

    .form-box .btn {
    width: 100%;
    text-align: center;
  }
  .form-loader {
    display:none;
    margin-top:20px;
    width:30px;
    height:30px;
    border:3px solid rgba(255,255,255,0.2);
    border-top:3px solid #6366F1;
    border-radius:50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  .form-success {
    display:none;
    margin-top:20px;
    padding:16px;
    border-radius:12px;

    background: rgba(99,102,241,0.12); /* primary tint */
    border:1px solid rgba(99,102,241,0.3);
    box-shadow: 0 0 20px rgba(99,102,241,0.25);

    color:#E2E8F0;
    text-align:center;
    font-weight:500;

    backdrop-filter: blur(10px);
  }	

  .form-success::before {
    content:'✔';
    margin-right:8px;
    color: var(--primary);
  }

    /* subtle hover polish */
    .form-box:hover {
      border-color: rgba(99,102,241,0.5);
      box-shadow: 0 0 25px rgba(99,102,241,0.25);
    }
    input, textarea {
      width:100%;
      margin:12px 0;
      padding:14px 16px;

      border-radius:12px;
      border:1px solid rgba(255,255,255,0.15);

      background: rgba(255,255,255,0.05);
      color:#fff;

      transition:0.3s;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(255,255,255,0.5);
    }

    input:focus, textarea:focus {
      outline:none;
      border-color: var(--primary);
      background: rgba(255,255,255,0.08);
      box-shadow: 0 0 0 2px rgba(99,102,241,0.2);
    }

    textarea {
    resize: vertical;        /* only up/down */
    min-height: 100px;
    max-height: 180px;
  }

    /* ===== FOOTER ===== */
    footer {
      text-align:center;
      padding:40px;
      color:#94A3B8;
    }

    /* ===== TOGGLE ===== */
    .toggle {
      position:fixed;
      top:20px;
      right:20px;
      background:#fff;
      color:#000;
      padding:8px 16px;
      border-radius:999px;
      cursor:pointer;
      z-index:1000;
    }

    /* ===== BOLD MODE ===== */
    .bold h1 { font-size:68px; letter-spacing:-1px; }
    .bold h2 { font-size:60px; }

    /* ===== RESPONSIVE ===== */
    @media(max-width:768px) {
      .split { flex-direction:column; }
      .hero h1 { font-size:36px; }
    }

   canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* ⬅️ move ABOVE hero-bg */
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.35;
  }