:root {
    --ink: #111218;
    --muted: #58606d;
    --paper: #f7f2ea;
    --accent: #ff7a45;
    --accent-strong: #e4572e;
    --teal: #1f8a70;
    --sky: #f0f6ff;
    --shadow: 0 20px 40px rgba(17, 18, 24, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top, #fff6ea 0%, #f2f7ff 55%, #f7f2ea 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.page-shell {
    position: relative;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(0px);
}

.page-shell::before {
    top: -220px;
    right: -120px;
    background: radial-gradient(circle, rgba(255, 122, 69, 0.35), rgba(255, 122, 69, 0));
}

.page-shell::after {
    bottom: -260px;
    left: -160px;
    background: radial-gradient(circle, rgba(31, 138, 112, 0.28), rgba(31, 138, 112, 0));
}

.top-nav {
    position: sticky;
    top: 0;
    background: rgba(247, 242, 234, 0.85);
    backdrop-filter: blur(12px);
    z-index: 10;
}

.top-nav a {
    color: var(--ink);
    font-weight: 500;
    text-decoration: none;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--ink);
}

.brand-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    background: transparent;
}


.btn-brand {
    background: linear-gradient(120deg, var(--accent), var(--accent-strong));
    border: none;
    box-shadow: 0 10px 20px rgba(228, 87, 46, 0.25);
}

.btn-brand:hover {
    background: linear-gradient(120deg, var(--accent-strong), var(--accent));
}

.language-switch .form-select {
    border-radius: 999px;
    border-color: rgba(17, 18, 24, 0.1);
    font-weight: 600;
}

.hero-section {
    padding: 6rem 0 4rem;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal);
}

.hero-title {
    font-family: "Newsreader", "Times New Roman", serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-body {
    color: var(--muted);
    font-size: 1.1rem;
}

.hero-note {
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(17, 18, 24, 0.08);
}

.score-panel {
    border-radius: var(--radius-md);
    background: #fffaf4;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.score-label {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--accent-strong);
    margin-bottom: 0.5rem;
}

.score-title {
    font-weight: 600;
    margin-bottom: 1.2rem;
}

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

.score-item {
    background: #fff;
    border-radius: 16px;
    padding: 0.75rem;
    text-align: center;
    box-shadow: 0 8px 18px rgba(17, 18, 24, 0.08);
}

.score-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
}

.score-item strong {
    font-size: 1.4rem;
}

.score-progress {
    margin-top: 1.5rem;
    color: var(--muted);
}

.score-progress .progress {
    height: 8px;
    border-radius: 999px;
    background: rgba(31, 138, 112, 0.15);
    margin: 0.5rem 0;
}

.score-progress .progress-bar {
    background: linear-gradient(120deg, var(--teal), #2bbf96);
}

.activity-panel {
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    background: #f2f8f5;
}

.activity-panel ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.activity-panel li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(17, 18, 24, 0.08);
}

.activity-panel li:last-child {
    border-bottom: none;
}

.features-section {
    background: rgba(255, 255, 255, 0.8);
}

.section-head h2 {
    font-family: "Newsreader", "Times New Roman", serif;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.8rem;
    height: 100%;
    box-shadow: 0 12px 30px rgba(17, 18, 24, 0.08);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--muted);
}

.security-section {
    padding: 5rem 0;
}

.security-section h2 {
    font-family: "Newsreader", "Times New Roman", serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.security-section p {
    color: var(--muted);
}

.stats-grid {
    display: grid;
    gap: 1rem;
}

.stat-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 28px rgba(17, 18, 24, 0.08);
}

.stat-card h3 {
    margin-bottom: 0.5rem;
    color: var(--teal);
}

.pricing-section h2 {
    font-family: "Newsreader", "Times New Roman", serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-section p {
    color: var(--muted);
}

.pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.pricing-card ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(17, 18, 24, 0.08);
}

.pricing-card li:last-child {
    border-bottom: none;
}

.cta-section {
    padding: 5rem 0;
}

.cta-card {
    background: linear-gradient(120deg, #111218, #2b2f3f);
    color: #fff;
    padding: 3rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: var(--shadow);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-section {
    color: var(--muted);
}

.footer-section a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
}

.hero-section,
.feature-card,
.stat-card,
.pricing-card,
.cta-card {
    animation: float-in 0.7s ease-out both;
}

.feature-card:nth-child(1) {
    animation-delay: 0.05s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.12s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes float-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .top-nav {
        position: static;
    }

    .hero-section {
        padding-top: 4rem;
    }

    .cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .hero-card {
        padding: 1.5rem;
    }

    .score-grid {
        grid-template-columns: 1fr;
    }
}
