:root {
    --bg: #ffffff;
    --text: #0f172a;
    --muted: #6F85A4;
    --muted-3: #475569;
    --muted-2: #64748b;
    --line: #e2e8f0;
    --line-2: #e5e7eb;
    --brand: #0f172a;
    --brand-2: #000000;
    --alt: #f8fafc;
    --accent: #111827;
    --success: #065f46;
    --success-bg: #ecfdf5;
}

/* Reset / base */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,"Helvetica Neue",Noto Sans,sans-serif;
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: #0f172a;
    text-decoration: none;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container.grid {
    max-width: 760px;
}

.hide-sm {
    display: none;
}

@media (min-width:640px) {
    .hide-sm {
        display: inline-flex;
    }
}

/* NAV / HEADER — for the header snippet you pasted */

/* The whole top bar */
header.nav {
    position: sticky;
    top: 0;
    z-index: 999;
    opacity: 1;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(6px);
    border-bottom: 1px solid var(--line);
    
    
}

    /* Inner flex row with brand, menu, CTAs */
    header.nav .nav__inner {
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

/* Brand area */
.brand {
    display: flex;
    align-items: center;
    
}

.brand__logo {
    width: 32px;
    height: 32px;
    
    display: grid;
    place-items: center;
}

.brand__name {
    font-weight: 600;
    letter-spacing: 0.2px;
}

@media (max-width: 460px) {
    .brand__name {
        font-size: 1rem;
    }
    .hero__title {
        max-width: 320px;
        text-align: center;
        margin: 0 auto;
    }

     .hero-badge-wrapper {
        margin-bottom: 40px!important;
    }

    header.nav .nav__inner .btn{
        padding:.6rem;
        font-size: .8rem;
    }
    .subline {
        padding: 30px!important;
    }
}


/* Icon in the logo */
.icon {
    width: 16px;
    height: 16px;
    color: #fff;
}

/* Menu + CTAs */
.menu {
    display: none;
    gap: 1.25rem;
    font-size: 0.9rem;
}

    .menu a {
        color: #475569;
        text-decoration: none;
    }

        .menu a:hover {
            color: #0f172a;
        }

.nav__ctas {
    display: flex;
    gap: 0.5rem;
}

/* Show menu on md+ */
@media (min-width: 768px) {
    .menu {
        display: flex;
    }
}


.brand {
    display: flex;
    align-items: center;
    
}

.brand__logo {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    
    display: grid;
    place-items: center;
}

.brand__name {
    font-weight: 600;
    letter-spacing: .2px;
}

.icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    color: #fff;
}

.icon--sm {
    width: 12px;
    height: 12px;
}

.menu {
    display: none;
    gap: 1.25rem;
    font-size: .9rem;
}

@media (min-width:768px) {
    .menu {
        display: flex;
    }
}

.menu a {
    color: #475569;
}

    .menu a:hover {
        color: #0f172a;
    }

.nav__ctas {
    display: flex;
    gap: .75rem;
}

/* BUTTONS */
.btn {
    appearance: none;
    border: 0;
    border-radius: 12px;
    background: var(--brand);
    color: #fff;
    padding: .7rem 1rem;
    font-size: .9rem;
    font-weight: 600;
    width: fit-content;
    cursor: pointer;
}

    .btn:hover {
        background: var(--brand-2);
    }

.btn--ghost {
    background: #fff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
}

    .btn--ghost:hover {
        background: #f8fafc;
    }

.btn--block {
    width: 100%;
}

.btn--light {
    background: #fff;
    color: #0f172a;
}

    .btn--light:hover {
        background: #f3f4f6;
    }

.hero-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;

}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: #f3f5f9; /* light neutral pill background */
    color: #4b5563; /* muted dark grey */
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: #111827; /* dark dot */
    border-radius: 999px;
}


/* HERO (index) */
.hero {
    padding: 50px 0 50px 0;
    position: relative;
    overflow: hidden;
}

.grid-2 {
    display: grid;
    gap: 2.5rem;
}

