
:root {
    --color-primary: #4c2cff;
    --color-secondary: #ff8a00;
    --color-dark: #101322;
    --color-light: #f7f7fb;
    --color-muted: #6f7390;
    --max-width: 1200px;
    --font-base: 'Inter', 'Segoe UI', Tahoma, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-base);
    background-color: var(--color-light);
    color: var(--color-dark);
    line-height: 1.6;
}

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

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

header {
    background: rgba(16, 19, 34, 0.92);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 0 1.5rem;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    width: 138px;
    height: 62px;
}

.logo span {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: #f4f5ff;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

nav a:hover,
nav a:focus {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
    outline: none;
}

.hero {
    background: linear-gradient(135deg, rgba(76, 44, 255, 0.92), rgba(16, 19, 34, 0.95));
    color: #fff;
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.hero-content {
    display: grid;
    gap: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin: 0;
}

.summary {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: var(--color-secondary);
    color: #101322;
    box-shadow: 0 15px 35px rgba(255, 138, 0, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(255, 138, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

section:nth-of-type(even) {
    background-color: #fff;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    margin-bottom: 1.5rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    margin-top: 0.5rem;
    border-radius: 999px;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 18px 45px rgba(16, 19, 34, 0.08);
    border: 1px solid rgba(16, 19, 34, 0.05);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

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

.table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(16, 19, 34, 0.08);
    background: #fff;
    box-shadow: 0 20px 50px rgba(16, 19, 34, 0.07);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

thead {
    background: rgba(76, 44, 255, 0.08);
}

th,
td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(16, 19, 34, 0.08);
    font-size: 0.98rem;
}

th {
    font-weight: 600;
}

tr:last-of-type td {
    border-bottom: none;
}

.highlight {
    background: linear-gradient(135deg, rgba(76, 44, 255, 0.12), rgba(255, 138, 0, 0.12));
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(76, 44, 255, 0.15);
}

.list-check {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.list-check li {
    position: relative;
    padding-left: 1.75rem;
}

.list-check li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.notice {
    background: rgba(76, 44, 255, 0.08);
    border-left: 4px solid var(--color-primary);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    color: var(--color-dark);
    margin-top: 1rem;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.chip {
    background: rgba(16, 19, 34, 0.08);
    border-radius: 999px;
    padding: 0.5rem 1.1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-dark);
}

footer {
    background: #0d1020;
    color: #d7daff;
    padding: 2.5rem 0;
    margin-top: 3rem;
}

footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

footer h4 {
    margin-top: 0;
    margin-bottom: 1rem;
}

footer a {
    color: #d7daff;
    font-size: 0.95rem;
}

footer a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.tagline {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.table-note {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.split {
    display: grid;
    gap: 2rem;
}

.split-2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 138, 0, 0.15);
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

blockquote {
    margin: 0;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--color-primary);
    background: rgba(76, 44, 255, 0.08);
    border-radius: 12px;
    font-style: italic;
    color: var(--color-dark);
}

.cta-banner {
    background: linear-gradient(120deg, rgba(76, 44, 255, 0.92), rgba(255, 138, 0, 0.85));
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3rem);
    color: #fff;
    text-align: center;
    box-shadow: 0 25px 60px rgba(16, 19, 34, 0.18);
}

.cta-banner h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.5rem;
}

.cta-banner p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 960px) {
    nav ul {
        gap: 0.9rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

@media (max-width: 720px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .hero {
        text-align: left;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    table {
        min-width: unset;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

