:root {
    --navy: #0a1628;
    --navy-mid: #112240;
    --gold: #c9a84c;
    --gold-lt: #e8c97a;
    --gold-pale: #fdf6e3;
    --cream: #f9f5ef;
    --text: #1e293b;
    --muted: #64748b;
    --white: #ffffff;
    --radius: 10px;
    --shadow: 0 8px 40px rgba(10, 22, 40, .12);
    --shadow-lg: 0 20px 60px rgba(10, 22, 40, .18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

/* NAVBAR */
.jp-navbar {
    background: var(--navy);
    padding: .9rem 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .35);
}

.jp-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--gold) !important;
    letter-spacing: -.5px;
    text-decoration: none;
}

.jp-brand span {
    color: var(--white);
}

.jp-logo {
    width: 210px;
    height: 70px;
    object-fit: cover;
    display: block;
}

.jp-navbar .nav-link {
    color: rgba(255, 255, 255, .8) !important;
    font-weight: 500;
    font-size: .9rem;
    transition: color .2s;
}

.jp-navbar .nav-link:hover {
    color: var(--gold) !important;
}

.btn-nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
    border-radius: 50px;
    padding: .45rem 1.2rem;
    font-size: .85rem;
    transition: background .2s, transform .15s;
}

.btn-nav-cta:hover {
    background: var(--gold-lt);
    transform: translateY(-1px);
}

/* HERO */
.hero {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a5c 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 40%, rgba(201, 168, 76, .12) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 20% 70%, rgba(201, 168, 76, .07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-deco {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(260px, 35vw, 520px);
    max-width: 100%;
    opacity: .055;
    pointer-events: none;
    user-select: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(201, 168, 76, .15);
    border: 1px solid rgba(201, 168, 76, .4);
    color: var(--gold-lt);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: .4rem 1rem;
    margin-bottom: 1.4rem;
    animation: fadeUp .6s ease both;
}

.hero h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.1rem;
    animation: fadeUp .7s .1s ease both;
    max-width: 90%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero h1 em {
    color: var(--gold);
    font-style: normal;
    white-space: nowrap;
}

.hero p.lead {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(0.9rem, 2.2vw, 1.05rem);
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 1.8rem;
    animation: fadeUp .7s .2s ease both;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    animation: fadeUp .7s .3s ease both;
}

.hero-cta-group .btn {
    min-width: 0;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: .65rem 1.35rem;
    font-size: .9rem;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(201, 168, 76, .35);
}

.btn-gold:hover {
    background: var(--gold-lt);
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(201, 168, 76, .35);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-lt);
    border: 1.5px solid rgba(201, 168, 76, .5);
    border-radius: 50px;
    padding: .55rem 1.15rem;
    font-size: .9rem;
    font-weight: 600;
    transition: all .2s;
}

.btn-outline-gold:hover {
    background: rgba(201, 168, 76, .1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
}

/* COUNTDOWN */
.countdown-wrapper {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 1.2rem 1.6rem;
    display: inline-flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    animation: fadeUp .7s .4s ease both;
}

.cd-unit {
    text-align: center;
}

.cd-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.cd-label {
    display: block;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-top: .2rem;
}

.cd-sep {
    font-size: 1.8rem;
    color: rgba(201, 168, 76, .4);
    align-self: flex-start;
    margin-top: .1rem;
}

/* BANNER */
.ann-banner {
    background: linear-gradient(90deg, var(--gold) 0%, #d4a843 100%);
    color: var(--navy);
    font-weight: 600;
    font-size: .9rem;
    text-align: center;
    padding: .7rem 1rem;
}

/* SECTIONS */
.section-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
}

/* FEATURE CARDS */
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(10, 22, 40, .06);
    transition: transform .25s, box-shadow .25s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: .5rem;
}

.feature-card p {
    font-size: .9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* CHECK LIST */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .9rem;
    color: var(--text);
    margin-bottom: .6rem;
}

.check-list li i {
    color: var(--gold);
    margin-top: .1rem;
    flex-shrink: 0;
}

/* FORM SECTION */
.form-section {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 60% at 80% 50%, rgba(201, 168, 76, .1) 0%, transparent 70%);
    pointer-events: none;
}

.form-tabs-custom {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    background: rgba(255, 255, 255, .06);
    border-radius: 50px;
    padding: .35rem;
    border: 1px solid rgba(255, 255, 255, .1);
    width: fit-content;
    max-width: 100%;
    overflow-x: auto;
    margin: 0 auto 2rem;
}

.form-tabs-custom::-webkit-scrollbar {
    display: none;
}

