@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --arc-white: #ffffff;
    --arc-blue: #3b82f6;
    --arc-blue-dark: #2563eb;
    --arc-cyan: #06b6d4;
    --arc-text: #1e293b;
    --arc-muted: #64748b;
    --arc-border: #e2e8f0;
    --arc-soft: #f8fafc;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--arc-text);
    background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 60%, #ffffff 100%);
    line-height: 1.6;
}

body.arc-lock {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.arc-shell {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
}

.arc-top {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--arc-border);
    transition:
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.arc-top.arc-sticky {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.arc-nav {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.arc-logo-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--arc-border);
    background: var(--arc-white);
}

.arc-logo-link img {
    width: 28px;
    height: 28px;
}

.arc-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.arc-nav-links a {
    color: var(--arc-muted);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 14px;
    border-radius: 999px;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.arc-nav-links a:hover,
.arc-nav-links a:focus-visible {
    color: var(--arc-blue-dark);
    background: #eff6ff;
}

.arc-menu-btn {
    display: none;
    border: 1px solid var(--arc-border);
    background: var(--arc-white);
    border-radius: 10px;
    padding: 9px;
    cursor: pointer;
}

.arc-menu-btn span {
    width: 18px;
    height: 2px;
    display: block;
    background: var(--arc-text);
    margin: 3px 0;
    border-radius: 99px;
}

.arc-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: min(300px, 88vw);
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid var(--arc-border);
    box-shadow: -8px 0 24px rgba(15, 23, 42, 0.08);
    z-index: 130;
    transition: right 0.25s ease;
    padding: 88px 22px 22px;
}

.arc-drawer.arc-open {
    right: 0;
}

.arc-drawer a {
    display: block;
    padding: 11px 12px;
    border-radius: 10px;
    color: var(--arc-text);
    margin-bottom: 6px;
}

.arc-drawer a:hover {
    background: var(--arc-soft);
}

.arc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 120;
}

.arc-overlay.arc-open {
    opacity: 1;
    visibility: visible;
}

.arc-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 108px 0 100px;
    position: relative;
    overflow: hidden;
}

.arc-hero::before,
.arc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.arc-hero::before {
    background-image:
        linear-gradient(to right, rgba(30, 41, 59, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(30, 41, 59, 0.05) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.05;
}

.arc-hero::after {
    background: radial-gradient(
        circle at 50% 20%,
        rgba(59, 130, 246, 0.12),
        transparent 56%
    );
}

.arc-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.arc-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(32px, 5vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.arc-hero p {
    margin: 0 auto 32px;
    max-width: 690px;
    color: var(--arc-muted);
    font-size: 18px;
}

.arc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
    padding: 13px 20px;
}

.arc-btn-main {
    background: var(--arc-blue);
    color: #ffffff;
}

.arc-btn-main:hover,
.arc-btn-main:focus-visible {
    background: var(--arc-blue-dark);
}

.arc-sec {
    padding: 92px 0;
}

.arc-sec h2 {
    margin: 0 0 18px;
    font-size: clamp(24px, 4vw, 28px);
    line-height: 1.2;
}

.arc-sec-intro {
    margin: 0 0 36px;
    max-width: 760px;
    color: var(--arc-muted);
    font-size: 17px;
}

.arc-cards {
    display: grid;
    gap: 16px;
}

.arc-card {
    border-left: 3px solid var(--arc-blue);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    border-top: 1px solid var(--arc-border);
    border-right: 1px solid var(--arc-border);
    border-bottom: 1px solid var(--arc-border);
    padding: 18px 18px 12px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.arc-hover-ready .arc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.12);
}

.arc-card-main {
    display: grid;
    grid-template-columns: 120px 1.2fr 1.2fr 1.5fr auto;
    align-items: center;
    gap: 16px;
}

.arc-logo-wrap {
    width: 120px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.arc-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.arc-card-title {
    font-size: 20px;
    margin: 0 0 6px;
}

.arc-rating {
    margin: 0;
    color: var(--arc-muted);
    font-size: 14px;
}

.arc-rating strong {
    color: var(--arc-text);
}

.arc-bonus {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--arc-blue-dark);
}

.arc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.arc-pills span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--arc-border);
    color: var(--arc-muted);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.arc-card-cta {
    min-width: 118px;
}

.arc-card-note {
    margin: 11px 2px 2px;
    color: var(--arc-muted);
    font-size: 12px;
}

.arc-note {
    border-left: 3px solid #f8fafc;
    background: #ffffff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.arc-note p {
    margin: 0 0 14px;
    color: #334155;
    font-size: 17px;
}

.arc-note p:last-child {
    margin-bottom: 0;
}

.arc-safe-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1.3fr 1fr;
    align-items: start;
}

.arc-safe-box,
.arc-safe-links {
    background: #ffffff;
    border: 1px solid var(--arc-border);
    border-radius: 12px;
    padding: 24px;
}

.arc-safe-lead {
    margin: 0 0 14px;
    font-size: 18px;
    color: #334155;
}

