/* ==========================================================================
   Koople Partners — stylesheet
   Palette: near-black ink, Koople pink, warm white
   Type: Anton (display, caps) + Instrument Sans (body)
   ========================================================================== */

:root {
    --ink: #0b0912;
    --ink-2: #120e1c;
    --panel: #171226;
    --panel-2: #1e1730;
    --rose: #f72561;
    --rose-deep: #c4124a;
    --rose-soft: #ff7a9e;
    --cream: #fff6f8;
    --muted: #a79fb4;
    --line: rgba(247, 37, 97, 0.16);
    --line-soft: rgba(255, 255, 255, 0.07);
    --radius: 20px;
    --radius-sm: 12px;
    --display: 'Anton', Impact, sans-serif;
    --body: 'Instrument Sans', system-ui, sans-serif;
    --shadow-rose: 0 12px 48px rgba(247, 37, 97, 0.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* Restore browser hidden behaviour overridden by author display rules */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
    background: var(--ink);
    color: var(--cream);
    font-family: var(--body);
    font-size: 16.5px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--rose-soft); }

::selection { background: var(--rose); color: #fff; }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--rose);
    color: #fff;
    padding: 10px 18px;
    z-index: 100;
    border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */

h1, h2, h3 { font-weight: 400; }

h1, h2 {
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 0.98;
}

h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }

h3 {
    font-family: var(--body);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}

.accent { color: var(--rose); }

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rose);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 16px;
    margin-bottom: 22px;
    background: rgba(247, 37, 97, 0.06);
}

.eyebrow--light { color: #fff; border-color: rgba(255, 255, 255, 0.35); background: rgba(255, 255, 255, 0.1); }

/* ---------- Buttons ---------- */

.btn {
    display: inline-block;
    font-family: var(--body);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    border-radius: 999px;
    padding: 15px 30px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn--solid {
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
    color: #fff;
    box-shadow: var(--shadow-rose);
}
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 16px 56px rgba(247, 37, 97, 0.42); }

.btn--ghost {
    color: var(--cream);
    border-color: rgba(255, 255, 255, 0.22);
}
.btn--ghost:hover { border-color: var(--rose); color: var(--rose-soft); }

.btn--invert { background: #fff; color: var(--rose-deep); }
.btn--invert:hover { transform: translateY(-2px); }

.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--full { width: 100%; }

.btn:focus-visible,
a:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--rose-soft);
    outline-offset: 3px;
}

/* ---------- Nav ---------- */

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px clamp(18px, 4vw, 48px);
    background: rgba(11, 9, 18, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft);
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--cream);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.01em;
}
.nav__brand img { border-radius: 9px; }
.nav__brand em { font-style: normal; color: var(--rose); }

.nav__links { display: flex; gap: clamp(14px, 2.4vw, 30px); }
.nav__links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--cream); }

/* ---------- Hero ---------- */

.hero {
    position: relative;
    padding: clamp(48px, 8vw, 110px) clamp(18px, 4vw, 48px) clamp(60px, 7vw, 100px);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(52% 44% at 78% 24%, rgba(247, 37, 97, 0.20) 0%, transparent 70%),
        radial-gradient(40% 36% at 10% 82%, rgba(247, 37, 97, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
    max-width: 1180px;
    margin: 0 auto;
}

.hero__title {
    font-size: clamp(2.9rem, 7vw, 5.4rem);
    margin-bottom: 26px;
}

.hero__lead {
    font-size: 1.13rem;
    color: var(--muted);
    max-width: 34rem;
    margin-bottom: 32px;
}
.hero__lead strong { color: var(--cream); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }

.hero__trust { font-size: 0.85rem; color: var(--muted); }

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 420px;
}

/* Phone frames */
.phone {
    border-radius: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    background: #000;
    padding: 9px;
    overflow: hidden;
}
.phone img { border-radius: 26px; }

.phone--hero {
    width: min(310px, 78vw);
    transform: rotate(4deg);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.6),
        0 0 120px rgba(247, 37, 97, 0.22);
    animation: floaty 7s ease-in-out infinite;
}

@keyframes floaty {
    0%, 100% { transform: rotate(4deg) translateY(0); }
    50% { transform: rotate(4deg) translateY(-12px); }
}

