:root {
    --bg: #0a0a0a;
    --surface: #151515;
    --border: #2a2a2a;
    --text: #e8e8e8;
    --muted: #888;
    --accent: #e85d04;
    --accent-light: #f48c06;
    --success: #2dc653;
    --danger: #ef4444;
    --radius: 12px;
    --max-w: 960px;
}

@keyframes flashIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--accent-light);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.flash-container {
    min-height: 3rem;
    margin-bottom: 0.5rem;
}

.flash-container:empty {
    display: none;
}

.flash {
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: flashIn 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.flash-success {
    background: rgba(45, 198, 83, 0.15);
    border: 1px solid var(--success);
}

.flash-error {
    background: rgba(232, 93, 4, 0.15);
    border: 1px solid var(--accent);
}

.flash-close {
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--muted);
    padding: 0 0.3rem;
    user-select: none;
    -webkit-user-select: none;
}

.flash-close:hover {
    color: var(--text);
}

.flash-hide {
    opacity: 0;
}

.nav-mobile-controls {
    display: none;
    align-items: center;
    gap: 0.8rem;
}

.nav-toggle {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.2rem;
}

.nav-lang-mobile {
    display: none;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    user-select: none;
    -webkit-user-select: none;
}

.btn:hover {
    opacity: 0.85;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--text);
    background: transparent;
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn-sm {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--muted);
    font-size: 0.85rem;
    user-select: none;
    -webkit-user-select: none;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.6rem 0.8rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group input[readonly] {
    opacity: 0.7;
}

