html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

:root {
    --bg: #ffffff;
    --ink: #111111;
    --muted: #666666;
    --soft: #f7f7f7;
    --line: #e9e9e9;
    --red: #ff3b3f;
    --red-dark: #df2428;
    --mint: #00c2a8;
    --dark: #1c1c1c;
    --radius: 28px;
    --shadow: 0 26px 70px rgba(28, 28, 28, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
    overflow: hidden;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.announcement {
    background: var(--dark);
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 12px 16px;
}

.nav {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border-bottom: 1px solid var(--line);
}

.logo {
    color: var(--ink);
    text-decoration: none;
    text-align: center;
    line-height: 1;
}

    .logo strong {
        display: block;
        font-size: clamp(34px, 4vw, 52px);
        letter-spacing: .12em;
        font-weight: 950;
    }

    .logo span {
        display: block;
        color: var(--red);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .02em;
        margin-top: 5px;
    }

.nav-side {
    min-width: 170px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
}

    .nav-side.right {
        justify-content: flex-end;
    }

.nav-dot {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: center;
    background: linear-gradient(90deg, rgba(17,17,17,.72) 0%, rgba(17,17,17,.38) 42%, rgba(17,17,17,.08) 100%), url('/images/shobli-hero.png') center/cover no-repeat;
    color: #fff;
}

    .hero::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 180px;
        background: linear-gradient(0deg, rgba(255,255,255,1), rgba(255,255,255,0));
        pointer-events: none;
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 82px 0 120px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.24);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

    .badge::before {
        content: "";
        width: 10px;
        height: 10px;
        background: var(--mint);
        border-radius: 999px;
        box-shadow: 0 0 0 6px rgba(0,194,168,.18);
    }

h1 {
    margin: 28px 0 0;
    font-size: clamp(50px, 8vw, 96px);
    line-height: .9;
    letter-spacing: -.07em;
    font-weight: 950;
}

.red {
    color: var(--red);
}

.mint {
    color: var(--mint);
}

.hero-text {
    margin: 26px 0 0;
    max-width: 610px;
    font-size: clamp(18px, 2.2vw, 23px);
    line-height: 1.55;
    color: rgba(255,255,255,.9);
}

.signup {
    margin-top: 36px;
    max-width: 640px;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    background: #fff;
    border-radius: 999px;
    box-shadow: var(--shadow);
}

    .signup input {
        border: 0;
        outline: 0;
        padding: 0 20px;
        font-size: 16px;
        color: var(--ink);
        min-width: 0;
    }

.btn {
    border: 0;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-weight: 950;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .2s ease;
    box-shadow: 0 14px 34px rgba(255,59,63,.32);
}

    .btn:hover {
        background: var(--red-dark);
        transform: translateY(-2px);
    }

.small-note {
    margin-top: 14px;
    font-size: 14px;
    color: rgba(255,255,255,.78);
}

.proof-row {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.proof-pill {
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
    font-size: 14px;
    font-weight: 800;
}

section {
    padding: 96px 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.kicker {
    color: var(--red);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 62px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 950;
}

.section-text {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

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

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 16px 44px rgba(28,28,28,.06);
}

.icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(0,194,168,.12);
    color: var(--mint);
    font-size: 25px;
    margin-bottom: 22px;
}

.card:nth-child(2) .icon {
    background: rgba(255,59,63,.10);
    color: var(--red);
}

.card h3 {
    margin: 0;
    font-size: 23px;
    letter-spacing: -.03em;
}

.card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.showcase {
    background: var(--soft);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.art-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: var(--shadow);
    height: 430px;
    background: #fff;
}

    .art-card img {
        width: 100%;
        height: 520px;
        display: block;
        object-fit: cover;
        object-position: center;
        transition: transform .45s ease;
    }

    .art-card:hover img {
        transform: scale(1.045);
    }

.art-label {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(14px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-weight: 950;
}

    .art-label span {
        color: var(--red);
        font-size: 13px;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 32px;
    border-radius: var(--radius);
    background: var(--dark);
    color: #fff;
    overflow: hidden;
}

    .step::before {
        counter-increment: step;
        content: "0" counter(step);
        display: block;
        color: var(--mint);
        font-size: 14px;
        font-weight: 950;
        letter-spacing: .12em;
        margin-bottom: 52px;
    }

    .step h3 {
        margin: 0;
        font-size: 26px;
        letter-spacing: -.04em;
    }

    .step p {
        margin: 12px 0 0;
        color: rgba(255,255,255,.72);
        line-height: 1.65;
    }

    .step:nth-child(2) {
        background: var(--red);
    }

        .step:nth-child(2)::before {
            color: #fff;
        }

    .step:nth-child(3) {
        background: var(--mint);
        color: var(--ink);
    }

        .step:nth-child(3) p {
            color: rgba(17,17,17,.7);
        }

        .step:nth-child(3)::before {
            color: var(--ink);
        }

.cta {
    padding: 0 0 96px;
}

.cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    padding: clamp(36px, 7vw, 76px);
    background: radial-gradient(circle at 90% 10%, rgba(0,194,168,.32), transparent 30%), radial-gradient(circle at 15% 90%, rgba(255,59,63,.32), transparent 34%), var(--dark);
    color: #fff;
    box-shadow: var(--shadow);
}

    .cta-box h2 {
        max-width: 790px;
    }

    .cta-box .section-text {
        color: rgba(255,255,255,.76);
        max-width: 660px;
    }

    .cta-box .signup {
        margin-top: 30px;
    }

footer {
    border-top: 1px solid var(--line);
    padding: 34px 0;
    color: var(--muted);
    font-size: 14px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .nav-side {
        display: none;
    }

    .nav {
        justify-content: center;
    }

    .hero {
        min-height: auto;
        background-position: center;
    }

    .hero-content {
        padding: 72px 0 120px;
    }

    .signup {
        grid-template-columns: 1fr;
        border-radius: 28px;
    }

        .signup input {
            min-height: 54px;
        }

    .cards, .gallery, .steps {
        grid-template-columns: 1fr;
    }

    .art-card {
        min-height: 360px;
    }

    section {
        padding: 72px 0;
    }
}

.landing-full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.site-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.nav-link-clean {
    color: inherit;
    text-decoration: none;
}

.btn-small {
    min-height: 42px;
    padding: 0 18px;
}

.hero-full {
    width: 100%;
}

.field-validation-error {
    color: #ff3b3f;
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
    display: block;
}

.input-validation-error {
    border: 2px solid #ff3b3f !important;
}