/* Floating chips */
.chip {
    position: absolute;
    background: rgba(23, 18, 38, 0.92);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    white-space: nowrap;
}
.chip__euro {
    color: var(--rose);
    font-weight: 700;
    margin-right: 6px;
}
.chip--a { top: 9%; left: -4%; animation: chipfloat 6s ease-in-out infinite; }
.chip--b { bottom: 22%; right: -6%; animation: chipfloat 6s ease-in-out 1.6s infinite; }
.chip--c { bottom: 4%; left: 2%; animation: chipfloat 6s ease-in-out 3.1s infinite; }

@keyframes chipfloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---------- Marquee ---------- */

.marquee {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(247, 37, 97, 0.05);
    overflow: hidden;
    padding: 14px 0;
}

.marquee__track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: marquee 30s linear infinite;
    font-family: var(--display);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: var(--cream);
}
.marquee__track i { color: var(--rose); font-style: normal; }
.marquee__track span { white-space: nowrap; }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */

.section {
    padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 48px);
    max-width: 1180px;
    margin: 0 auto;
}

.section--narrow { max-width: 860px; }

.section__head { max-width: 46rem; margin-bottom: clamp(36px, 5vw, 56px); }

.section__sub { color: var(--muted); font-size: 1.08rem; margin-top: 18px; }
.section__sub strong { color: var(--cream); }

/* ---------- Screens row ---------- */

.screens {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 10px 4px 26px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.screens::-webkit-scrollbar { height: 6px; }
.screens::-webkit-scrollbar-thumb { background: var(--rose-deep); border-radius: 3px; }
.screens::-webkit-scrollbar-track { background: var(--panel); border-radius: 3px; }

.phone--row {
    flex: 0 0 auto;
    width: 210px;
    scroll-snap-align: start;
    transition: transform 0.25s ease;
}
.phone--row:nth-child(even) { transform: translateY(16px); }
.phone--row:hover { transform: translateY(-6px); }

/* ---------- Pillars ---------- */

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

.pillar {
    background: var(--panel);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 26px;
}
.pillar h3 { margin-bottom: 8px; color: var(--rose-soft); }
.pillar p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Split (communauté) ---------- */

.section--split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.checklist { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.checklist li {
    position: relative;
    padding-left: 38px;
    color: var(--muted);
}
.checklist li strong { color: var(--cream); }
.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(247, 37, 97, 0.15);
    color: var(--rose);
    font-weight: 700;
    font-size: 0.85rem;
}

.giftcard {
    background: linear-gradient(150deg, var(--rose) 0%, var(--rose-deep) 90%);
    border-radius: 26px;
    padding: 44px 36px;
    text-align: center;
    box-shadow: var(--shadow-rose);
    transform: rotate(-2.5deg);
    max-width: 320px;
    margin: 0 auto;
}
.giftcard__tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}
.giftcard__big {
    font-family: var(--display);
    font-size: 7rem;
    line-height: 1;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.giftcard__label { font-weight: 600; font-size: 1.05rem; margin-top: 8px; }
.giftcard__label s { opacity: 0.7; font-weight: 400; font-size: 0.9rem; }

/* ---------- Dashboard (signature) ---------- */

.dash {
    background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.dash__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line-soft);
    background: rgba(0, 0, 0, 0.25);
}
.dash__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); }
.dash__title { margin-left: 10px; font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.dash__live {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rose-soft);
}
.pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--rose);
    animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(247, 37, 97, 0.6); }
    100% { box-shadow: 0 0 0 10px rgba(247, 37, 97, 0); }
}

.dash__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line-soft);
}
.stat {
    padding: 30px 24px;
    display: grid;
    gap: 6px;
    border-right: 1px solid var(--line-soft);
}
.stat:last-child { border-right: none; }
.stat__label { font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.stat__value {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    color: var(--cream);
    font-variant-numeric: tabular-nums;
}
.stat:nth-child(3) .stat__value,
.stat:nth-child(4) .stat__value { color: var(--rose); }

.dash__feed {
    min-height: 118px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-end;
    overflow: hidden;
}
.feeditem {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--muted);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.feeditem.on { opacity: 1; transform: translateY(0); }
.feeditem b { color: var(--rose); font-variant-numeric: tabular-nums; }
.feeditem time { margin-left: auto; font-size: 0.78rem; opacity: 0.7; }

.dash__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 20px;
    border-top: 1px solid var(--line-soft);
    background: rgba(247, 37, 97, 0.06);
    font-weight: 600;
    font-size: 0.95rem;
}
.dash__claim { pointer-events: none; }

.dash__note {
    margin-top: 10px;
    font-size: 0.78rem;
    color: var(--muted);
    opacity: 0.7;
    text-align: right;
}

