/* ==========================
   YOVIK Launch Calculator
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,Segoe UI,Arial,sans-serif;
    background:#090909;
    color:#fff;
    line-height:1.6;
    overflow-x:hidden;
}

.mouse-glow{
    position:fixed;
    width:300px;
    height:300px;
    background:radial-gradient(circle,
    rgba(0,255,120,.18) 0%,
    transparent 70%);
    pointer-events:none;
    transform:translate(-50%,-50%);
    z-index:0;
}

.hero {
    min-height: 55vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 120px 20px 80px;

    box-sizing: border-box;

    width: 100%;
    max-width: 100%;

    position: relative;
}

.hero-content {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;

    box-sizing: border-box;

    position: relative;
    z-index: 2;
}

.badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:999px;
    background:#111;
    border:1px solid #1f1f1f;
    color:#00d26a;
    font-size:.8rem;
    letter-spacing:1px;
    margin-bottom:20px;
}

.hero h1{
    font-size:clamp(3rem,7vw,5rem);
    margin-bottom:10px;
    font-weight:800;
}

.subtitle{
    font-size:1.4rem;
    color:#bcbcbc;
    margin-bottom:20px;
}

.description{
    max-width:650px;
    margin:0 auto 40px;
    color:#8d8d8d;
}

.hero-button{
    display:inline-block;
    background:#00c853;
    color:#fff;
    text-decoration:none;
    padding:15px 32px;
    border-radius:12px;
    font-weight:700;
    transition:.25s;
}

.hero-button:hover{
    transform:translateY(-2px);
    background:#00db5c;
}

main{
    position:relative;
    z-index:2;
}

.workspace{
    max-width:1400px;
    margin:auto;
    padding:50px 25px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:30px;
    align-items:start;
}

.card{
    background:#111;
    border:1px solid #202020;
    border-radius:18px;
    padding:28px;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}

.card h2{
    margin-bottom:10px;
    font-size:1.4rem;
}

.card p{
    color:#9d9d9d;
    margin-bottom:20px;
}
.planner{
    display:flex;
    flex-direction:column;
}

.snapshot{
    position:sticky;
    top: .0;
}

.snapshot-card{
    min-height:650px;
}

.business-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.business-card{
    background:#181818;
    border:1px solid #2b2b2b;
    border-radius:14px;
    color:#fff;
    padding:18px;
    cursor:pointer;
    font-size:1rem;
    transition:.25s;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
}

.business-card:hover{
    border-color:#00c853;
    transform:translateY(-3px);
}

.business-card.active{
    background:#00c853;
    border-color:#00c853;
}

.business-card span{
    font-weight:600;
}

.input-group{
    display:flex;
    flex-direction:column;
    margin-bottom:20px;
}

.input-group label{
    margin-bottom:8px;
    color:#cfcfcf;
    font-size:.95rem;
}

.input-group input{
    width:100%;
    padding:14px;
    border-radius:10px;
    border:1px solid #2b2b2b;
    background:#1a1a1a;
    color:#fff;
    font-size:1rem;
    outline:none;
    transition:.2s;
}

.input-group input:focus{
    border-color:#00c853;
    box-shadow:0 0 0 3px rgba(0,200,83,.15);
}

.stat{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    border-bottom:1px solid #222;
}

.stat span{
    color:#bdbdbd;
}

.stat strong{
    font-size:1.4rem;
    color:#00d26a;
}
.potential{
    margin-top:35px;
}

.potential-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
}

.progress-bar{
    width:100%;
    height:14px;
    background:#222;
    border-radius:999px;
    overflow:hidden;
    margin-bottom:15px;
}

.progress-fill{
    width:0%;
    height:100%;
    background:linear-gradient(90deg,#ff3b30,#ffd60a,#00c853);
    transition:width .4s ease;
}

#potentialText{
    color:#9c9c9c;
    margin-top:10px;
}

.upgrade{
    max-width:1000px;
    margin:70px auto;
    padding:50px 30px;
    text-align:center;
    background:#111;
    border:1px solid #222;
    border-radius:20px;
}

.upgrade h2{
    font-size:2rem;
    margin-bottom:15px;
}

.upgrade p{
    color:#9d9d9d;
    max-width:650px;
    margin:0 auto 30px;
}

.email-signup{
    max-width:700px;
    margin:0 auto 80px;
    text-align:center;
    padding:0 20px;
}

.email-signup h2{
    margin-bottom:15px;
}

.email-signup p{
    color:#9d9d9d;
    margin-bottom:25px;
}

.email-signup form{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    justify-content:center;
}

.email-signup input{
    flex:1;
    min-width:260px;
    padding:15px;
    border-radius:10px;
    border:1px solid #2b2b2b;
    background:#1a1a1a;
    color:#fff;
}

.email-signup button{
    padding:15px 28px;
    border:none;
    border-radius:10px;
    background:#00c853;
    color:#fff;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.email-signup button:hover{
    background:#00db5c;
    transform:translateY(-2px);
}

@media (max-width:950px){

.workspace{
    grid-template-columns:1fr;
}

.snapshot{
    position:static;
}

.business-grid{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:3rem;
}

.email-signup form{
    flex-direction:column;
}

.email-signup button,
.email-signup input{
    width:100%;
}

}

.business-card.active {
    background: linear-gradient(135deg, #00c853, #00e676);
    border: 2px solid #00e676;
    box-shadow: 0 0 18px rgba(0, 200, 83, 0.35);
    transform: translateY(-2px);
    color: #fff;
}

/* ================= YOVIK CALCULATOR NAV ================= */