.inline-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-sm {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-green {
    background: rgba(45, 198, 83, 0.15);
    color: var(--success);
}

.badge-orange {
    background: rgba(232, 93, 4, 0.15);
    color: var(--accent);
}

.badge-gray {
    background: rgba(136, 136, 136, 0.15);
    color: var(--muted);
}

.badge-red {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

.badge-md {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.logo:hover {
    text-decoration: none;
    opacity: 0.8;
}

.logo span {
    color: var(--accent);
}

.logo img {
    height: 34px;
}

.nav-lang {
    font-size: 0.8rem;
    color: var(--muted);
}

body>header {
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-w);
    margin: 0 auto;
}

body>header nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

body>header nav a {
    color: var(--muted);
    font-size: 0.9rem;
    user-select: none;
    -webkit-user-select: none;
}

body>header nav a:hover {
    color: var(--text);
    text-decoration: none;
}

body>header nav a.nav-active {
    color: var(--text);
    font-weight: 600;
}

main {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 2rem;
}

body>footer {
    border-top: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    max-width: var(--max-w);
    margin: 0 auto;
}

body>footer nav {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

body>footer nav a {
    font-size: 0.8rem;
    color: var(--muted);
}

body>footer nav a:hover {
    color: var(--text);
}

body>footer nav a.active {
    color: var(--text);
    font-weight: 600;
}

body>footer nav>span {
    color: var(--muted);
}

.alpha-banner {
    background: linear-gradient(90deg, var(--accent), #f48c06);
    color: #fff;
    text-align: center;
    padding: 1rem 1rem;
    margin-top: 0.3rem;
    font-size: 0.9rem;
    font-weight: 500;
    user-select: none;
}

.alpha-banner a {
    color: #fff;
    text-decoration: none;
}

.alpha-form {
    display: none;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 2rem;
    margin-top: 0.5rem;
}

.alpha-form.show {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.alpha-form input {
    padding: 0.4rem 0.8rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-size: 0.85rem;
}

.alpha-form button {
    padding: 0.4rem 1rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
}

.alpha-form .msg {
    font-size: 0.8rem;
    color: var(--success);
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}


main>section {
    padding: 3rem 0;
}

main>section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

main>section>h2 {
    margin-bottom: 2rem;
}

main>section>p {
    color: var(--muted);
    font-size: 1.1rem;
}

main>section.content {
    padding: 1rem 0 2rem 0;
}

main>section.page>h1,
main>section.page>h2,
main>section.page>p {
    text-align: center;
}

/* Home page */

main>section.page.page-home {
    padding: 1.5rem 0 2rem;
}

main>section.page.page-home h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

main>section.page.page-home>p {
    font-size: 1.2rem;
    max-width: 560px;
    margin: 0 auto 2rem;
}

main>section.page.page-home nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stats>div {
    flex: 1 1 30%;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
}

.stat-value small {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 400;
}

.stat-label {
    color: var(--muted);
    font-size: 0.85rem;
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
}

.how-it-works {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.how-it-works>div {
    flex: 1 1 30%;
}

.how-it-works .card h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.how-it-works .card>p {
    color: var(--muted);
}

/* Features */

.features>h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.steps .card h3 {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.steps .card p {
    color: var(--muted);
    font-size: 0.9rem;
}

.roles .card h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.feature-list {
    color: var(--muted);
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.features>.card {
    margin-bottom: 3rem;
}

.features>.card>h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.features>.card>p {
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.features .compare-table {
    margin-top: 1rem;
}

.features>.cta {
    text-align: center;
    margin-bottom: 2rem;
}

.compare-row {
    display: flex;
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 0;
    align-items: center;
}

.compare-row.header {
    color: var(--muted);
    font-weight: 400;
    font-size: 0.9rem;
}

.compare-label {
    flex: 1;
    min-width: 0;
}

.compare-free,
.compare-premium {
    width: 38%;
    text-align: center;
    flex-shrink: 0;
}

.compare-premium {
    color: var(--accent);
    font-weight: 600;
}

.compare-check {
    color: var(--success);
    font-weight: 700;
}

.compare-no {
    color: var(--muted);
}

.steps,
.roles {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step-num {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
}

/* Pricing */

.pricing-grid {
    display: flex;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-grid>* {
    flex: 1;
}

.plan {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan .btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem;
}

.plan>p {
    text-align: center;
    color: var(--muted);
    font-size: 0.8rem;
    margin-top: 0.8rem;
}

.plan.featured {
    border-color: var(--accent);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.plan-price-original {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.plan-period {
    color: var(--muted);
    font-size: 0.9rem;
}

.plan-yearly {
    color: var(--muted);
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex: 1;
}

.plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
}

.plan-features li::before {
    content: '\2713  ';
    color: var(--success);
    font-weight: 700;
}

.plan-features li.disabled {
    color: var(--muted);
}

.plan-features li.disabled::before {
    content: '\2014  ';
    color: var(--muted);
}

/* Downloads */

.store-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.store-links+p {
    color: var(--muted);
    margin-top: 3rem;
    font-size: 0.9rem;
    text-align: center;
}

.store-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    text-decoration: none !important;
}

.store-link:hover {
    opacity: .8;
}

.store-link>span {
    font-size: 2.5rem;
}

.store-link>div {
    text-align: left;
}

.store-link small {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
}

.store-link strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
}

.store-links+p {
    color: var(--muted);
    margin-top: 3rem;
    font-size: 0.9rem;
}

/* Legal pages */

section.legal {
    max-width: 700px;
    margin: 0 auto;
}

section.legal h1 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

section.legal>h1+p {
    color: var(--muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

section.legal h2 {
    margin-bottom: 0.5rem;
}

section.legal h2+p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

/* Credits */

.credits h1 {
    color: #FFF !important;
}

.credits p+p {
    margin-top: .6rem;
}

.credits .card {
    margin: 2rem 0;
}

/* FAQ accordion */

details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

details[open] {
    border-color: var(--accent);
}

details summary {
    padding: 1rem 1.2rem;
    cursor: pointer;
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--accent);
    transition: transform 0.2s;
}

details[open] summary::after {
    content: '-';
}

details .faq-answer {
    padding: 0 1.2rem 1.2rem;
    color: var(--muted);
    line-height: 1.7;
}

/* Infos pages */

section.info-page {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

section.info-page .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

section.info-page h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

section.info-page>p {
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

section.info-page>.btn {
    margin-top: 2rem;
}

section.info-page .card {
    text-align: left;
    margin-bottom: 2rem;
}

section.info-page .card h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

section.info-page .card p {
    color: var(--muted);
    font-size: 0.9rem;
}

section.info-page .card .btn {
    margin-top: 1rem;
}

/* Register */

.pseudo-check {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pseudo-check input {
    max-width: 220px;
}

.pseudo-check>span {
    font-size: 0.8rem;
    white-space: nowrap;
}

.role-selector {
    display: flex;
    gap: 0.8rem;
}

.role-selector>button {
    flex: 1;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.role-selector>button>span:first-child {
    font-size: 1.5rem;
}

.role-selector>button>span:last-child {
    text-align: left;
    line-height: 1.3;
}

.role-selector strong {
    font-size: 0.95rem;
}

.role-selector small {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Login */

section.auth {
    max-width: 400px;
    margin: 0 auto;
}

section.auth h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

section.auth>p {
    text-align: center;
    color: var(--muted);
}

section.auth>h1+p {
    margin-bottom: 2rem;
}

section.auth>form~p {
    margin-top: 1.5rem;
}

section.auth>form~p+p {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

section.auth>form~p+p a {
    color: var(--muted);
}

section.auth form>button[type=submit] {
    width: 100%;
    padding: 0.7rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Profile */

.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.profile-header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.profile-header p {
    color: var(--muted);
    margin: 0;
}

.profile-header small {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0 0 0.2rem;
}

.profile-header>a:last-child {
    margin-left: auto;
    font-size: 0.85rem;
}

.profile>*+* {
    margin-top: 2rem;
}

.profile>h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.profile>h2+.grid {
    margin-top: 0;
}

.profile>.card p {
    white-space: pre-line;
}

.profile .drops {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.profile .drops>div {
    flex: 100%;
}

.profile .found-drops {
    gap: 0.8rem;
}

.profile .actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stars {
    color: #f59e0b;
}

.stars .dim {
    opacity: 0.25;
}

.drop-card>header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.drop-card>header>div:first-child {
    flex: 1;
    min-width: 0;
}

.drop-card>header>div:last-child {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    flex-shrink: 0;
}

.drop-card>header .stars {
    font-size: 0.9rem;
    margin-left: 0.4rem;
}

.drop-card .tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.drop-card .tags span {
    font-size: 0.75rem;
    color: var(--muted);
}

.drop-card .desc {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.drop-card .ratings,
.drop-card .comments {
    border-top: 1px solid var(--border);
    padding-top: 0.6rem;
    margin-top: 0.4rem;
}

.drop-card .rating {
    margin-bottom: 0.5rem;
}

.drop-card .rating>header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.drop-card .rating>header span {
    font-size: 0.8rem;
    font-weight: 600;
}

.drop-card .rating .stars {
    font-size: 0.85rem;
}

.drop-card .rating p {
    font-size: 0.8rem;
    color: var(--muted);
    font-style: italic;
    margin: 0.2rem 0 0;
}

.drop-card .comment {
    margin-bottom: 0.4rem;
}

.drop-card .comment>span {
    font-size: 0.8rem;
}

.drop-card .comment>span:first-child {
    font-weight: 600;
}

.drop-card .comments>span:last-child {
    font-size: 0.75rem;
    color: var(--muted);
}

.drop-card>footer {
    margin-top: 0.6rem;
    text-align: right;
}

.drop-card>footer a {
    font-size: 0.8rem;
}

.found-drop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.found-drop>div:first-child {
    flex: 1;
    min-width: 0;
}

.found-drop>div:first-child a {
    color: var(--text);
}

.found-drop>div:first-child>span {
    color: var(--muted);
    font-size: 0.85rem;
}

.found-drop>div:last-child {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal-overlay .card {
    max-width: 420px;
    width: 90%;
}

.modal-overlay h3 {
    margin-bottom: 0.5rem;
}

.modal-overlay h3+p {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.modal-overlay .status {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--muted);
}

.modal-overlay .form-group {
    margin-bottom: 1rem;
}

.modal-overlay .form-group label {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.3rem;
}

.modal-overlay textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.5rem;
    color: var(--text);
    resize: vertical;
}

.modal-overlay footer {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.profile-edit {
    max-width: 500px;
    margin: 2rem auto;
}

.profile-edit>h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.profile-edit>img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.profile-edit>.avatar {
    margin-bottom: 1rem;
}

.profile-edit .inline-group span {
    color: var(--muted);
}

.profile-edit .inline-group a {
    font-size: 0.85rem;
}

.profile-edit .form-actions {
    display: flex;
    gap: 1rem;
}

.profile-edit .form-actions>* {
    flex: 1;
    padding: 0.7rem;
    font-size: 1rem;
    text-align: center;
}

.avatar-grid {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.avatar-option {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.2s;
    overflow: hidden;
}

.avatar-option:hover {
    border-color: var(--muted);
}

.avatar-option.selected {
    border-color: var(--accent);
}

.avatar-option img {
    width: 100%;
    height: 100%;
}

.avatar-option input[type=radio] {
    display: none;
}

.avatar-upload {
    margin-top: 0.8rem;
}

.avatar-upload label {
    color: var(--muted);
    font-size: 0.85rem;
    cursor: pointer;
}

.avatar-upload input[type=file] {
    margin-left: 0.5rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.timeline {
    position: relative;
    padding-left: 1.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.45rem;
    top: 0.3rem;
    bottom: 0.3rem;
    width: 2px;
    background: var(--border);
}

.timeline>div {
    position: relative;
    margin-bottom: 1rem;
}

.timeline>div:last-child {
    margin-bottom: 0;
}

.timeline>div::before {
    content: '';
    position: absolute;
    left: -1.2rem;
    top: 0.25rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.timeline>.redrop::before {
    background: var(--accent-light);
}

.timeline>.found::before {
    background: var(--success);
}

.timeline>.waiting::before {
    background: transparent;
    border: 2px dashed var(--muted);
}

.timeline a {
    color: var(--text);
}

.timeline strong {
    font-size: 0.85rem;
}

.timeline .badge-sm {
    margin-left: 0.4rem;
}

.timeline time {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
}

.timeline .redrop p {
    font-size: 0.8rem;
    font-style: italic;
    margin: 0.3rem 0 0;
}

.timeline .waiting span {
    font-size: 0.85rem;
    color: var(--muted);
    font-style: italic;
}

/* Landing Drop */

.landing {
    max-width: 500px;
    margin: 3rem auto;
    text-align: center;
}

.landing>h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.landing>h1+p {
    color: var(--muted);
    margin-bottom: 2rem;
}

.landing>h1+p a {
    color: var(--text);
}

.landing>.card {
    margin-bottom: 2rem;
    text-align: left;
}

.landing>.card h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.landing .badge-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.landing .cta {
    margin-bottom: 2rem;
}

.landing .cta h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.landing .cta p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.landing .choices {
    color: var(--muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: left;
}

.landing .choices>p {
    margin-bottom: 0.6rem;
    font-style: italic;
}

.landing .choices ul {
    margin: 0;
    padding-left: 1.2rem;
    line-height: 1.8;
}

.landing .choices strong {
    color: var(--text);
}

/****/
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.grid-3>* {
    flex: 1 1 260px;
}

.grid-3 .card h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.grid-3 .card>p {
    color: var(--muted);
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    main {
        padding: 0.8rem;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    .form-group input,
    .form-group select {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    main {
        padding: 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .card {
        padding: 1rem;
    }

    .pricing-grid {
        flex-direction: column;
    }

    .alpha-form {
        padding: 0.6rem 1rem;
        flex-direction: column;
    }

    .alpha-form input {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .compare-row {
        flex-wrap: wrap;
        border: none;
    }

    .compare-row.header {
        color: var(--text);
    }

    .compare-row.header .compare-label {
        display: none;
    }

    .compare-row:not(.header) .compare-label {
        flex: 0 0 100%;
        margin-bottom: 0.3rem;
        font-weight: 600;
        text-align: center;
        border-bottom: 1px solid var(--border);
        padding-bottom: 5px;
        margin-bottom: 10px;
        color: var(--muted);
    }

    .compare-free,
    .compare-premium {
        flex: 1;
        width: auto;
        font-weight: 500;
    }
}

@media (min-width: 768px) {

    .steps>div {
        flex: 1 1 40%;
    }

    .roles>div {
        flex: 1 1 100%;
    }
}

@media (max-width: 850px) {
    .hidden-xs {
        display: none !important;
    }

    .nav-mobile-controls {
        display: flex !important;
    }

    .nav-lang-mobile {
        display: block !important;
    }

    .nav-lang-desktop {
        display: none !important;
    }

    body>header {
        padding: 0.8rem 1rem;
        flex-wrap: wrap;
    }

    body>header nav {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        padding-top: 0.8rem;
        border-top: 1px solid var(--border);
        margin-top: 0.8rem;
    }

    body>header nav.open {
        display: flex;
    }

    body>header nav a {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    body>header nav .btn-outline {
        width: 100%;
        text-align: center;
        padding: 0.6rem;
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        margin-top: 0.3rem;
    }

    body>footer {
        padding: 1.5rem 1rem;
    }

    body>footer nav {
        flex-direction: column;
    }

    .alpha-banner {
        font-size: 0.8rem;
        padding: 0.5rem 0.3rem;
    }
}

@media (min-width: 851px) {
    .visible-xs {
        display: none !important;
    }
}

@media (min-width: 900px) {

    .steps>div,
    .roles>div {
        flex: 1 1 20%;
    }
}