.perks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 42px;
}
.perk {
    background: var(--panel);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 24px;
}
.perk h3 { color: var(--cream); margin-bottom: 8px; }
.perk p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Steps ---------- */

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

.step {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 28px 24px 24px;
}
.step__num {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--rose-deep));
    font-family: var(--display);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(247, 37, 97, 0.35);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.94rem; }
.step p strong { color: var(--rose-soft); }

.note {
    margin-top: 30px;
    background: rgba(247, 37, 97, 0.07);
    border: 1px solid var(--line);
    border-left: 4px solid var(--rose);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    color: var(--muted);
    font-size: 0.98rem;
}
.note strong { color: var(--cream); display: block; margin-bottom: 6px; }

/* ---------- Early band ---------- */

.early {
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
    padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 48px);
}
.early__inner { max-width: 780px; margin: 0 auto; text-align: center; color: #fff; }
.early h2 { margin-bottom: 18px; }
.early p { opacity: 0.94; margin-bottom: 30px; font-size: 1.08rem; }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: 12px; }

.faq details {
    background: var(--panel);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.faq details[open] { border-color: var(--line); }

.faq summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 52px 20px 22px;
    font-weight: 700;
    position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rose);
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Form ---------- */

.section--form { max-width: 1180px; }

.formwrap {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

.formwrap__right {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.altmail {
    margin-top: 26px;
    display: grid;
    gap: 4px;
    background: var(--panel);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    font-size: 0.95rem;
}
.altmail span { color: var(--muted); }
.altmail a { font-weight: 700; }
.altmail__ig { margin-top: 6px; }

.formwrap__quote {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--rose);
    color: var(--muted);
    font-style: italic;
    font-size: 1.05rem;
}

.form {
    background: var(--panel);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: clamp(24px, 3.4vw, 40px);
    display: grid;
    gap: 18px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field { display: grid; gap: 7px; }

.field label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--cream);
}
.field label small { color: var(--muted); font-weight: 400; }

.field input,
.field select,
.field textarea {
    width: 100%;
    background: var(--ink-2);
    border: 1.5px solid var(--line-soft);
    border-radius: var(--radius-sm);
    color: var(--cream);
    font-family: var(--body);
    font-size: 1rem;
    padding: 13px 16px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 21px) 50%, calc(100% - 15px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }

.field input::placeholder,
.field textarea::placeholder { color: rgba(167, 159, 180, 0.55); }

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(247, 37, 97, 0.18);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: var(--rose); }

.field__error {
    font-size: 0.82rem;
    color: var(--rose-soft);
    min-height: 0;
    display: none;
}
.field.invalid .field__error { display: block; }

.hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    overflow: hidden;
}

.form__status { font-size: 0.92rem; font-weight: 600; min-height: 1.4em; }
.form__status.err { color: var(--rose-soft); }

.form__privacy { font-size: 0.8rem; color: var(--muted); opacity: 0.8; }

.form__success {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(32px, 4vw, 56px);
    text-align: center;
}
.form__success-icon {
    width: 68px; height: 68px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--rose-deep));
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    box-shadow: var(--shadow-rose);
}
.form__success h3 { font-size: 1.5rem; margin-bottom: 10px; }
.form__success p { color: var(--muted); }

button[disabled] { opacity: 0.6; cursor: wait; transform: none !important; }

/* ---------- Footer ---------- */

.footer {
    border-top: 1px solid var(--line-soft);
    padding: 52px clamp(18px, 4vw, 48px) 40px;
    text-align: center;
    display: grid;
    gap: 10px;
    justify-items: center;
}
.footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-size: 1.4rem;
    letter-spacing: 0.02em;
}
.footer__brand img { border-radius: 10px; }
.footer__tag { color: var(--rose-soft); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }
.footer__links a { font-size: 0.92rem; }
.footer__legal { color: var(--muted); font-size: 0.8rem; margin-top: 12px; opacity: 0.7; }

/* ---------- Reveal on scroll ---------- */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { min-height: 0; margin-top: 12px; }
    .chip--a { left: 2%; }
    .chip--b { right: 0; }
    .section--split { grid-template-columns: 1fr; }
    .pillars, .perks, .steps { grid-template-columns: 1fr 1fr; }
    .dash__grid { grid-template-columns: 1fr 1fr; }
    .stat:nth-child(2n) { border-right: none; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
    .formwrap { grid-template-columns: 1fr; }
    .nav__links { display: none; }
}