.calculator-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 30px;

    box-sizing: border-box;

    z-index: 100;
}

.calculator-brand {
    display: block;
}

.calculator-brand img {
    width: 110px;
    height: auto;
    display: block;
}

.home-link {
    display: inline-block;

    color: #ffffff;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    padding: 10px 18px;

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;

    background: rgba(0,0,0,0.35);

    transition: all 0.2s ease;
}

.home-link:hover {
    background: rgba(0,0,0,0.65);
    border-color: #00d26a;
    color: #00d26a;
}

@media (max-width: 600px) {

    .calculator-nav {
        padding: 15px 16px;
    }

    .calculator-brand img {
        width: 80px;
    }

    .home-link {
        font-size: 13px;
        padding: 8px 13px;
    }

}

/* =========================================================
   YOVIK LAUNCH CALCULATOR — VISUAL UPGRADE
========================================================= */


/* ==========================
   GLOBAL ATMOSPHERE
========================== */

body {
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(32, 255, 103, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 25%,
            rgba(255, 60, 60, 0.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 50% 90%,
            rgba(255, 211, 78, 0.05),
            transparent 30%
        ),
        #050505;

}


/* ==========================
   HERO
========================== */

.hero {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(32, 255, 103, 0.10),
            transparent 32%
        ),
        radial-gradient(
            circle at 15% 50%,
            rgba(255, 59, 59, 0.08),
            transparent 30%
        ),
        #050505;
}


.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(32,255,103,0.12),
            transparent 65%
        );

    filter: blur(25px);

    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 2;
}


.badge {
    border: 1px solid rgba(32,255,103,0.55);

    box-shadow:
        0 0 20px rgba(32,255,103,0.10),
        inset 0 0 15px rgba(32,255,103,0.04);
}


.hero h1 {
    text-shadow:
        0 0 30px rgba(32,255,103,0.12);
}


/* ==========================
   WORKSPACE
========================== */

.workspace {
    position: relative;
    align-items: flex-start;
}


.planner,
.snapshot {
    position: relative;
}


/* ==========================
   ALL CALCULATOR CARDS
========================== */

.card {
    position: relative;

    border: 1px solid rgba(255,255,255,0.08);

    background:
        linear-gradient(
            145deg,
            rgba(20,20,20,0.96),
            rgba(8,8,8,0.98)
        );

    box-shadow:
        0 20px 60px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.025);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.card:hover {
    border-color:
        rgba(32,255,103,0.22);

    box-shadow:
        0 24px 70px rgba(0,0,0,0.45),
        0 0 25px rgba(32,255,103,0.05);
}


/* ==========================
   CARD HEADINGS
========================== */

.card h2 {
    position: relative;

    letter-spacing: -0.5px;
}


.card h2::after {
    content: "";

    display: block;

    width: 45px;
    height: 3px;

    margin-top: 12px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            #ff3b3b,
            #ffd34e,
            #20ff67
        );

    box-shadow:
        0 0 12px rgba(32,255,103,0.25);
}


/* ==========================
   BUSINESS TYPE BUTTONS
========================== */

.business-grid {
    gap: 14px;
}


