:root {
      --orange: #FF601C;
      --purple: #9E61DB;
      --dark: #0D0D0D;
      --dark2: #141414;
      --dark3: #1c1c1c;
      --light: #F5F2EE;
      --muted: #777;
      --card-bg: #131313;
      --border: rgba(255,255,255,0.06);
      --radius: 20px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'IBM Plex Sans', sans-serif;
      background: var(--dark);
      color: var(--light);
      overflow-x: hidden;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: 0.025;
      pointer-events: none;
      z-index: 9999;
    }
    .text-muted{
      color: var(--muted)!important;
    }

    /* NAV */
    .custom-navbar {
      /* background: rgba(13,13,13,0.88); */
      background-image: linear-gradient(rgba(13,13,13,0.88),transparent); 
      backdrop-filter: blur(20px);
      /* border-bottom: 1px solid var(--border); */
      
    }
    .nav-logo {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 1.55rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: linear-gradient(100deg, var(--orange) 30%, var(--purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-decoration: none;
    }
    .custom-nav-link {
      color: var(--muted) !important;
      font-size: 0.875rem;
      font-weight: 400;
      letter-spacing: 0.01em;
      transition: color 0.2s;
    }
    .custom-nav-link:hover, .custom-nav-link:focus { color: var(--light) !important; }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 26px;
      border-radius: 100px;
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      border: none;
    }
    .btn-primary { background: var(--orange); color: #fff; }
    .btn-primary:hover {
      background: #e8531a;
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(255,96,28,0.35);
    }
    .btn-outline {
      background: transparent;
      color: var(--light);
      border: 1px solid var(--border);
    }
    .btn-outline:hover {
      border-color: rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.04);
    }
    .btn-purple { background: var(--purple); color: #fff; }
    .btn-purple:hover {
      background: #8b52c8;
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(158,97,219,0.35);
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 40px 80px;
      position: relative;
      overflow: hidden;
      background: #080810;
    }

    /* deep base radial */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(158,97,219,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 50% 110%, rgba(255,96,28,0.10) 0%, transparent 65%);
      pointer-events: none;
    }

    /* beam wrapper */
    .hero-beams {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    /* individual beams */
    .beam {
      position: absolute;
      bottom: -10%;
      width: 2px;
      transform-origin: bottom center;
      border-radius: 2px;
    }

    /* LEFT orange beam */
    .beam-left {
      left: 14%;
      height: 85%;
      background: linear-gradient(to top, rgba(255,96,28,0.9) 0%, rgba(255,96,28,0.4) 40%, transparent 100%);
      transform: rotate(-28deg);
      filter: blur(18px);
      width: 120px;
      animation: beamPulse1 6s ease-in-out infinite alternate;
    }



    /* RIGHT purple beam */
    .beam-right {
      right: 14%;
      height: 85%;
      background: linear-gradient(to top, rgba(158,97,219,0.9) 0%, rgba(158,97,219,0.4) 40%, transparent 100%);
      transform: rotate(28deg);
      filter: blur(18px);
      width: 120px;
      animation: beamPulse2 7s ease-in-out infinite alternate;
    }



    /* floor glow pools */
    .beam-pool-left {
      position: absolute;
      bottom: -5%;
      left: 5%;
      width: 320px; height: 180px;
      background: radial-gradient(ellipse, rgba(255,96,28,0.35) 0%, transparent 70%);
      filter: blur(30px);
      animation: beamPulse1 6s ease-in-out infinite alternate;
    }

    .beam-pool-right {
      position: absolute;
      bottom: -5%;
      right: 5%;
      width: 320px; height: 180px;
      background: radial-gradient(ellipse, rgba(158,97,219,0.35) 0%, transparent 70%);
      filter: blur(30px);
      animation: beamPulse2 7s ease-in-out infinite alternate;
    }

    /* center subtle glow */
    .beam-center {
      position: absolute;
      top: 30%;
      left: 50%;
      transform: translateX(-50%);
      width: 500px; height: 300px;
      background: radial-gradient(ellipse, rgba(158,97,219,0.08) 0%, transparent 70%);
      filter: blur(40px);
    }

    @keyframes beamPulse1 {
      from { opacity: 0.75; transform: rotate(-28deg) scaleX(1); }
      to   { opacity: 1;    transform: rotate(-26deg) scaleX(1.08); }
    }
    @keyframes beamPulse2 {
      from { opacity: 0.75; transform: rotate(28deg) scaleX(1); }
      to   { opacity: 1;    transform: rotate(26deg) scaleX(1.08); }
    }
    .beam-left-sharp, .beam-right-sharp {
      animation-timing-function: ease-in-out;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--border);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 32px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .hero-badge span {
      width: 6px; height: 6px;
      background: var(--orange);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100% { opacity:1; transform:scale(1); }
      50% { opacity:0.5; transform:scale(0.8); }
    }
    .hero h1 {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: clamp(3rem,7vw,6rem);
      font-weight: 700;
      line-height: 1.0;
      letter-spacing: -0.03em;
      margin-bottom: 28px;
    }
    .hero h1 .grad {
      background: linear-gradient(110deg, var(--orange), var(--purple) 70%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: clamp(1rem,2vw,1.2rem);
      color: var(--muted);
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 44px;
      font-weight: 300;
    }
    .hero-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 70px;
    }
    .store-badges {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .store-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 22px;
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 14px;
      text-decoration: none;
      color: var(--light);
      transition: all 0.2s;
    }
    .store-badge:hover {
      border-color: rgba(255,255,255,0.15);
      background: var(--dark2);
      transform: translateY(-2px);
    }
    .store-badge-text { text-align: left; line-height: 1.2; }
    .store-badge-sub { font-size: 0.7rem; color: var(--muted); }
    .store-badge-name { font-size: 0.95rem; font-weight: 500; }
    .hero-scroll {
      position: absolute;
      bottom: 32px; left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: var(--muted);
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .scroll-line {
      width: 1px; height: 36px;
      background: linear-gradient(to bottom, var(--muted), transparent);
      animation: scrollLine 1.8s ease-in-out infinite;
    }
    @keyframes scrollLine {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      51% { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* SECTION COMMONS */
    .section-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: clamp(2rem,4vw,3rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .section-sub {
      color: var(--muted)!important;
      font-size: 1.05rem;
      line-height: 1.7;
      font-weight: 300;
    }


    /* FEATURES */
    #features {
      background: var(--dark2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .feature-card {
      background: var(--card-bg);
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
      transition: background 0.25s;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,96,28,0.05), rgba(158,97,219,0.05));
      opacity: 0;
      transition: opacity 0.3s;
    }
    .feature-card:hover { background: #181818; }
    .feature-card:hover::before { opacity: 1; }
    .feature-icon {
      width: 48px; height: 48px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      flex-shrink: 0;
    }
    .feature-icon svg { display: block; }
    .feature-icon.orange { background: rgba(255,96,28,0.12); }
    .feature-icon.purple { background: rgba(158,97,219,0.12); }
    .feature-icon.mixed  { background: linear-gradient(135deg, rgba(255,96,28,0.1), rgba(158,97,219,0.1)); }
    .feature-card h3 {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-bottom: 10px;
    }
    .feature-card p {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.65;
      font-weight: 300;
    }

    /* HOW IT WORKS */
    /* Phone mockup */
    .how-phone-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .how-phone-glow {
      position: absolute;
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(158,97,219,0.22) 0%, rgba(255,96,28,0.08) 50%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      filter: blur(60px);
      pointer-events: none;
    }
    #phone-screen-img {
      transition: opacity 0.18s ease;
    }
    .phone-svg {
      width: 260px;
      height: auto;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 32px 64px rgba(0,0,0,0.65)) drop-shadow(0 0 40px rgba(158,97,219,0.15));
    }

    /* Steps accordion */
    .how-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .how-step {
      border-top: 1px solid var(--border);
      padding: 20px 0;
      cursor: pointer;
    }
    .how-step:last-child { border-bottom: 1px solid var(--border); }
    .how-step-head {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .how-step-bar {
      width: 3px;
      height: 28px;
      border-radius: 2px;
      background: var(--border);
      flex-shrink: 0;
      transition: background 0.3s, height 0.3s;
    }
    .how-step.active .how-step-bar {
      background: linear-gradient(to bottom, var(--orange), var(--purple));
      height: 42px;
    }
    .how-step-title {
      font-size: 1rem;
      font-weight: 500;
      color: var(--muted);
      transition: color 0.25s;
      letter-spacing: -0.01em;
    }
    .how-step.active .how-step-title { color: var(--light); font-weight: 600; }
    .how-step-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, opacity 0.3s;
      opacity: 0;
      padding-left: 19px;
    }
    .how-step.active .how-step-body { max-height: 160px; opacity: 1; }
    .how-step-body p {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.7;
      font-weight: 300;
      padding-top: 12px;
    }

    @media (max-width: 900px) {
      .how-phone-wrap { display: none; }
    }

    /* TESTIMONIALS */
    #testimonials {
      background: var(--dark2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .testi-arrows {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }
    .testi-arrow {
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--card-bg);
      color: var(--light);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      flex-shrink: 0;
    }
    .testi-arrow:hover {
      border-color: var(--orange);
      background: rgba(255,96,28,0.1);
      color: var(--orange);
    }
    .testi-arrow svg { display: block; }
    .testi-carousel-wrap {
      overflow: hidden;
      position: relative;
    }
    .testi-track {
      display: flex;
      gap: 20px;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }
    .testi-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 36px 32px;
      transition: border-color 0.2s, transform 0.2s;
      flex: 0 0 calc(33.333% - 14px);
      min-width: 280px;
    }
    @media (max-width: 900px) {
      .testi-card { flex: 0 0 calc(50% - 10px); }
    }
    @media (max-width: 600px) {
      .testi-card { flex: 0 0 calc(100% - 0px); }
    }
    .testi-card:hover { transform: translateY(-3px); }
    .testi-card:nth-child(odd):hover  { border-color: rgba(255,96,28,0.2); }
    .testi-card:nth-child(even):hover { border-color: rgba(158,97,219,0.2); }
    .testi-stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--orange); font-size: 0.9rem; }
    .testi-card blockquote {
      font-size: 0.95rem;
      line-height: 1.7;
      color: rgba(245,242,238,0.8);
      font-weight: 300;
      font-style: italic;
      margin-bottom: 24px;
    }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 38px; height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.85rem;
      flex-shrink: 0;
    }
    .testi-author-info { line-height: 1.3; }
    .testi-author-name { font-size: 0.9rem; font-weight: 500; }
    .testi-author-role { font-size: 0.78rem; color: var(--muted); }
    .testi-dots {
      display: flex;
      gap: 6px;
      margin-top: 32px;
      justify-content: center;
    }
    .testi-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
      transition: all 0.2s;
    }
    .testi-dot.active {
      width: 20px;
      border-radius: 3px;
      background: var(--orange);
    }

    /* FAQ */
    .faq-item { border-top: 1px solid var(--border); }
    .faq-item:last-child { border-bottom: 1px solid var(--border); }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      color: var(--light);
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      text-align: left;
      padding: 22px 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: color 0.2s;
    }
    .faq-q:hover { color: var(--orange); }
    .faq-icon {
      width: 24px; height: 24px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.25s;
      font-size: 1rem;
      color: var(--muted);
      padding-bottom: 2px;
    }
    .faq-item.open .faq-icon {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
      transform: rotate(45deg);
    }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .faq-a p { color: var(--muted); font-size: 0.925rem; line-height: 1.7; font-weight: 300; padding-bottom: 22px; }
    .faq-item.open .faq-a { max-height: 300px; }

    .faq-header{
    text-align: center;
    margin-bottom: 56px!important;
    }
    /* CTA STRIP */
    .cta-strip {
      background: #0e0a18;
      border: 1px solid rgba(158,97,219,0.2);
    }
    /* large blurred orbs */
    .cta-strip::before {
      content: '';
      position: absolute;
      top: -120px; right: -100px;
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(158,97,219,0.28) 0%, transparent 65%);
      pointer-events: none;
      animation: ctaDrift1 9s ease-in-out infinite alternate;
    }
    .cta-strip::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -60px;
      width: 340px; height: 340px;
      background: radial-gradient(circle, rgba(255,96,28,0.2) 0%, transparent 65%);
      pointer-events: none;
      animation: ctaDrift2 11s ease-in-out infinite alternate;
    }
    @keyframes ctaDrift1 {
      from { transform: translate(0,0); }
      to   { transform: translate(-30px, 20px); }
    }
    @keyframes ctaDrift2 {
      from { transform: translate(0,0); }
      to   { transform: translate(20px, -20px); }
    }
    /* grid lines overlay */
    .cta-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    }
    .cta-strip h2 .grad {
      background: linear-gradient(100deg, var(--orange), var(--purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .steps::before { display: none; }
    }
    footer p{
      color: var(--muted);
      font-size: 0.875rem; 
    }
    .footer-links a{
      color: var(--muted)!important;
      font-size: 0.875rem;
      text-decoration: none;
      transition: color 0.2s!important;
    }