.form-tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .6);
    font-weight: 600;
    font-size: .9rem;
    border-radius: 50px;
    padding: .5rem 1.5rem;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.form-tab-btn.active {
    background: var(--gold);
    color: var(--navy);
}

.form-panel {
    display: none;
}

.form-panel.active {
    display: block;
    animation: fadeUp .4s ease;
}

.form-card {
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-label {
    color: rgba(255, 255, 255, .85);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: .4rem;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--white);
    border-radius: 8px;
    font-size: .9rem;
    padding: .6rem .9rem;
    transition: border-color .2s, background .2s;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, .1);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, .3);
}

.form-select option {
    background: var(--navy-mid);
    color: var(--white);
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.form-check-label {
    color: rgba(255, 255, 255, .75);
    font-size: .88rem;
}

.upload-zone {
    border: 2px dashed rgba(201, 168, 76, .35);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: border-color .2s, background .2s;
    font-size: .88rem;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, .06);
    color: var(--gold-lt);
}

.upload-zone input[type="file"] {
    display: none;
}

.upload-zone i {
    font-size: 2rem;
    display: block;
    margin-bottom: .5rem;
    color: var(--gold);
}

.btn-submit {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    padding: .85rem 2.5rem;
    width: 100%;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(201, 168, 76, .35);
}

.btn-submit:hover:not(:disabled) {
    background: var(--gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, .5);
}

.btn-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.form-alert {
    border-radius: 8px;
    padding: .9rem 1.1rem;
    font-size: .88rem;
    margin-top: 1rem;
    display: none;
}

.form-alert.success {
    background: rgba(22, 163, 74, .15);
    border: 1px solid rgba(22, 163, 74, .4);
    color: #86efac;
}

.form-alert.error {
    background: rgba(220, 38, 38, .15);
    border: 1px solid rgba(220, 38, 38, .4);
    color: #fca5a5;
}