.arc-checks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.arc-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
}

.arc-checks li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    background: var(--arc-blue);
    flex-shrink: 0;
}

.arc-18 {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid var(--arc-blue);
    border-radius: 50%;
    color: var(--arc-blue-dark);
    font-weight: 700;
}

.arc-linklist {
    display: grid;
    gap: 12px;
}

.arc-linklist a {
    color: var(--arc-blue-dark);
    text-decoration: underline;
    text-decoration-color: rgba(37, 99, 235, 0.35);
    text-underline-offset: 3px;
}

.arc-table-wrap {
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid var(--arc-border);
    border-radius: 12px;
}

.arc-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.arc-table th,
.arc-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--arc-border);
}

.arc-table th {
    color: #334155;
    background: #f8fafc;
    font-size: 14px;
}

.arc-table td {
    font-size: 15px;
}

.arc-table tr:last-child td {
    border-bottom: 0;
    font-weight: 700;
}

.arc-method-text {
    margin-top: 18px;
    max-width: 860px;
    color: #334155;
    font-size: 16px;
}

.arc-foot {
    border-top: 1px solid var(--arc-border);
    background: #ffffff;
    padding: 28px 0 34px;
}

.arc-foot-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #334155;
}

.arc-foot-top img {
    width: 24px;
    height: 24px;
}

.arc-foot-top a {
    color: #334155;
}

.arc-foot-top a:hover {
    color: var(--arc-blue-dark);
}

.arc-foot-small {
    max-width: 700px;
    margin: 14px auto 0;
    color: #94a3b8;
    text-align: center;
    font-size: 13px;
}

.arc-foot-links {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

.arc-foot-links a {
    color: #64748b;
    text-decoration: underline;
    text-decoration-color: rgba(100, 116, 139, 0.5);
    text-underline-offset: 2px;
}

.arc-cookie {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    background: #0f172a;
    color: #ffffff;
    display: flex;
    justify-content: center;
    padding: 14px 16px;
    transform: translateY(105%);
    transition: transform 0.25s ease;
}

.arc-cookie.arc-show {
    transform: translateY(0);
}

.arc-cookie-inner {
    width: min(1160px, 100%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.arc-cookie p {
    margin: 0;
    font-size: 14px;
}

.arc-cookie-actions {
    display: flex;
    gap: 8px;
}

.arc-btn-lite {
    border: 1px solid #334155;
    background: #1e293b;
    color: #ffffff;
}

.arc-age {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(15, 23, 42, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.arc-age.arc-show {
    display: flex;
}

.arc-age-card {
    width: min(430px, 100%);
    background: #ffffff;
    border-radius: 14px;
    padding: 26px;
    border: 1px solid var(--arc-border);
    text-align: center;
}

.arc-age-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.arc-age-card p {
    margin: 0 0 18px;
    color: var(--arc-muted);
}

.arc-age-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.arc-top-btn {
    position: fixed;
    right: 24px;
    bottom: 86px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: var(--arc-blue);
    color: #ffffff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    z-index: 90;
}

.arc-top-btn.arc-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.arc-legal {
    padding: 92px 0;
}

.arc-legal h1 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 40px);
}

.arc-legal-lead {
    color: var(--arc-muted);
    font-size: 17px;
    max-width: 760px;
}

.arc-legal-block {
    background: #ffffff;
    border: 1px solid var(--arc-border);
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
}

.arc-legal-block h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

.arc-legal-block p {
    margin: 0 0 12px;
    color: #334155;
}

.arc-legal-block p:last-child {
    margin-bottom: 0;
}

.arc-contact-card {
    background: #ffffff;
    border: 1px solid var(--arc-border);
    border-radius: 12px;
    padding: 26px;
    max-width: 780px;
}

.arc-contact-form {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.arc-contact-form label {
    font-weight: 600;
    font-size: 14px;
}

.arc-contact-form input,
.arc-contact-form textarea {
    width: 100%;
    border: 1px solid var(--arc-border);
    border-radius: 10px;
    padding: 12px;
    font: inherit;
    color: var(--arc-text);
}

.arc-contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

@media (max-width: 1080px) {
    .arc-card-main {
        grid-template-columns: 120px 1fr 1fr;
    }

    .arc-pills {
        grid-column: 1 / -1;
    }

    .arc-card-cta {
        justify-self: start;
    }
}

@media (max-width: 860px) {
    .arc-shell {
        width: min(1160px, calc(100% - 34px));
    }

    .arc-nav-links {
        display: none;
    }

    .arc-menu-btn {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
    }

    .arc-safe-grid {
        grid-template-columns: 1fr;
    }

    .arc-sec {
        padding: 76px 0;
    }
}

@media (max-width: 680px) {
    .arc-card-main {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .arc-card-cta {
        width: 100%;
    }

    .arc-card-cta .arc-btn {
        width: 100%;
    }

    .arc-cookie-inner {
        justify-content: center;
        text-align: center;
    }

    .arc-top-btn {
        right: 16px;
        bottom: 84px;
    }
}