.business-card {
    position: relative;

    border: 1px solid rgba(255,255,255,0.10);

    background:
        linear-gradient(
            145deg,
            #151515,
            #0b0b0b
        );

    color: rgba(255,255,255,0.90);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.025);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.business-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(32,255,103,0.45);

    background:
        linear-gradient(
            145deg,
            #181818,
            #101010
        );

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35),
        0 0 20px rgba(32,255,103,0.08);
}


.business-card.active {
    border-color: #20ff67;

    background:
        linear-gradient(
            145deg,
            rgba(32,255,103,0.13),
            rgba(10,10,10,0.98)
        );

    box-shadow:
        0 0 0 1px rgba(32,255,103,0.12),
        0 0 25px rgba(32,255,103,0.15);
}


/* ==========================
   INPUT GROUPS
========================== */

.input-group {
    position: relative;
}


.input-group label {
    font-weight: 600;
    color: rgba(255,255,255,0.82);
}


.input-group input {
    border: 1px solid rgba(255,255,255,0.10);

    background:
        linear-gradient(
            145deg,
            #181818,
            #101010
        );

    color: #ffffff;

    box-shadow:
        inset 0 1px 8px rgba(0,0,0,0.30);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.input-group input:hover {
    border-color:
        rgba(255,255,255,0.20);
}


.input-group input:focus {
    outline: none;

    border-color: #20ff67;

    background:
        linear-gradient(
            145deg,
            #1b1b1b,
            #111111
        );

    box-shadow:
        0 0 0 2px rgba(32,255,103,0.08),
        0 0 22px rgba(32,255,103,0.10),
        inset 0 1px 8px rgba(0,0,0,0.30);
}


.input-group input::placeholder {
    color: rgba(255,255,255,0.35);
}


/* ==========================
   RECURRING COSTS
========================== */

.card h3 {
    margin-top: 30px;
    margin-bottom: 18px;

    padding-bottom: 10px;

    font-size: 17px;
    letter-spacing: 0.5px;

    color: #ffd34e;

    border-bottom: 1px solid rgba(255,211,78,0.16);
}


.card h3:first-of-type {
    margin-top: 28px;
}


/* ==========================
   SNAPSHOT — MAKE IT THE STAR
========================== */

.snapshot {
    position: relative;
}


.snapshot-card {
    border: 1px solid rgba(32,255,103,0.18);

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(32,255,103,0.07),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #111111,
            #070707
        );

    box-shadow:
        0 25px 80px rgba(0,0,0,0.50),
        0 0 40px rgba(32,255,103,0.05);
}


.snapshot-card h2 {
    font-size: 28px;
}


.snapshot-card .stat {
    transition:
        background 0.2s ease,
        padding 0.2s ease;
}


.snapshot-card .stat:hover {
    background:
        rgba(32,255,103,0.025);
}


.snapshot-card .stat strong {
    color: #20ff67;

    text-shadow:
        0 0 14px rgba(32,255,103,0.18);
}


/* ==========================
   PAYBACK
========================== */

#payback {
    color: #ffd34e;

    text-shadow:
        0 0 14px rgba(255,211,78,0.18);
}


/* ==========================
   LAUNCH SCORE
========================== */

.potential {
    position: relative;

    margin-top: 28px;

    padding: 24px;

    border: 1px solid rgba(255,211,78,0.16);
    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255,211,78,0.045),
            rgba(32,255,103,0.025)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.025);
}


.potential-header {
    margin-bottom: 14px;
}


.potential-header span {
    font-weight: 700;
    letter-spacing: 0.4px;
}


#potentialPercent {
    font-size: 25px;

    color: #ffd34e;

    text-shadow:
        0 0 15px rgba(255,211,78,0.20);
}


/* ==========================
   SCORE BAR
========================== */

.progress-bar {
    position: relative;

    height: 13px;

    overflow: hidden;

    border-radius: 999px;

    background:
        #1b1b1b;

    box-shadow:
        inset 0 2px 6px rgba(0,0,0,0.45);
}


.progress-fill {
    position: relative;

    height: 100%;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #ff3b3b 0%,
            #ff9f1c 35%,
            #ffd34e 60%,
            #20ff67 100%
        );

    box-shadow:
        0 0 18px rgba(32,255,103,0.28);

    transition:
        width 0.5s ease;
}


.progress-fill::after {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    width: 80px;

    right: -80px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.45),
            transparent
        );

    animation:
        scoreShimmer 2.5s linear infinite;
}


