 * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 88px; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--ink);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    button { cursor: pointer; }
    img { max-width: 100%; display: block; }
    .container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--teal-dark);
      background: var(--teal-soft);
      border: 1px solid #d0ece3;
      border-radius: 999px;
      padding: 7px 12px;
      font-size: .78rem;
      font-weight: 700;
    }

    .section-heading { max-width: 720px; }
    .section-heading.center { text-align: center; margin-inline: auto; }
    .section-heading h2 {
      margin-top: 14px;
      color: var(--navy);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.08;
      letter-spacing: -.04em;
    }
    .section-heading p { margin-top: 14px; color: var(--muted); font-size: 1.04rem; }

    .btn {
      min-height: 50px;
      padding: 0 22px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { color: var(--white); background: var(--teal); box-shadow: 0 10px 28px rgba(38, 146, 69, .24); }
    .btn-primary:hover { background: var(--teal-dark); }
    .btn-light { background: var(--white); border-color: var(--line); color: var(--navy); }
    .btn-light:hover { border-color: #C9D7CC; background: #FBFDFB; }
    .btn-dark { background: var(--navy); color: var(--white); }
    .btn-block { width: 100%; }

    /* NAV */
    .navbar {
      position: fixed;
      inset: 0 0 auto;
      z-index: 1000;
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(230,235,239,.9);
    }
    .nav-inner {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand { display: flex; align-items: center; font-weight: 800; color: var(--navy); }
    .brand-logo { display: block; width: 158px; height: 58px; object-fit: contain; object-position: left center; }
    .brand-mark {
      width: 39px; height: 39px; border-radius: 12px;
      display: grid; place-items: center;
      color: white; background: var(--teal);
    }
    .brand-name { font-size: 1.24rem; letter-spacing: -.02em; }
    .brand-name span { color: var(--teal); }
    .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
    .nav-links a { color: #405164; font-size: .92rem; font-weight: 600; }
    .nav-links a:hover { color: var(--teal); }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .nav-login { font-size: .9rem; font-weight: 700; color: var(--navy); padding: 10px 12px; }
    .nav-signup { min-height: 42px; padding-inline: 17px; font-size: .88rem; }
    .menu-toggle { display: none; border: 0; background: none; font-size: 1.3rem; color: var(--navy); }

    /* HERO */
    .hero {
      padding: 142px 0 86px;
      background:
        radial-gradient(circle at 85% 15%, rgba(38,146,69,.12), transparent 28%),
        linear-gradient(180deg, #F4F9F5 0%, #ffffff 100%);
    }
    .hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 66px; align-items: center; }
    .hero-copy h1 {
      margin-top: 18px;
      color: var(--navy);
      font-size: clamp(2.7rem, 5.6vw, 4.7rem);
      line-height: .98;
      letter-spacing: -.055em;
      max-width: 720px;
    }
    .hero-copy h1 span { color: var(--teal); }
    .hero-copy > p { margin-top: 22px; color: var(--muted); font-size: clamp(1.02rem, 1.8vw, 1.18rem); max-width: 620px; }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
    .hero-note { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; color: #667689; font-size: .83rem; }
    .hero-note span { display: inline-flex; gap: 7px; align-items: center; }
    .hero-note i { color: var(--teal); }

    .dashboard-shell {
      background: var(--navy);
      border-radius: 28px;
      box-shadow: 0 30px 80px rgba(36,43,52,.18);
      padding: 14px;
      position: relative;
    }
    .dashboard-shell::before {
      content: '';
      position: absolute;
      width: 120px; height: 120px; border-radius: 50%;
      background: rgba(38,146,69,.15);
      right: -35px; top: -35px;
      z-index: -1;
    }
    .dashboard {
      border-radius: 19px;
      overflow: hidden;
      background: #F7F9F7;
      border: 1px solid rgba(255,255,255,.12);
    }
    .dash-top {
      background: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 18px;
      border-bottom: 1px solid var(--line);
    }
    .mini-brand { display: flex; align-items: center; gap: 8px; color: var(--navy); font-size: .8rem; font-weight: 800; }
    .mini-brand b { color: var(--teal); }
    .dash-user { display: flex; gap: 8px; align-items: center; color: #667689; font-size: .72rem; }
    .avatar { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal); }
    .dash-body { padding: 20px; }
    .dash-welcome { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 16px; align-items: flex-start; }
    .dash-welcome h3 { color: var(--navy); font-size: 1rem; }
    .dash-welcome p { color: var(--muted); font-size: .72rem; }
    .status-pill { white-space: nowrap; background: #e9f8ef; color: #26724a; font-size: .65rem; border-radius: 999px; padding: 6px 9px; font-weight: 700; }
    .metric-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
    .metric { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 13px; }
    .metric small { display: block; color: #7e8b99; font-size: .62rem; margin-bottom: 6px; }
    .metric strong { color: var(--navy); font-size: 1.02rem; }
    .metric .trend { display: inline-flex; gap: 4px; align-items: center; margin-top: 5px; font-size: .58rem; color: var(--teal); }
    .dash-lower { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10px; margin-top: 10px; }
    .panel { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 13px; }
    .panel-title { color: var(--navy); font-size: .7rem; font-weight: 800; margin-bottom: 12px; display: flex; justify-content: space-between; }
    .bar-chart { height: 100px; display: flex; align-items: end; gap: 8px; }
    .bar-chart span { flex: 1; border-radius: 5px 5px 2px 2px; background: #d9eee8; min-height: 15px; }
    .bar-chart span:nth-child(2), .bar-chart span:nth-child(5) { background: var(--teal); }
    .stock-list { list-style: none; display: grid; gap: 10px; }
    .stock-list li { font-size: .62rem; color: #5f7082; display: flex; justify-content: space-between; gap: 8px; }
    .stock-list b { color: var(--danger); }
    .human-card {
      position: absolute;
      left: -36px;
      bottom: 36px;
      background: white;
      border: 1px solid var(--line);
      border-radius: 15px;
      padding: 12px 14px;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 10px;
      max-width: 225px;
    }
    .human-card .icon { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: #fff4df; color: #a56b00; }
    .human-card strong { display: block; color: var(--navy); font-size: .72rem; }
    .human-card span { display: block; color: var(--muted); font-size: .62rem; line-height: 1.4; }

    /* PROBLEM */
    .reality { padding: 90px 0; }
    .reality-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
    .reality-copy h2 { margin-top: 14px; color: var(--navy); font-size: clamp(2rem,4vw,3.15rem); line-height: 1.08; letter-spacing: -.04em; }
    .reality-copy p { color: var(--muted); margin-top: 18px; font-size: 1.04rem; }
    .quote-line { margin-top: 28px; padding-left: 18px; border-left: 3px solid var(--gold); color: #394b5d; font-weight: 600; }
    .problem-board { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
    .problem-board h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 16px; }
    .problem-list { display: grid; gap: 10px; }
    .problem-row { background: white; border: 1px solid var(--line); border-radius: 13px; padding: 13px 14px; display: flex; align-items: center; gap: 12px; color: #435568; font-size: .91rem; }
    .problem-row i { color: var(--gold); width: 22px; text-align: center; }

    /* BENEFITS */
    .benefits { padding: 90px 0; background: #F4F9F5; }
    .benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px; }
    .benefit-card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 25px; }
    .benefit-icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal); margin-bottom: 20px; }
    .benefit-card h3 { color: var(--navy); font-size: 1.04rem; margin-bottom: 8px; }
    .benefit-card p { color: var(--muted); font-size: .9rem; }

    /* FEATURES */
    .features { padding: 100px 0; }
    .feature-stack { margin-top: 48px; display: grid; gap: 22px; }
    .feature-row { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: white; }
    .feature-row:nth-child(even) .feature-copy { order: 2; }
    .feature-row:nth-child(even) .feature-visual { order: 1; }
    .feature-copy { padding: 42px; display: flex; flex-direction: column; justify-content: center; }
    .feature-copy .number { color: var(--gold); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
    .feature-copy h3 { margin-top: 10px; color: var(--navy); font-size: 1.55rem; letter-spacing: -.025em; }
    .feature-copy p { margin-top: 11px; color: var(--muted); }
    .feature-points { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
    .feature-points li { display: flex; gap: 10px; color: #425569; font-size: .9rem; }
    .feature-points i { color: var(--teal); margin-top: 4px; }
    .feature-visual { min-height: 330px; padding: 38px; background: var(--soft); display: grid; place-items: center; }
    .visual-card { width: min(100%, 390px); background: white; border-radius: 18px; border: 1px solid var(--line); box-shadow: 0 16px 45px rgba(11,31,53,.08); padding: 20px; }
    .visual-title { font-size: .77rem; font-weight: 800; color: var(--navy); display: flex; justify-content: space-between; margin-bottom: 14px; }
    .visual-list { display: grid; gap: 9px; }
    .visual-list div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid #eef1f3; font-size: .72rem; color: #5c6c7e; }
    .visual-list div:last-child { border-bottom: 0; }
    .visual-list strong { color: var(--navy); }
    .low { color: var(--danger)!important; }

    /* HOW */
    .how { padding: 90px 0; background: var(--navy); color: white; }
    .how .section-heading h2 { color: white; }
    .how .section-heading p { color: rgba(255,255,255,.68); }
    .how .eyebrow { background: rgba(255,255,255,.08); color: #BFE8C9; border-color: rgba(255,255,255,.1); }
    .steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 45px; }
    .step { border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 26px; background: rgba(255,255,255,.045); }
    .step-num { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: var(--navy); background: #BFE8C9; font-weight: 800; margin-bottom: 21px; }
    .step h3 { font-size: 1.05rem; margin-bottom: 8px; }
    .step p { color: rgba(255,255,255,.65); font-size: .9rem; }

    /* BUSINESS TYPES */
    .who { padding: 90px 0; }
    .business-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
    .business-type { border: 1px solid var(--line); border-radius: 14px; padding: 16px; display: flex; align-items: center; gap: 12px; font-size: .88rem; font-weight: 700; color: #405164; background: white; }
    .business-type i { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal); }

    /* PRICING */
    .pricing { padding: 100px 0; background: var(--soft); }
    .pricing-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: stretch; }
    .price-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; position: relative; }
    .price-card.featured { border: 2px solid var(--teal); box-shadow: 0 20px 55px rgba(38,146,69,.12); }
    .popular { position: absolute; right: 20px; top: 20px; border-radius: 999px; background: var(--teal-soft); color: var(--teal-dark); padding: 6px 9px; font-size: .68rem; font-weight: 800; }
    .plan-tag { font-size: .73rem; font-weight: 800; color: #7a8794; text-transform: uppercase; letter-spacing: .08em; }
    .price-card h3 { margin-top: 10px; color: var(--navy); font-size: 1.42rem; }
    .plan-sub { color: var(--muted); font-size: .87rem; margin-top: 3px; }
    .price { margin: 25px 0 8px; color: var(--navy); font-size: 2rem; font-weight: 800; letter-spacing: -.04em; }
    .price small { font-size: .78rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
    .price-note { min-height: 24px; color: var(--teal-dark); font-size: .72rem; font-weight: 700; }
    .plan-list { list-style: none; display: grid; gap: 11px; margin: 25px 0 28px; flex: 1; }
    .plan-list li { display: flex; align-items: flex-start; gap: 9px; color: #45576a; font-size: .86rem; }
    .plan-list i { color: var(--teal); margin-top: 4px; }
    .plan-list .disabled { color: #a3abb4; }
    .plan-list .disabled i { color: #b9c0c7; }

    /* CTA */
    .cta { padding: 90px 0; }
    .cta-box { border-radius: 28px; padding: 54px; background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: white; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
    .cta-copy { max-width: 650px; }
    .cta-copy h2 { font-size: clamp(2rem,4vw,3rem); line-height: 1.05; letter-spacing: -.04em; }
    .cta-copy p { color: rgba(255,255,255,.7); margin-top: 14px; }
    .cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
    .cta .btn-light { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: white; }

    /* FOOTER */
    footer { background: #071827; color: white; padding: 58px 0 24px; }
    .footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 42px; }
    .footer-desc { max-width: 320px; color: rgba(255,255,255,.58); font-size: .88rem; margin-top: 15px; }
    .footer-title { font-size: .86rem; margin-bottom: 14px; }
    .footer-links { list-style: none; display: grid; gap: 9px; }
    .footer-links a { color: rgba(255,255,255,.58); font-size: .83rem; }
    .footer-links a:hover { color: white; }
    .footer-bottom { margin-top: 42px; border-top: 1px solid rgba(255,255,255,.09); padding-top: 22px; color: rgba(255,255,255,.5); font-size: .77rem; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
    .footer-bottom a { color: #BFE8C9; }

    /* CONTACT */
    .floating-contact { position: fixed; right: 22px; bottom: 22px; z-index: 1200; }
    .contact-trigger { width: 54px; height: 54px; border-radius: 50%; border: 0; display: grid; place-items: center; background: var(--teal); color: white; box-shadow: 0 10px 26px rgba(38,146,69,.28); font-size: 1.1rem; }
    .contact-modal { position: absolute; right: 0; bottom: 66px; width: 290px; border-radius: 18px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); padding: 16px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
    .contact-modal.active { opacity: 1; visibility: visible; transform: translateY(0); }
    .contact-header { display: flex; align-items: center; gap: 9px; color: var(--navy); font-weight: 800; font-size: .88rem; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
    .contact-header i { color: var(--teal); }
    .contact-list { display: grid; gap: 10px; margin-top: 12px; }
    .contact-item { border: 1px solid var(--line); border-radius: 12px; padding: 10px; display: flex; align-items: center; gap: 10px; }
    .contact-avatar { width: 37px; height: 37px; border-radius: 10px; background: var(--teal-soft); color: var(--teal); display: grid; place-items: center; flex: 0 0 auto; }
    .contact-info { flex: 1; min-width: 0; }
    .contact-name { color: var(--navy); font-weight: 800; font-size: .8rem; }
    .contact-phone { color: var(--muted); font-size: .69rem; }
    .contact-icons { display: flex; gap: 6px; }
    .contact-icons a { width: 29px; height: 29px; border-radius: 8px; display: grid; place-items: center; color: var(--teal); background: var(--teal-soft); font-size: .72rem; }

    @media (max-width: 1000px) {
      .hero-grid, .reality-grid { grid-template-columns: 1fr; }
      .hero-copy { text-align: center; }
      .hero-copy > p { margin-inline: auto; }
      .hero-actions, .hero-note { justify-content: center; }
      .dashboard-shell { max-width: 700px; margin: 0 auto; }
      .human-card { left: 16px; }
      .benefit-grid { grid-template-columns: repeat(2,1fr); }
      .business-grid { grid-template-columns: repeat(2,1fr); }
      .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
      .footer-grid > div:last-child { grid-column: 2 / 3; }
    }

    @media (max-width: 820px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 74px; left: 20px; right: 20px;
        padding: 16px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
      }
      .nav-links.active { display: flex; }
      .nav-links a { display: block; padding: 11px 8px; }
      .menu-toggle { display: block; }
      .nav-login { display: none; }
      .feature-row { grid-template-columns: 1fr; }
      .feature-row:nth-child(even) .feature-copy, .feature-row:nth-child(even) .feature-visual { order: initial; }
      .steps, .pricing-grid { grid-template-columns: 1fr; }
      .price-card { max-width: 560px; width: 100%; margin-inline: auto; }
      .cta-box { padding: 42px 30px; align-items: flex-start; flex-direction: column; }
      .footer-grid { grid-template-columns: repeat(2,1fr); }
      .footer-grid > div:last-child { grid-column: auto; }
    }

    @media (max-width: 580px) {
      .container { width: min(100% - 28px, var(--container)); }
      .hero { padding: 118px 0 64px; }
      .hero-copy h1 { font-size: clamp(2.45rem, 13vw, 3.4rem); }
      .hero-actions .btn { width: 100%; }
      .hero-note { gap: 9px 14px; }
      .dashboard-shell { padding: 8px; border-radius: 22px; }
      .dash-body { padding: 13px; }
      .dash-lower { grid-template-columns: 1fr; }
      .human-card { position: static; margin-top: 12px; max-width: none; }
      .reality, .benefits, .features, .who, .pricing, .cta { padding: 70px 0; }
      .benefit-grid, .business-grid { grid-template-columns: 1fr; }
      .feature-copy, .feature-visual { padding: 27px 22px; }
      .feature-visual { min-height: 260px; }
      .cta-box { padding: 32px 22px; border-radius: 22px; }
      .cta-actions .btn { width: 100%; }
      .footer-grid { grid-template-columns: 1fr; }
      .nav-signup span { display: none; }
      .nav-signup { width: 42px; padding: 0; }
      .contact-modal { width: min(290px, calc(100vw - 28px)); }
      .floating-contact { right: 14px; bottom: 14px; }
    }

    @media (prefers-reduced-motion: reduce) {
      * { scroll-behavior: auto!important; transition: none!important; }
    }



/* Custom Bitrise Biz Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --brand-primary: #2563eb;
    --brand-hover: #1d4ed8;
    --brand-accent: #38bdf8;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;

    
    
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary);
}

/* Glowing Background Glow Effects */
.glow-effect {
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(37, 99, 235, 0.12);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Glassmorphism Card Style */
.glass-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.2);
}

/* Smooth Transition Utilities */
a, button {
    transition: all 0.25s ease-in-out;
}