:root {
    --blue: #1f5eb8;
    --blue-dark: #123b78;
    --blue-light: #eef5ff;

    --green: #15803d;
    --green-light: #eaf8ef;

    --orange: #d97706;
    --yellow: #ca8a04;

    --text: #1d2b3a;
    --muted: #667085;
    --border: #dce3ec;

    --bg: #f7f9fc;
    --white: #ffffff;

    --shadow: 0 8px 30px rgba(30, 55, 90, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

/* =====================================================
   HEADER
===================================================== */

header {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 30px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: clamp(2rem, 2vw + 0.5rem, 2.5rem);
    font-weight: 700;
    letter-spacing: -.5px;
    cursor:pointer;
}
.logo:hover {
    cursor:pointer;
}

.logo span {
    color: var(--blue);
}

.logo sup {
    color: var(--blue);
    font-size: 0.60em;
    vertical-align: super;
    font-weight: 700;
}

.supID {
    color: var(--blue);
    font-size: 0.60em;
    vertical-align: super;
    font-weight: 700;
}

.msgWinIQ {color:black;font-weight: 700; letter-spacing: -.5px;}
.msgWinIQ sup {color: var(--blue);font-size: 0.75em; vertical-align: super; font-weight: 700;}


.tagline {
    display: block;
    font-size: clamp(0.95rem, 0.9vw + 0.1rem, 1.0rem);
    font-weight: normal;
    color: var(--muted);
    margin-top: -3px;
}

@media (max-width: 700px) {
    .logo {font-size: 18pt;}
    .tagline {display: block;font-size: 9pt;font-weight: normal;color: var(--muted);margin-top: -3px;}
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    border: 0;
    border-radius: 7px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: .2s;
}

.btn:hover {
    xtransform: translateY(-1px);
    background-color:blue;
    color:white;
}

.btn-primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 5px 14px rgba(31, 94, 184, .18);
}

.btn-outline {
    background: white;
    border: 1px solid var(--blue);
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline .fa-caret-right {
  font-size: 16pt;
  position: relative;
  top: -1px; /* nudge up slightly; try -2px if still off */
}

/* Mobile menu */

.mobile-menu-button {
    display: none;
    background: none;
    border: 0;
    font-size: 28px;
    cursor: pointer;
}

.btn-outline {
    display:flex; 
    align-items:center; 
    gap: 8px;
    }

.evaluate-icon svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 700px) {
    #btnCreate span,
    #btnCreds span {
        display: none;
    }

    #btnCreate,
    #btnCreds {
        padding: 10px 12px; /* tighter padding since it's icon-only now */
    }
}



/* =====================================================
   HERO
===================================================== */

.hero {
    background:
        radial-gradient(circle at 75% 30%, #e7f0ff 0%, transparent 30%),
        linear-gradient(to bottom, #ffffff, #f5f8fc);

    padding: 75px 30px 65px;
}

.hero-container {
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.08;
    margin: 0 0 25px;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--blue);
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}


/* =====================================================
   HERO SCORE CARD
===================================================== */

.score-card {
    background: white;
    xorder: 1px solid var(--border);
    border-radius: 18px;
    padding: 35px;
    box-shadow: var(--shadow);
}

.score-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.score-label {
    font-size: 14px;
    color: var(--muted);
}

.score-number {
    font-size: 58px;
    font-weight: bold;
    color: var(--green);
}

.score-number small {
    font-size: 18px;
    color: var(--text);
}

.score-status {
    color: var(--green);
    font-weight: bold;
    margin-bottom: 20px;
}

.circle-score {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background:
        conic-gradient(
            var(--green) 0deg 313deg,
            #e5e7eb 313deg 360deg
        );

    display: grid;
    place-items: center;
}

.circle-score-inner {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: white;

    display: grid;
    place-items: center;

    font-size: 32px;
    font-weight: bold;
}

.score-divider {
    height: 1px;
    background: var(--border);
    margin: 25px 0;
}

.score-row {
    display: grid;
    grid-template-columns: 150px 1fr 35px;
    gap: 15px;
    align-items: center;
    margin: 16px 0;

    font-size: 14px;
}

.progress {
    height: 6px;
    background: #e7ebf0;
    border-radius: 20px;
    overflow: hidden;
}

.progress span {
    display: block;
    height: 100%;
    background: var(--green);
    border-radius: 20px;
}


/* =====================================================
   HOW IT WORKS
===================================================== */

.section {
    padding: 70px 30px;
}

.section-white {
    background: white;
}

.section-title {
    text-align: center;
    font-size: 34px;
    margin: 0 0 50px;
}

.steps {
    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 55px;
    height: 55px;
    margin: auto auto 20px;
    border-radius: 50%;
    background: var(--blue);
    color: white;

    display: grid;
    place-items: center;

    font-size: 22px;
    font-weight: bold;
}

.step:last-child .step-number {
    background: var(--green);
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}


/* =====================================================
   WHAT WE EVALUATE
===================================================== */

.evaluate-grid {
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.evaluate-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 5px 20px;
    text-align: center;
}

.evaluate-icon {
    font-size: 34px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.evaluate-card h3 {
    font-size: 16px;
}

.evaluate-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}


/* =====================================================
   APP PREVIEW
===================================================== */

.app-section {
    padding: 70px 30px;
    background: #eef2f7;

}

.app-window {
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: 220px 300px 1fr;

    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 620px;
}


/* LEFT NAV */

.app-sidebar {
    background: #102c4a;
    color: white;
    padding: 25px 15px;
}

.app-logo {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 35px;
}

.sidebar-link {
    display: block;
    padding: 13px 15px;
    border-radius: 7px;
    margin-bottom: 5px;
    color: #d8e3ef;
    font-size: 14px;
}

.sidebar-link.active {
    background: #1d5fb9;
    color: white;
}

.sidebar-bottom {
    margin-top: 80px;
}


/* PURSUITS */

.pursuits-panel {
    padding: 25px;
    border-right: 1px solid var(--border);
}

.pursuits-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.small-btn {
    padding: 8px 12px;
    font-size: 12px;
    background: var(--blue);
    color: white;
    border: 0;
    border-radius: 5px;
}

.pursuit-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
    margin-top: 15px;
    cursor: pointer;
}