@keyframes scoreShimmer {

    from {
        right: 100%;
    }

    to {
        right: -80px;
    }

}


/* ==========================
   SCORE MESSAGE
========================== */

#potentialText {
    color: rgba(255,255,255,0.72);

    line-height: 1.65;
}


/* ==========================
   UPGRADE SECTION
========================== */

.upgrade {
    position: relative;

    overflow: hidden;

    border-top: 1px solid rgba(32,255,103,0.10);
    border-bottom: 1px solid rgba(255,211,78,0.10);

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(255,59,59,0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 50%,
            rgba(32,255,103,0.08),
            transparent 30%
        ),
        #080808;
}


.upgrade h2 {
    text-shadow:
        0 0 25px rgba(32,255,103,0.10);
}


/* ==========================
   HERO BUTTONS
========================== */

.hero-button {
    position: relative;

    overflow: hidden;

    border: none;

    background:
        linear-gradient(
            90deg,
            #ff3b3b,
            #ff9f1c,
            #ffd34e,
            #20ff67
        );

    background-size: 200% 100%;

    color: #050505;

    font-weight: 900;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35),
        0 0 25px rgba(32,255,103,0.10);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-position 0.4s ease;
}


.hero-button:hover {
    transform: translateY(-3px);

    background-position:
        100% 0;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.40),
        0 0 35px rgba(32,255,103,0.18);
}


/* ==========================
   EMAIL SIGNUP
========================== */

.email-signup {
    position: relative;

    background:
        linear-gradient(
            180deg,
            #080808,
            #050505
        );
}


.email-signup input {
    border: 1px solid rgba(255,255,255,0.10);

    background: #111111;

    color: #ffffff;
}


.email-signup input:focus {
    outline: none;

    border-color: #20ff67;

    box-shadow:
        0 0 20px rgba(32,255,103,0.10);
}


.email-signup button {
    background:
        linear-gradient(
            90deg,
            #ff3b3b,
            #20ff67
        );

    color: #050505;

    font-weight: 900;

    border: none;

    box-shadow:
        0 0 25px rgba(32,255,103,0.08);
}


/* ==========================
   MOUSE GLOW
========================== */

.mouse-glow {
    opacity: 0.45;

    filter: blur(20px);

    pointer-events: none;
}


/* ==========================
   MOBILE
========================== */

@media (max-width: 800px) {

    .card {
        box-shadow:
            0 15px 45px rgba(0,0,0,0.35);
    }

    .snapshot-card {
        box-shadow:
            0 20px 55px rgba(0,0,0,0.45),
            0 0 30px rgba(32,255,103,0.04);
    }

    .potential {
        padding: 20px;
    }

}

/* =========================================================
   PREMIUM COGS TOOL
========================================================= */

.premium-tool-cta {
    width: 100%;
    margin-top: 24px;
    padding: 2px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        #ff3b30,
        #ffb300,
        #19ff7a
    );
    box-sizing: border-box;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.premium-tool-cta:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 18px rgba(25, 255, 122, 0.18),
        0 0 35px rgba(255, 179, 0, 0.10);
}

.premium-tool-content {
    padding: 28px 26px;
    border-radius: 16px;
    background: #151515;
    text-align: left;
    box-sizing: border-box;
}


/* YOVIK+ BADGE */

.premium-tool-badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 7px 15px;
    border-radius: 999px;
    background: #f5a623;
    color: #111;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.3px;
}


/* HEADING */

.premium-tool-content h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.premium-tool-content h2 span {
    color: #19ff7a;
}


/* DESCRIPTION */

.premium-tool-content p {
    margin: 0 0 22px;
    color: #bdbdbd;
    font-size: 0.92rem;
    line-height: 1.6;
}


/* YOVIK+ BUTTON */

.premium-tool-button {
    display: block;
    width: 100%;
    padding: 13px 16px;
    box-sizing: border-box;
    border: none;
    border-radius: 11px;
    background: #2d2d2d;
    color: #ffffff;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.premium-tool-button:hover {
    background: #383838;
    transform: translateY(-1px);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}


/* COMING SOON */

.premium-tool-content small {
    display: block;
    margin-top: 12px;
    color: #bdbdbd;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .premium-tool-cta {
        margin-top: 20px;
        border-radius: 16px;
    }

    .premium-tool-content {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .premium-tool-content h2 {
        font-size: 1.5rem;
    }

    .premium-tool-content p {
        font-size: 0.88rem;
    }

}