@media (min-width:1024px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.grid-4 {
    display: grid;
    gap: 1rem;
}

@media (min-width:640px) {
    .grid-4 {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (min-width:1024px) {
    .grid-4 {
        grid-template-columns: repeat(4,1fr);
    }
}

.grid-2.gap-10 {
    gap: 2.5rem;
}

.hero__title {
    font-size: clamp(2rem,4vw,2.6rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.02em;
    text-align:center;
    margin-top:0;
    margin-bottom: 0;
}

.subline {
    width: 100%;
    text-align:center;
    padding:0;
    margin:0;
    padding: 20px 0px 100px 0px;
    font-size: 1.1rem;
    font-weight: 400;
}

.subline-form {
    margin:50px 0px 0px 0px;
    padding:0;
    text-align:center;

}

h3.tagline-form {
    margin-top: 0.5rem;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.55;
    position: relative;
    display: inline-block;
    background: #f8fafc;
    color: #475569;
    font-size: 1.05rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 12px;
    margin-top: 0;
    text-align: center;
    letter-spacing: -0.01em;
}

   

.badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .35rem .6rem;
    font-size: .75rem;
    color: #475569;
    margin-bottom: 1rem;
}

.hero__ctas {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    
}

.list {
    margin: 1rem 0 0;
    padding: 0px 0px 0px 15px;
    list-style: none;
    display: grid;
    gap: .5rem;
}

.check {
    width: 18px;
    height: 18px;
    display: inline-block;
    border: 1.6px solid var(--text);
    border-radius: 4px;
    margin-right: .5rem;
    position: relative;
    top: 2px;
}

    .check::after {
        content: "";
        position: absolute;
        left: 3px;
        top: 1px;
        width: 9px;
        height: 5px;
        border-left: 2px solid var(--text);
        border-bottom: 2px solid var(--text);
        transform: rotate(-45deg);
    }


/* CARD PREVIEW (index) */
.card-preview {
    position: relative;
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
    padding: 1rem;
    
}

.card__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title {
    font-weight: 700;
}

.chip {
    font-size: .7rem;
    border-radius: 999px;
    padding: .2rem .5rem;
    border: 1px solid;
    display: inline-block;
}

.chip--success {
    background: var(--success-bg);
    color: #065f46;
    border-color: #a7f3d0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: .5rem;
    margin: 1rem 0rem;

    font-size: .8rem;
}

.stat {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: .5rem;
}

.stat__k {
    font-weight: 600;
}

.tiny {
    font-size: .75rem;
}

.upcase {
    text-transform: uppercase;
    letter-spacing: .06em;
}
.lowcase {
    text-transform: none;
    letter-spacing: normal;
}

.center {
    text-align: center;
}

/* SECTIONS (index + can be reused) */
.section {
    padding: 64px 0;
}

.section--alt {
    background: #f1f5f9;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line-2);
}

.section--dark {
    background: #0f172a;
    color: #fff;
}

.section__title {
    font-size: clamp(1.5rem,3vw,2rem);
    font-weight: 800;
}

.section__title--light {
    color: #fff;
}

.cards {
    gap: 1rem;
}

.card--soft {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

.pill {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #0f172a;
    color: #fff;
    display: grid;
    place-items: center;
}

/* Workflow steps */
.step {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.25rem;
}

.step__n {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    font-size: .75rem;
    color: #475569;
    margin-bottom: .25rem;
}

/* Pricing area */
.list--light li {
    color: #e5e7eb;
}

.list--light .check {
    border-color: #fff;
}

    .list--light .check::after {
        border-color: #fff;
    }

.pricecard {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.06);
    padding: 1.25rem;
}

    .pricecard .line1, .pricecard .line2 {
        margin-bottom: 0;
    }
    .pricecard .line2,
    .pricecard .line3 {
        margin-top: 0;
    }

.price {
    display: flex;
    align-items: flex-end;
    gap: .5rem;
    margin: .25rem 0 0;
}

.price__main {
    font-size: 2.75rem;
    font-weight: 900;
}

.price__main.launch {
    color: #cbd5e1;
    text-decoration: line-through #cc0000;

}

.price__sub {
    padding-bottom: .4rem;
    color: #cbd5e1;
}

.muted--light {
    color: #cbd5e1;
}

.muted--lighter {
    color: #94a3b8;
}

/* Forms (index hero + join/signup) */
.form {
    margin-top: 1rem;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
}

    .form input[type=email] {
        flex: 1;
        min-width: 240px;
        border: 1px solid #cbd5e1;
        border-radius: 12px;
        padding: .8rem 1rem;
        font-size: .9rem;
        outline: none;
    }

        .form input[type=email]:focus {
            box-shadow: 0 0 0 3px rgba(15,23,42,.2);
        }

/* Join/Signup-specific form controls */
.label, .form-label {
    font-size: .85rem;
    color: #334155;
    margin-bottom: .25rem;
    display: block;
}

.form-label {
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: 6px;
}


.input,
select,
textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: .8rem 1rem;
    font-size: .95rem;
    outline: none;
}

    .input:focus,
    select:focus,
    textarea:focus {
        box-shadow: 0 0 0 3px rgba(15,23,42,.2);
    }

/* Grid helpers for join/signup forms */
.grid {
    display: grid;
    gap: 1rem;
}

.row {
    display: grid;
    gap: 1rem;
}

    .row.form-holder {
        max-width: 480px;
    }

.submit-btn-holder {
    padding-top: 1rem;
}

@media (min-width:640px) {
    .row {
        /*grid-template-columns: 1fr 1fr;*/
    }
}

/* Text helpers */
.muted {
    color: var(--muted);
}

.max-w {
    max-width: 56ch;
}

.small {
    font-size: .85rem;
}

.help {
    font-size: .8rem;
    color: #64748b;
    margin-top: .25rem;
}

/* Main wrapper for join/signup */
.main {
    padding: 40px 0;
}

/* Footer */
.footer {
    padding: 56px 0;
    border-top: 1px solid var(--line);
    color: #64748b;
    
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width:768px) {
    .footer__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}


.notice {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    opacity: 0;
    animation: fadeIn 0.4s ease forwards;
    
}

.notice--success .icon {
    margin-right: 6px;
    font-weight: bold;
    color: #2f7a4c;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success message */
.notice--success {
    background-color: #e6f5ec; /* soft green */
    border-color: #7bc89a;
    color: #215739;
    width: fit-content;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    background-color: #e7f7ec;
    border: 1px solid #8bc9a6;
    color: #215739;
    display: inline-block; /* keeps it tight like your screenshot */
    line-height: 1.45;
    max-width: 545px;
}

h2 + .notice {
    margin-top: 1rem;
}
.notice {
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error message */
.notice--error {
    background-color: #fdecea; /* soft red */
    border-color: #f1998f;
    color: #7b211b;
}

.early-access-thanks {
    padding: 5rem 0;
}

.bottom-btn-holder {
    padding-left: 0;
    margin: 20px 0px 10px 0px;
}

.grid-form {
    border: none;
    gap: 0;
    padding: 25px;
    margin-bottom: 75px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid #e7ebf2;
    border-radius: 9px;
}

    .grid-form .label {
        font-size: .9rem;
        font-weight: 500;
    }

.small.bx {
    display: block;
    padding-bottom: 15px;
}

.notes {
    font-size: 0.95rem;
    color: #475569; /* slate-600 */
    text-align: left;
    padding-bottom:0;
    margin-bottom:0;
    letter-spacing: -0.01em;
    /*
    
    border-radius: 9px;
    background: #f7f9fc;
    border: 1px solid #e7ebf2;
    */
}
    .notes notes-perk-icon {
        font-size: 1.15rem;
        opacity: 0.85;
    }

    .expires {
        font-size: 0.8rem;
        color: #9CA3AF;
        font-style: italic;
        line-height: 2.2rem;
    }

.text-danger,
.error-text {
    
    color: #d93025;
    font-size: 0.9rem;
    margin-top: 6px;
}
.error-text {
    display: none;
}

#submitBtn.disabled-state {
    opacity: 0.5;
    
}
#submitBtn {
    padding: 0.9rem 1rem 1rem 1rem;
    border-radius: 12px;
}

.btn-primary .icon {
    margin-right: 0.4rem;
    font-size: 1.1rem;
}

.info-lock {
    font-size: 0.9rem;
    margin-right: 0.5rem;
    opacity: 0.85;
}



/* Global placeholder styling */
::placeholder {
    color: #9CA3AF !important;
    opacity: 1; /* ensure consistent cross-browser look */
}

/* For better browser support */
input::placeholder,
textarea::placeholder,
select::placeholder {
    color: #9CA3AF !important;
}

/* default: placeholder state */
.select-placeholder {
    color: #9CA3AF; /* light gray */
}

    /* when a real value is chosen */
    .select-placeholder.has-value {
        color: #111827; /* dark text */
    }

    /* make sure options themselves use normal color in the dropdown list */
    .select-placeholder option {
        color: #111827;
    }

/* Wrap your select for easier styling */
.select-wrapper {
    position: relative;
    display: block;
}

    /* Hide ugly native arrow (Chrome, Safari, etc.) */
    .select-wrapper select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding-right: 2.5rem; /* make space for the new arrow */
    }

.form-select:hover {
    border-color: #2563eb; /* blue-600 */
}
    /* Custom arrow */
    .select-wrapper::after {
        content: "";
        position: absolute;
        right: 1rem;
        top: 52%;
        width: 16px;
        height: 16px;
        pointer-events: none;
        transform: translateY(-50%);
        background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%239CA3AF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-size: 100%;
        background-repeat: no-repeat;
    }



/* Placeholder styling for select */
.form-select .placeholder-option {
    color: #9ca3af !important; /* light gray */
}

/* When user selects a real value */
.form-select option {
    color: #111827; /* dark gray / near black */
}


input:focus, select:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.3);
}


