
:root {
    --main-bg: #0c0c0c;
    --secondary-bg: #121212;
    --card-bg: #171717;
    --card-bg-soft: #1c1c1c;
    --accent: #aebbef;
    --accent-strong: #c5cff3;
    --text: #d4d4d4;
    --text-soft: #9a9a9a;
    --text-muted: #777777;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(174, 187, 239, 0.28);
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --header-height: 64px;
    --sidebar-width: 262px;
    --shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
    --transition: 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100%; }

body {
    background:
        radial-gradient(circle at top left, rgba(174, 187, 239, 0.10), transparent 28%),
        radial-gradient(circle at 100% 0, rgba(174, 187, 239, 0.06), transparent 20%),
        var(--main-bg);
    color: var(--text);
    font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(12, 12, 12, 0.84);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

header .container {
    width: min(1240px, calc(100% - 28px));
}

.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
}

.logo {
    color: #fff;
    font-size: 1.84rem;
    font-weight: 800;
    letter-spacing: -0.045em;
    white-space: nowrap;
    line-height: 1;
}

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

nav ul {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

nav a {
    color: var(--text-soft);
    transition: var(--transition);
}

nav a:hover { color: #fff; }

.cta-button,
.hero-cta,
.cookie-accept-btn,
.cookie-decline-btn {
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.cta-button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.68rem 1rem;
    background: var(--accent);
    color: #0c0c0c;
    font-weight: 700;
    box-shadow: 0 8px 28px rgba(174, 187, 239, 0.12);
}

.cta-button:hover,
.hero-cta:hover,
.cookie-accept-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 34px rgba(174, 187, 239, 0.18);
}

.cta-button.outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--border-strong);
    box-shadow: none;
}

.cta-button.outline:hover { background: rgba(174, 187, 239, 0.07); }

.cta-button.danger {
    background: rgba(239, 68, 68, 0.12);
    color: #ff9b9b;
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: none;
}

.cta-button.danger:hover { background: rgba(239, 68, 68, 0.18); }

.hero-section {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 56px);
    padding-bottom: 72px;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: var(--accent);
    margin-bottom: 14px;
}

.hero-copy p {
    max-width: 640px;
    font-size: 1.08rem;
    color: var(--text-soft);
    margin-bottom: 28px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.82rem 1.35rem;
    border-radius: 999px;
    background: var(--accent);
    color: #0c0c0c;
    font-weight: 800;
}

.preview-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.preview-topbar {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}

.preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
}

.preview-body {
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(174, 187, 239, 0.05), transparent 45%),
        #101010;
}

.preview-panel {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 16px;
    min-height: 360px;
}

.preview-sidebar,
.preview-main {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
}

.preview-chip {
    height: 13px;
    border-radius: 999px;
    background: rgba(174, 187, 239, 0.16);
    margin-bottom: 12px;
}

.preview-chip.wide { width: 88%; }
.preview-chip.medium { width: 66%; }
.preview-chip.short { width: 44%; }

.preview-main-grid {
    display: grid;
    gap: 14px;
}

.preview-box {
    min-height: 90px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
}

.section { padding: 40px 0; }

.section-title {
    text-align: center;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: -0.03em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-soft);
    max-width: 780px;
    margin: 0 auto 36px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-strong);
    box-shadow: 0 18px 42px rgba(174, 187, 239, 0.08);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(174, 187, 239, 0.10);
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-soft);
    font-size: 0.96rem;
}

.faq-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 8px 0;
}

.faq-item + .faq-item { border-top: 1px solid var(--border); }

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    padding: 18px 22px;
    text-align: left;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question span:last-child {
    color: var(--accent);
    font-size: 1.15rem;
    transition: transform var(--transition);
}

.faq-question.active span:last-child { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
    color: var(--text-soft);
    padding: 0 22px;
}

.faq-answer p { padding-bottom: 18px; }

footer {
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}

.footer-inner {
    min-height: 88px;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.footer-brand {
    color: #fff;
    font-weight: 700;
    justify-self: start;
}

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

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.15rem;
    flex-wrap: wrap;
}

.footer-links a { color: var(--text-soft); }

.footer-copy {
    color: var(--text-muted);
    font-size: 0.95rem;
    justify-self: end;
    text-align: right;
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1200;
    display: none;
}

.cookie-banner.visible { display: block; }

.cookie-banner-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    background: rgba(18, 18, 18, 0.96);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: var(--shadow);
}

.cookie-banner-text {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-accept-btn {
    background: var(--accent);
    color: #0c0c0c;
    font-weight: 700;
    padding: 0.75rem 1.05rem;
}

.cookie-decline-btn {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0.75rem 1.05rem;
}

.cookie-decline-btn:hover {
    border-color: var(--border-strong);
    color: #fff;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
}

.status-badge.verified {
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
}

.status-badge.unverified {
    background: rgba(239, 68, 68, 0.12);
    color: #fda4af;
}

@media (max-width: 1024px) {
    .hero-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .logo-full { display: none; }
    .logo-compact { display: inline; }

    .hero-section {
        padding-top: calc(var(--header-height) + 28px);
    }

    .hero-grid,
    .features-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-grid { gap: 32px; }

    .footer-brand,
    .footer-copy {
        justify-self: center;
        text-align: center;
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-banner-actions button {
        flex: 1;
    }
}

@media (max-width: 580px) {
    .container { width: min(100% - 20px, 1180px); }
    .hero-copy h1 { font-size: 2.4rem; }
    .preview-panel { grid-template-columns: 1fr; }
}


header .cta-button {
    flex-shrink: 0;
}

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


/* FORCE LOGO FULL LEFT */
header .container {
    padding-left: 10px;
    padding-right: 18px;
}

.header-inner {
    justify-content: space-between;
}

.header-left {
    margin-right: auto;
}


.notice-box {
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(174, 187, 239, 0.18);
    background: rgba(174, 187, 239, 0.06);
    border-radius: 14px;
    color: var(--text-soft);
    font-size: 0.92rem;
}


.logo-with-mark,
.logo-mark-only {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo-with-mark img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.logo-mark-only img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-with-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.logo-with-mark img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-with-mark > span {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
}

.logo-mark-only,
.logo-compact {
    display: none !important;
}