.pursuit-card.active {
    border-color: var(--blue);
    background: var(--blue-light);
}

.pursuit-title {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.4;
}

.pursuit-meta {
    font-size: 11px;
    color: var(--muted);
    margin-top: 8px;
}

.pursuit-score {
    float: right;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--green);

    display: grid;
    place-items: center;

    color: var(--green);
    font-weight: bold;
}


/* MAIN APP */

.app-main {
    padding: 30px;
    min-width: 0;
}

.pursuit-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.pursuit-name {
    font-size: 25px;
    font-weight: bold;
}

.status {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
}

.tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid var(--border);
    margin: 25px 0;
    overflow-x: auto;
}

.tab {
    padding: 12px 0;
    white-space: nowrap;
    font-size: 13px;
    color: var(--muted);
    cursor: pointer;
    xransition: background-color 0.15s ease, color 0.15s ease;
}

.tab:hover {
    color: var(--black) !important;
    xont-weight: 700; qqq
}

.tab:hover:not(.active) {
    //background-color: #f0f4fa;
    color: #1a73e8;
}

.tab.active {
    color: var(--blue);
    border-bottom: 3px solid var(--blue);
}


/* DASHBOARD */

.dashboard-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 20px;
}

.dashboard-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}

.dashboard-card h4 {
    margin: 0 0 20px;
}

.win-score-big {
    font-size: 44px;
    color: var(--green);
    font-weight: bold;
}

.score-chart {
    height: 200px;
    position: relative;
    xborder-bottom: 1px solid var(--border);
}

.chart-line {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 90px;

    border-bottom: 3px solid var(--green);

    transform: skewY(-15deg);
}

.recommendation {
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}


/* BREAKDOWN */

.breakdown-title {
    margin-top: 30px;
}

.breakdown {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.breakdown-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px;
}

.breakdown-card h5 {
    margin: 0 0 15px;
    font-size: 12px;
}

.breakdown-score {
    font-size: 24px;
    color: var(--green);
    font-weight: bold;
}


/* =====================================================
   CTA
===================================================== */

.cta {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: white;
    padding: 70px 30px;
}

.cta-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.cta h2 {
    font-size: 40px;
    margin: 0 0 15px;
}

.cta p {
    color: #dce9ff;
    margin-bottom: 30px;
}