/* Footer wrapper */
.site-footer {
    border-top: 1px solid #e3e9f3;
    background: #f9fbff; /* super-light tint */
    border-top: 1px solid #e3e9f3;
    padding: 1.75rem 0 2.5rem; /* was 2.5rem 0 2.75rem */

}

/* Inner container */
.site-footer__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

/* Mission line */
.site-footer__mission {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #7a8aa0; /* muted slate */
    
    line-height: 1.45;
}


/* Brand + copyright row */
.site-footer__bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Brand block (reuses your existing .brand styles if you have them) */
.site-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    
}

/* Make the logo in footer a touch smaller if desired */
.site-footer .brand__logo .icon {
    width: 24px;
    height: 24px;
}

/* Copyright */
.site-footer__copy {
    font-size: 0.8rem;
    color: #9aa6c0;
}

/* Desktop layout: left brand, right copyright, mission centered above */
@media (min-width: 768px) {
    .site-footer__inner {
        align-items: stretch;
    }

    .site-footer__mission {
        text-align: center;
        margin-bottom: 0.25rem;
    }

    .site-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .site-footer__copy {
        text-align: right;
    }
}


@media (max-width: 1100px) {
    .footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .site-footer__mission {
        margin: 0 auto;
    }
}

.site-footer {
    background: #f9fbff;
    border-top: 1px solid #e3e9f3;
    padding: 2rem 0 2.75rem;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    text-align: center;
}

.site-footer__mission {
    
    color: #7a8aa0;
    font-size: 0.97rem;
    line-height: 1.45;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

    .site-footer__brand .icon {
        width: 22px;
        height: 22px;
        fill: #0d1321;
    }

.footer__cta {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0d1321;
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    border: 1px solid #d0d8e2;
    transition: 0.2s;
}

    .footer__cta:hover {
        background: #0d1321;
        color: #fff;
        border-color: #0d1321;
    }

.footer__legal {
    font-size: 0.85rem;
    color: #7a8aa0;
    margin-top: 0.5rem;
}


/* Wrapper for footer links (Get Early Access + Contact Us) */
.site-footer__links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

/* Contact link (minimal, subtle) */
.footer__link {
    color: #9aa6c0;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .footer__link:hover {
        color: #1a2736;
        text-decoration: underline;
    }

.back-to-home {
    padding:0;
    margin:0;
    padding: 20px 0;
    text-align: left;
}

    .back-to-home a {
        color: #0093C9;
        font-size: .9rem;
        margin-bottom: 4rem;
    }