﻿<style>
/* RESET & BASE */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background-image: url("../images/9.jpg");
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI","Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2563eb;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* LAYOUT */
:root {
    --container: 1200px;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: #111827;
    color: #f9fafb;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.6);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    flex-direction: column;
}

.brand__title {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand__subtitle {
    font-size: 0.8rem;
    color: #9ca3af;
}

.header-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.9rem;
}

    .header-links a {
        color: #e5e7eb;
        padding-bottom: 0.1rem;
        border-bottom: 1px solid transparent;
    }

        .header-links a:hover {
            border-bottom-color: #60a5fa;
        }

main {
    flex: 1;
}

.shell {
    max-width: var(--container);
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
}

/* Keeps the text in the middle */
.full-width {
    grid-column: 1 / -1;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.image-panel {
    max-width: 480px;
    margin: 0;
}

    .image-panel img {
        width: 100%;
        height: auto;
    }

/* HERO */
.hero {
    margin-bottom: 2rem;
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #eef2ff;
    color: #4f46e5;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #22c55e;
}

.hero-title {
    margin: 0.75rem 0 0.25rem;
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    line-height: 1.2;
    color: #111827;
}

.hero-subtitle {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
    /* max-width: 40rem; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* optional */
}


/* CONTENT GRID */
.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .content-grid {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    }
}

.card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.product-card {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

h2, h3, h4 {
    color: #111827;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

h2 {
    font-size: 1.25rem;
}

h3 {
    font-size: 1.05rem;
}

p {
    margin: 0 0 0.75rem;
}

ul {
    margin: 0.25rem 0 0.75rem 1.25rem;
    padding: 0;
}

li {
    margin: 0 0 0.4rem;
}

strong {
    font-weight: 600;
}

.rules-intro {
    font-size: 0.98rem;
    color: #374151;
}

.inline-meta {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 0.75rem 0 0.75rem;
}

.notice {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #7c2d12;
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    margin: 0.75rem 0 0.25rem;
}

/* FORM */
form {
    margin-top: 0.5rem;
}

.form-field {
    padding-right: 2.0rem;
}


label {
    display: block;
    font-weight: 600;
    margin: 0.85rem 0 0.35rem;
    color: #111827;
}

input[type="text"], input[type="email"], input[type="number"] {
    width: 100%;
    padding: 0.7rem 0.8rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #ffffff;
    font-size: 1rem;
    color: #111827;
    outline: none;
}

input:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.25);
}

.help {
    font-size: 0.9rem;
    color: #4b5563;
    margin-top: 0.4rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.btn {
    appearance: none;
    border: none;
    border-radius: 999px;
    padding: 0.75rem 1.1rem;
    font-weight: 700;
    cursor: pointer;
    background: #0ea5a4;
    color: #f9fafb;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

    .btn:hover {
        filter: brightness(1.05);
    }

    .btn:active {
        transform: translateY(1px);
    }

.fineprint {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.75rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: #ecfeff;
    color: #155e75;
    font-size: 0.85rem;
    font-weight: 600;
}

.pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #0ea5e9;
}

/* PREORDER PROGRESS */
.progress-card {
    margin-top: 1rem;
}

.progress-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: baseline;
    margin: 0.75rem 0 0.5rem;
}

    .progress-meta .pill {
        background: #f0fdf4;
        color: #14532d;
    }

    .progress-meta .pill-dot {
        background: #22c55e;
    }

.progress-wrap {
    margin-top: 0.75rem;
}

.progress-bar {
    width: 100%;
    height: 14px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.12);
}

.progress-fill {
    height: 100%;
    width: 1%;
    background: #22c55e;
    border-radius: 999px;
    transition: width 300ms ease;
}

.progress-text {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
}

/* FOOTER */
footer {
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0 1.5rem;
    font-size: 0.8rem;
    color: #6b7280;
    background: #f9fafb;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    align-items: center;
}
/* --- Form overflow fixes (precommand page) --- */

input,
textarea,
select {
    max-width: 100%;
}

.cta-row > * {
    min-width: 0;
}

.card {
    overflow: hidden;
}



/* Précommande button – calm, non-moving interaction */

.btn-preorder {
    background-color: #5b8ea1;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.12s ease, filter 0.12s ease;
}

    .btn-preorder:hover {
        filter: brightness(1.06);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
    }

    .btn-preorder:active {
        filter: brightness(0.96);
        box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.25);
    }


</style>