.btn-white {
    background: white;
    color: var(--blue);
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    background: #102c4a;
    color: white;
    padding: 45px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-links {
    display: flex;
    gap: 25px;
    color: #c6d4e4;
    font-size: 13px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .evaluate-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .app-window {
        grid-template-columns: 200px 260px 1fr;
    }

    .dashboard-top {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-top .dashboard-card:last-child {
        grid-column: span 2;
    }

    .breakdown {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 950px) {

    .nav-links {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 55px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-window {
        grid-template-columns: 180px 1fr;
    }

    .pursuits-panel {
        display: none;
    }

    .app-main {
        grid-column: 2;
    }

    .breakdown {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .nav-container {
        padding: 0 18px;
    }

    .hero,
    .section,
    .app-section,
    .cta {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .score-top {
        align-items: flex-start;
    }

    .circle-score {
        width: 100px;
        height: 100px;
    }

    .circle-score-inner {
        width: 76px;
        height: 76px;
        font-size: 25px;
    }

    .score-row {
        grid-template-columns: 110px 1fr 30px;
        gap: 8px;
        font-size: 12px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .evaluate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-window {
        display: block;
    }

    .app-sidebar {
        display: none;
    }

    .app-main {
        padding: 20px;
    }

    .dashboard-top {
        grid-template-columns: 1fr;
    }

    .dashboard-top .dashboard-card:last-child {
        grid-column: auto;
    }

    .breakdown {
        grid-template-columns: 1fr 1fr;
    }

    .pursuit-top {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}


.fa-eye {color:silver;font-size:14pt;padding-right:4px;}
.fa-eye:hover {color:black !important;}
.fa-eye-slash {color:silver;font-size:14pt;padding-right:4px;}
.fa-eye-slash:hover {color:black !important;}

.input-icon {
  position: absolute;
  right: 3px;
  color: silver;
  /* Vertically center the icon in the input */
  top: calc(50% - 0.55em);
  display:flex;
  }
.input-icon:hover {color:black !important;}
.custom-wrapper {position: relative;}

.forgot-link {
    cursor: pointer;
    color: gray;
    font-size: 9pt;
    float: left;
    padding-top: 12px;
    padding-left: 12px;
    text-decoration: none;
}
.forgot-link:hover {
    color: blue;
    xtext-decoration: underline;
}

.breakdown-card h5 {
    height: 40px; /* adjust based on your font-size/line-height */
    margin: 0 0 8px 0;
    display: flex;
    align-items: top; ccenter;
}

.score-trend-card {
    min-width: 0;
}

.score-chart {
    width: 100%;
    height: 150px;
}

#trendSvg {
    width: 100%;
    height: 100%;
    display: block;
}

#trendLine {
    fill: none;
    stroke: #15803d;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trend-point {
    fill: #15803d;
}

.grid-line {
    stroke: #e2e8f0;
    stroke-width: 1;
    stroke-dasharray: 2 3;
}

.axis-label {
    fill: #667085;
    font-size: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

.app-sidebar {
    display: flex;
    flex-direction: column;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;

    min-height: 48px;
    padding: 10px 15px;

    border-radius: 7px;
    margin-bottom: 5px;

    color: #d8e3ef;
    font-size: 14px;
}

.sidebar-link:hover {
    background: rgba(255,255,255,.08);
    color: white;
}

.sidebar-link.active {
    background: #1d5fb9;
    color: white;
}

.sidebar-icon {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    position: relative;

    font-size: 18px;
}


/* Special icon for New Pursuit */

.pursuit-plus {
    position: relative;
}

.pursuit-plus .fa-bullseye {
    font-size: 18px;
}

.pursuit-plus .fa-plus {
    position: absolute;
    right: 0px;
    top: -2px;
    font-size: 14px;
    font-weight: normal;
    color: white;
    xox-shadow: 0 0 0 1px #ddd;
}


/* Push these links toward the bottom */

.sidebar-bottom {
    margin-top: auto;
    padding-top: 30px;
}

.btn-password {
    border-radius: 3px;
    padding: 3px 5px;
    cursor: pointer;
    font-weight: 600;
    transition: .2s;
    float: right;
    font-size:8pt;
    border: 1px solid silver;
    color: gray;


}

.btn-password:hover {
    background-color:black;
    color:white;
}

.ctrlKey {
    color: maroon;
    font-size: 9pt;
    float: left;
    padding-top: 15px;
    padding-left: 12px;
    text-decoration: none;
 font-weight: 700;
}


a {
    xcolor: #1a73e8;
    color: #0d47a1;
    text-decoration: none;
    transition: color 0.15s ease;
  }

a:hover {
    color: #0d47a1;
    text-decoration: underline;
  }

.status-pill {border: none; border-radius: 4px; padding: 5px 14px; font-size: 11pt; font-weight: 700; color: white; cursor: pointer; appearance: none; -webkit-appearance: none;}
.status-active      { background-color: #1a73e8; }
.status-submitted   { background-color: #7c3aed; }
.status-won         { background-color: #16a34a; }
.status-lost        { background-color: #dc2626; }
.status-no-bid      { background-color: #6b7280; }
.status-archived    { background-color: #475569; }
.status-pill option { background-color: white; color: black; text-align:left; }
.status-pill:focus { outline: none; box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.3); }
