* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {

      background: #050816;
      color: white;
      overflow-x: hidden;

    }

    .phone-glow {
      position: absolute;
      width: 460px;
      height: 560px;
      border-radius: 999px;
      background: radial-gradient(circle, #2563eb66, #22c55e33, transparent 72%);
      filter: blur(38px);
      animation: pulse 4s ease-in-out infinite
    }

    .phone-ring {
      position: absolute;
      z-index: 2;
      width: 430px;
      height: 430px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .15);
      animation: spin 18s linear infinite,
    }

    .phone-ring:before,
    .phone-ring:after {
      content: "";
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 22px #22c55e
    }

    .phone-ring:before {
      top: 32px;
      left: 78px
    }

    .phone-ring:after {
      right: 50px;
      bottom: 92px;
      background: #60a5fa;
      box-shadow: 0 0 22px #60a5fa
    }

    .chart-line {
      position: absolute;
      z-index: 1;
      width: 620px;
      height: 280px;
      opacity: .48
    }

    .chart-line svg {
      width: 100%;
      height: 100%;
      overflow: visible
    }

    .chart-path {
      stroke-dasharray: 900;
      stroke-dashoffset: 900;
      animation: draw 4s ease-in-out infinite alternate
    }

    .particle {
      position: absolute;
      z-index: 1;
      padding: 7px 11px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .09);
      border: 1px solid rgba(255, 255, 255, .1);
      font-size: 12px;
      font-weight: 800;
      color: #86efac;
      animation: rise 6s linear infinite
    }

    .p1 {
      left: 8%;
      bottom: 18%;
      animation-delay: 0s
    }

    .p2 {
      right: 12%;
      bottom: 22%;
      animation-delay: 1.4s
    }

    .p3 {
      left: 22%;
      bottom: 42%;
      animation-delay: 2.4s
    }

    .p4 {
      right: 26%;
      bottom: 48%;
      animation-delay: 3.3s
    }

    header {

      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 20px 8%;
      display: flex;
      justify-content: space-between;
      align-items: center;

      background: rgba(5, 8, 22, .75);
      backdrop-filter: blur(20px);

      z-index: 999;

      border-bottom: 1px solid rgba(255, 255, 255, .05);

    }

    .logo {

      font-size: 34px;
      font-weight: 900;
      background: linear-gradient(90deg, #4ade80, #60a5fa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

    }

    nav {

      display: flex;
      gap: 30px;

    }

    nav a {

      text-decoration: none;
      color: white;
      font-weight: 600;
      transition: .3s;

    }

    nav a:hover {

      color: #4ade80;

    }

    /**************** HERO ****************/

    .hero {

      min-height: 100vh;

      display: flex;

      align-items: center;

      justify-content: space-between;

      padding: 120px 8%;

      position: relative;

      overflow: hidden;

    }

    .hero::before {

      content: "";

      position: absolute;

      width: 700px;
      height: 700px;

      background: #2563eb;

      filter: blur(150px);

      opacity: .25;

      left: -250px;
      top: -250px;

      animation: float1 8s infinite alternate;

    }

    .hero::after {

      content: "";

      position: absolute;

      width: 600px;
      height: 600px;

      background: #22c55e;

      filter: blur(150px);

      opacity: .2;

      right: -150px;
      bottom: -150px;

      animation: float2 8s infinite alternate;

    }

    @keyframes float1 {

      from {
        transform: translateY(0px);
      }

      to {
        transform: translateY(60px);
      }

    }

    @keyframes float2 {

      from {
        transform: translateY(0px);
      }

      to {
        transform: translateY(-60px);
      }

    }

    .left {

      width: 50%;
      z-index: 5;

    }

    .badge {

      display: inline-flex;

      padding: 12px 18px;

      border-radius: 999px;

      background: rgba(255, 255, 255, .08);

      border: 1px solid rgba(255, 255, 255, .08);

      margin-bottom: 30px;

      font-size: 14px;

      backdrop-filter: blur(20px);

    }

    h1 {

      font-size: 65px;

      line-height: 1.2;

      margin-bottom: 25px;

    }

    h1 span {

      background: linear-gradient(90deg, #4ade80, #60a5fa);

      -webkit-background-clip: text;

      -webkit-text-fill-color: transparent;

    }

    .subtitle {

      font-size: 20px;

      color: #CBD5E1;

      line-height: 1.8;

      margin-bottom: 40px;

      max-width: 620px;

    }

    .buttons {

      display: flex;

      gap: 20px;

    }

    .btn {

      padding: 18px 34px;

      border-radius: 16px;

      text-decoration: none;

      font-weight: 700;

      transition: .35s;

    }

    .primary {

      background: linear-gradient(135deg, #2563eb, #22c55e);

      color: white;

      box-shadow: 0 20px 50px rgba(37, 99, 235, .4);

    }

    .primary:hover {

      transform: translateY(-5px);

    }

    .secondary {

      background: rgba(255, 255, 255, .08);

      color: white;

      border: 1px solid rgba(255, 255, 255, .08);

      backdrop-filter: blur(20px);

    }

    .secondary:hover {

      background: rgba(255, 255, 255, .15);

    }

    /**************** PHONE ****************/

    .right {

      width: 45%;

      display: flex;

      justify-content: center;

      position: relative;

      z-index: 5;

    }

    .phone {

      width: 370px;
      z-index: 1;
      animation: phone 6s ease-in-out infinite;

      filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .45));

    }

    .phone img {

      width: 100%;

      border-radius: 42px;

    }

    @keyframes phone {

      0% {

        transform: translateY(0px) rotate(-5deg);

      }

      50% {

        transform: translateY(-20px) rotate(5deg);

      }

      100% {

        transform: translateY(0px) rotate(-5deg);

      }

    }

    @keyframes draw {
      to {
        stroke-dashoffset: 0
      }
    }

    /**************** FLOAT CARDS ****************/

    .float {

      position: absolute;

      padding: 18px 20px;

      background: rgba(255, 255, 255, .08);

      backdrop-filter: blur(25px);

      border-radius: 18px;

      border: 1px solid rgba(255, 255, 255, .08);

      animation: floating 5s infinite ease-in-out;

    }

    .float h3 {

      font-size: 16px;

      margin-bottom: 5px;

    }

    .float p {

      font-size: 13px;

      color: #CBD5E1;

    }

    .f1 {

      top: 40px;

      left: -30px;

    }

    .f2 {

      right: -40px;

      bottom: 120px;

      animation-delay: 1s;

    }

    .f3 {

      bottom: 40px;

      left: -20px;

      animation-delay: 2s;

    }

    @keyframes floating {

      0% {

        transform: translateY(0px);

      }

      50% {

        transform: translateY(-18px);

      }

      100% {

        transform: translateY(0px);

      }

    }

    @keyframes rise {
      0% {
        transform: translateY(50px);
        opacity: 0
      }

      15%,
      75% {
        opacity: 1
      }

      100% {
        transform: translateY(-120px);
        opacity: 0
      }
    }

    /**************** STATS ****************/

    .stats {

      padding: 80px 8%;

      display: grid;

      grid-template-columns: repeat(4, 1fr);

      gap: 30px;

    }

    .stat {

      background: rgba(255, 255, 255, .05);

      padding: 40px;

      border-radius: 28px;

      text-align: center;

      border: 1px solid rgba(255, 255, 255, .08);

      backdrop-filter: blur(20px);

      transition: .35s;

    }

    .stat:hover {

      transform: translateY(-10px);

    }

    .stat h2 {

      font-size: 52px;

      margin-bottom: 12px;

      background: linear-gradient(90deg, #4ade80, #60a5fa);

      -webkit-background-clip: text;

      -webkit-text-fill-color: transparent;

    }

    .stat p {

      color: #CBD5E1;

    }

    /**************** FEATURE INTRO ****************/

    .intro {

      padding: 100px 8%;

      text-align: center;

    }

    .intro h2 {

      font-size: 56px;

      margin-bottom: 25px;

    }

    .intro p {

      max-width: 900px;

      margin: auto;

      color: #CBD5E1;

      font-size: 20px;

      line-height: 1.8;

    }

    /**************** MOBILE ****************/

    @media(max-width:992px) {

      .hero {

        flex-direction: column;
        text-align: center;

      }

      .left {

        width: 100%;

      }

      .right {

        width: 100%;
        margin-top: 80px;

      }

      .buttons {

        justify-content: center;

      }

      .stats {

        grid-template-columns: repeat(2, 1fr);

      }

      h1 {

        font-size: 58px;

      }

    }

    @media(max-width:700px) {

      .stats {

        grid-template-columns: 1fr;

      }

      h1 {

        font-size: 42px;

      }

      .subtitle {

        font-size: 17px;

      }

      .phone {

        width: 290px;

      }

      nav {

        display: none;

      }

    }

    .feature-grid-section {
      padding: 40px 8% 120px;
      position: relative;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .feature-card {
      min-height: 260px;
      padding: 34px;
      border-radius: 30px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
      border: 1px solid rgba(255, 255, 255, .09);
      backdrop-filter: blur(22px);
      box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
      transition: .35s ease;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(74, 222, 128, .28), transparent 35%);
      opacity: 0;
      transition: .35s;
    }

    .feature-card:hover::before {
      opacity: 1;
    }

    .feature-card:hover {
      transform: translateY(-14px) scale(1.02);
      border-color: rgba(74, 222, 128, .45);
    }

    .feature-icon {
      width: 64px;
      height: 64px;
      display: grid;
      place-items: center;
      font-size: 34px;
      border-radius: 22px;
      margin-bottom: 24px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .feature-card h3 {
      font-size: 24px;
      margin-bottom: 14px;
      position: relative;
      z-index: 2;
    }

    .feature-card p {
      color: #CBD5E1;
      line-height: 1.7;
      position: relative;
      z-index: 2;
    }

    @media(max-width: 992px) {
      .feature-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width: 700px) {
      .feature-grid {
        grid-template-columns: 1fr;
      }

      .feature-card {
        min-height: auto;
      }
    }

    .showcase-section {
      padding: 80px 8% 120px;
      position: relative;
    }

    .showcase {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
      margin-bottom: 130px;
    }

    .showcase.reverse .showcase-text {
      order: 2;
    }

    .showcase.reverse .watchlist-card {
      order: 1;
    }

    .mini-badge {
      display: inline-block;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(74, 222, 128, .12);
      border: 1px solid rgba(74, 222, 128, .25);
      color: #4ade80;
      font-weight: 700;
      margin-bottom: 22px;
    }

    .showcase-text h2 {
      font-size: 48px;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .showcase-text p {
      color: #CBD5E1;
      font-size: 18px;
      line-height: 1.8;
      margin-bottom: 25px;
    }

    .showcase-text ul {
      list-style: none;
    }

    .showcase-text li {
      margin-bottom: 14px;
      color: #E2E8F0;
    }

    .showcase-text li::before {
      content: "✓";
      color: #4ade80;
      font-weight: 900;
      margin-right: 12px;
    }

    /* Portfolio dashboard card */

    .dashboard-card,
    .watchlist-card,
    .option-card {
      background:
        linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 34px;
      padding: 34px;
      backdrop-filter: blur(26px);
      box-shadow: 0 35px 90px rgba(0, 0, 0, .28);
    }

    .dash-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 35px;
    }

    .dash-top small {
      color: #CBD5E1;
    }

    .dash-top h3 {
      font-size: 42px;
      margin-top: 8px;
    }

    .dash-top span {
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(34, 197, 94, .16);
      color: #4ade80;
      font-weight: 800;
    }

    .chart-line {
      height: 180px;
      display: flex;
      align-items: end;
      gap: 18px;
      margin-bottom: 30px;
    }

    .chart-line span {
      width: 100%;
      border-radius: 999px;
      background: linear-gradient(to top, #2563eb, #22c55e);
      animation: chartPulse 2s infinite alternate;
    }

    .chart-line span:nth-child(1) {
      height: 45%;
    }

    .chart-line span:nth-child(2) {
      height: 70%;
      animation-delay: .2s;
    }

    .chart-line span:nth-child(3) {
      height: 55%;
      animation-delay: .4s;
    }

    .chart-line span:nth-child(4) {
      height: 88%;
      animation-delay: .6s;
    }

    .chart-line span:nth-child(5) {
      height: 76%;
      animation-delay: .8s;
    }

    @keyframes chartPulse {
      from {
        transform: scaleY(.82);
      }

      to {
        transform: scaleY(1.05);
      }
    }

    .mini-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .mini-row div {
      padding: 20px;
      border-radius: 20px;
      background: rgba(255, 255, 255, .07);
    }

    .mini-row small {
      display: block;
      color: #CBD5E1;
      margin-bottom: 8px;
    }

    .green {
      color: #4ade80;
    }

    .red {
      color: #f87171;
    }

    /* Watchlist */

    .watchlist-card {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .watch-item {
      padding: 22px;
      border-radius: 20px;
      background: rgba(255, 255, 255, .07);
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: .3s;
    }

    .watch-item:hover {
      transform: translateX(8px);
      background: rgba(255, 255, 255, .12);
    }

    /* Option chain */

    .option-head {
      display: flex;
      justify-content: space-between;
      margin-bottom: 25px;
    }

    .option-head span {
      color: #4ade80;
      font-weight: 800;
    }

    .option-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      padding: 18px;
      border-radius: 16px;
      margin-bottom: 12px;
      background: rgba(255, 255, 255, .07);
      text-align: center;
    }

    .option-row.head {
      background: rgba(37, 99, 235, .25);
      color: #CBD5E1;
    }

    .option-row.active {
      border: 1px solid rgba(74, 222, 128, .45);
      background: rgba(74, 222, 128, .1);
    }

    @media(max-width: 900px) {
      .showcase {
        grid-template-columns: 1fr;
      }

      .showcase.reverse .showcase-text,
      .showcase.reverse .watchlist-card {
        order: unset;
      }

      .showcase-text h2 {
        font-size: 36px;
      }
    }

    .plans-section {
      padding: 120px 8%;
    }

    .section-heading {
      text-align: center;
      max-width: 900px;
      margin: auto auto 80px;
    }

    .small-title {
      color: #4ade80;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .section-heading h2 {
      font-size: 56px;
      margin: 20px 0;
    }

    .section-heading p {
      color: #CBD5E1;
      line-height: 1.8;
    }

    .plans-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .plan-card {
      position: relative;
      padding: 45px;
      border-radius: 30px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .08);
      backdrop-filter: blur(20px);
    }

    .plan-card.pro {
      border: 2px solid #4ade80;
    }

    .popular {
      position: absolute;
      top: -15px;
      right: 30px;
      background: #4ade80;
      color: #050816;
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
    }

    .plan-name {
      font-size: 18px;
      color: #4ade80;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .plan-card h3 {
      font-size: 56px;
      margin-bottom: 20px;
    }

    .plan-desc {
      color: #CBD5E1;
      margin-bottom: 30px;
    }

    .plan-card ul {
      list-style: none;
    }

    .plan-card li {
      margin-bottom: 16px;
      color: #E2E8F0;
    }

    .download-section {
      padding: 120px 8%;
    }

    .download-card {
      padding: 70px;
      text-align: center;
      border-radius: 40px;
      background: linear-gradient(135deg, #2563eb, #22c55e);
    }

    .download-card h2 {
      font-size: 56px;
      margin-bottom: 20px;
    }

    .download-card p {
      font-size: 20px;
      margin-bottom: 40px;
    }

    .download-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .download-btn {
      padding: 18px 34px;
      border-radius: 16px;
      background: white;
      color: #2563eb;
      font-weight: 700;
      text-decoration: none;
    }

    .download-btn.outline {
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, .4);
    }

    .legal-section {
      padding: 80px 8%;
    }

    .legal-card {
      padding: 40px;
      background: #FFF7ED;
      color: #444;
      border-left: 6px solid #F59E0B;
      border-radius: 24px;
      line-height: 1.9;
    }

    footer {
      margin-top: 100px;
      padding: 80px 8%;
      background: #020617;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 50px;
    }

    .footer-grid h3,
    .footer-grid h4 {
      margin-bottom: 20px;
    }

    .footer-grid p {
      color: #94A3B8;
      line-height: 1.8;
    }

    .footer-grid a {
      display: block;
      margin-bottom: 12px;
      color: #CBD5E1;
      text-decoration: none;
    }

    footer hr {
      margin: 40px 0;
      border: none;
      height: 1px;
      background: rgba(255, 255, 255, .08);
    }

    .copyright {
      text-align: center;
      color: #94A3B8;
      line-height: 1.8;
    }

    @media(max-width:900px) {

      .plans-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .section-heading h2,
      .download-card h2 {
        font-size: 36px;
      }

      .download-card {
        padding: 45px 25px;
      }

    }