/* STATS */
.stats-band {
    background: var(--gold-pale);
    border-top: 1px solid rgba(201, 168, 76, .2);
    border-bottom: 1px solid rgba(201, 168, 76, .2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
}

.stat-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* NEWSLETTER */
.newsletter-band {
    background: var(--gold-pale);
}

.newsletter-form input {
    border-radius: 50px 0 0 50px;
    border: 2px solid rgba(10, 22, 40, .15);
    color: var(--text);
    background: var(--white);
    padding: .7rem 1.3rem;
    font-size: .9rem;
    flex: 1;
    min-width: 0;
}

.newsletter-form input:focus {
    border-color: var(--gold);
    color: var(--text);
    background: var(--white);
    box-shadow: none;
}

.newsletter-form input::placeholder {
    color: var(--muted);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    background: var(--navy);
    color: var(--gold);
    font-weight: 700;
    border: 2px solid var(--navy);
    padding: .7rem 1.8rem;
    font-size: .9rem;
    white-space: nowrap;
    transition: background .2s;
}

.newsletter-form .btn:hover {
    background: var(--navy-mid);
}

/* FOOTER */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

footer a:hover {
    color: var(--gold-lt);
}

.footer {
    background: #071826;
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 25px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* BRAND */
.brand-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 15px;
}

.brand-header img {
    width: 40px;
    height: 40px;
}

.footer-brand p {
    max-width: 320px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* SOCIAL */
.socials {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.socials a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    transition: 0.3s;
}

.socials a:hover {
    color: #C9A84C;
}

/* HEADINGS */
.footer h6 {
    color: #C9A84C;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 15px;
}

/* LINKS */
.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    padding-left: 4px;
    color: var(--gold-lt);
}

.bi-linkedin:hover {
    color: var(--gold-lt);
}

.bi-facebook:hover {
    color: var(--gold-lt);
}

.bi-twitter-x:hover {
    color: var(--gold-lt);
}

/* CONTACT */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-item i {
    color: #C9A84C;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.launch-badge {
    margin-top: 15px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: #C9A84C;
    font-weight: 600;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
}

.footer-brand span {
    color: var(--white);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* AUDIENCE */
.audience-section {
    background: var(--white);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1300px;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .hero {
        padding: 55px 0.9rem 50px;
        min-height: auto;
    }

    .hero-badge {
        font-size: .72rem;
        padding: .35rem .85rem;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: 1.35rem;
        text-align: center;
        line-height: 1.1;
        max-width: 100%;
    }

    .hero p.lead {
        font-size: .9rem;
        line-height: 1.6;
        text-align: center;
        max-width: 100%;
    }

    .hero-cta-group {
        gap: .45rem;
        justify-content: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 100%;
        padding: .6rem 1rem;
        font-size: .85rem;
        flex: 1 1 100%;
    }

    .btn-gold,
    .btn-outline-gold {
        font-size: .85rem;
        padding: .6rem 1rem;
    }

    .countdown-wrapper {
        gap: .9rem;
        padding: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cd-number {
        font-size: 1.5rem;
    }

    .cd-label {
        font-size: .7rem;
    }

    .cd-sep {
        font-size: 1.4rem;
    }

    .form-card {
        padding: 1.4rem;
    }

    .form-label {
        font-size: .82rem;
    }

    .form-control,
    .form-select {
        font-size: .88rem;
        padding: .55rem .8rem;
    }

    .btn-submit {
        font-size: .92rem;
        padding: .8rem 1.8rem;
    }

    .newsletter-band h3 {
        font-size: 1.45rem;
    }

    .newsletter-form input {
        font-size: .88rem;
        padding: .65rem 1rem;
    }

    .newsletter-form .btn {
        font-size: .88rem;
        padding: .65rem 1rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .section-subtitle {
        font-size: .98rem;
    }

    .feature-card h5 {
        font-size: 1rem;
    }

    .feature-card p,
    .check-list li {
        font-size: .88rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: .75rem;
    }

    .footer-brand {
        font-size: 1.35rem;
    }

    .section-title,
    .section-subtitle {
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 50px;
    }

    .newsletter-form .btn {
        border-radius: 50px;
        width: 100%;
    }

    .form-tabs-custom {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 50px .8rem 45px;
    }

    .hero-badge {
        font-size: .7rem;
        padding: .3rem .8rem;
    }

    .hero h1 {
        font-size: 1.2rem;
    }

    .hero p.lead {
        font-size: .78rem;
    }

    .hero-cta-group {
        gap: .35rem;
    }

    .hero-cta-group .btn {
        font-size: .78rem;
        padding: .55rem .85rem;
    }

    .countdown-wrapper {
        gap: .6rem;
        padding: .9rem;
        justify-content: center;
    }

    .cd-number {
        font-size: 1.3rem;
    }

    .cd-label {
        font-size: .62rem;
    }

    .cd-sep {
        font-size: 1.1rem;
    }

    .form-card {
        padding: 1.2rem;
    }

    .form-label {
        font-size: .8rem;
    }

    .form-control,
    .form-select {
        font-size: .84rem;
        padding: .55rem .75rem;
    }

    .btn-submit {
        font-size: .88rem;
        padding: .75rem 1.5rem;
    }

    .newsletter-band h3 {
        font-size: 1.35rem;
    }

    .newsletter-form input {
        font-size: .85rem;
        padding: .6rem .9rem;
    }

    .newsletter-form .btn {
        font-size: .85rem;
        padding: .6rem 1rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: .92rem;
    }

    .feature-card h5 {
        font-size: .95rem;
    }

    .feature-card p,
    .check-list li {
        font-size: .84rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: .72rem;
    }

    .footer-brand {
        font-size: 1.3rem;
    }

    .container,
    .container-fluid {
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 50px;
    }

    .newsletter-form .btn {
        border-radius: 50px;
        width: 100%;
    }

    .form-tabs-custom {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 45px .65rem 40px;
    }

    .hero h1 {
        font-size: 1.05rem;
    }

    .hero p.lead {
        font-size: .72rem;
    }

    .hero-cta-group {
        gap: .3rem;
    }

    .hero-cta-group .btn {
        font-size: .72rem;
        padding: .5rem .75rem;
    }

    .hero-badge {
        font-size: .68rem;
        padding: .28rem .7rem;
    }

    .countdown-wrapper {
        gap: .4rem;
        padding: .75rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        overflow-x: auto;
    }

    .cd-number {
        font-size: 1.1rem;
    }

    .cd-label {
        font-size: .6rem;
    }

    .cd-sep {
        font-size: 1rem;
    }

    .form-card {
        padding: 1rem;
    }

    .form-label {
        font-size: .78rem;
    }

    .form-control,
    .form-select {
        font-size: .8rem;
        padding: .5rem .7rem;
    }

    .btn-submit {
        font-size: .84rem;
        padding: .7rem 1.2rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .section-subtitle {
        font-size: .88rem;
    }

    .newsletter-band h3 {
        font-size: 1.25rem;
    }

    .newsletter-form input {
        font-size: .82rem;
        padding: .55rem .75rem;
    }

    .newsletter-form .btn {
        font-size: .82rem;
        padding: .55rem .75rem;
    }

    .container,
    .container-fluid {
        padding-left: .6rem;
        padding-right: .6rem;
    }
}