@media (max-width: 560px) {
    .pillars, .perks, .steps { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; }
    .hero__cta .btn { width: 100%; }
    .phone--row { width: 170px; }
    .chip { font-size: 0.78rem; padding: 8px 13px; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .phone--hero, .chip--a, .chip--b, .chip--c, .marquee__track, .pulse { animation: none !important; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .feeditem { transition: none; }
    * { transition-duration: 0.01ms !important; }
}

/* ---------- Nav login link ---------- */
.nav__login {
    font-weight: 600;
    color: var(--rose);
    border: 1.5px solid var(--rose);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.88rem;
    transition: background 0.18s, color 0.18s;
}
.nav__login:hover { background: var(--rose); color: #fff; }

/* ---------- Form timer badge ---------- */
.form__timer {
    font-size: 0.85rem;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    display: inline-block;
    padding: 4px 14px;
    margin-bottom: 18px;
}

/* ---------- Checkbox field ---------- */
.field--checkbox { margin-top: 4px; }
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--rose);
}
.btn-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--rose);
    cursor: pointer;
    font-size: inherit;
    text-decoration: underline;
    font-family: inherit;
}
.btn-link:hover { color: var(--rose-dark, #c73d62); }

/* ---------- Duplicate candidature state ---------- */
.form__already {
    text-align: center;
    padding: 56px 32px;
    background: var(--surface);
    border-radius: 16px;
    border: 1.5px solid var(--line-soft);
}
.form__already-icon { font-size: 3rem; margin-bottom: 16px; }
.form__already h3 { font-size: 1.35rem; margin-bottom: 12px; }
.form__already p { color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.form__already a { color: var(--rose); }

/* ---------- Privacy modal ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal {
    background: #fff;
    border-radius: 16px;
    max-width: 680px;
    width: 100%;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 80px rgba(0,0,0,0.18);
    position: relative;
}
.modal__close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--muted);
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.15s;
}
.modal__close:hover { background: #f3f4f6; }
.modal__title {
    font-size: 1.05rem;
    font-weight: 700;
    padding: 22px 28px 16px;
    border-bottom: 1px solid #e5e7eb;
    margin: 0;
    color: #1a1a2e;
    text-transform: none;
    font-family: var(--body);
    letter-spacing: 0;
    line-height: 1.3;
}
.modal__body {
    overflow-y: auto;
    padding: 20px 28px;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #374151;
}
.modal__body h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 20px 0 6px;
    font-family: var(--body);
    text-transform: none;
    letter-spacing: 0;
}
.modal__body h3:first-child { margin-top: 0; }
.modal__body p { margin: 0 0 12px; color: #374151; }
.modal__body a { color: var(--rose); }
.modal__body strong { color: #1a1a2e; }
.modal__foot {
    padding: 16px 28px 20px;
    border-top: 1px solid var(--line-soft);
    text-align: right;
}

/* ---------- Auth page (create password / login) ---------- */

.auth-page {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 6vw, 48px) 20px;
    background:
        radial-gradient(52% 44% at 78% 24%, rgba(247, 37, 97, 0.15) 0%, transparent 70%),
        radial-gradient(40% 36% at 10% 82%, rgba(247, 37, 97, 0.08) 0%, transparent 70%);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--panel);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: clamp(28px, 5vw, 44px);
}

.auth-card__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--cream);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 28px;
}
.auth-card__brand img { border-radius: 9px; }
.auth-card__brand em { font-style: normal; color: var(--rose); }

.auth-card__title {
    font-size: clamp(2rem, 6vw, 2.6rem);
    margin-bottom: 10px;
}

.auth-card__sub {
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.55;
    margin-bottom: 28px;
}

.auth-form {
    display: grid;
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 7px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--cream);
}

.form-input {
    width: 100%;
    background: var(--ink-2);
    border: 1.5px solid var(--line-soft);
    border-radius: var(--radius-sm);
    color: var(--cream);
    font-family: var(--body);
    font-size: 1rem;
    padding: 13px 16px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-input::placeholder { color: rgba(167, 159, 180, 0.55); }
.form-input:focus {
    outline: none;
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(247, 37, 97, 0.18);
}

.alert {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 600;
}
.alert--error {
    background: rgba(247, 37, 97, 0.1);
    border: 1px solid rgba(247, 37, 97, 0.3);
    color: var(--rose-soft);
}

/* ---------- Loading spinner ---------- */
@keyframes koople-spin { to { transform: rotate(360deg); } }
.btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: koople-spin 0.65s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
    flex-shrink: 0;
}
