/* ========================================
   168-ФЗ Landing — Dark Editorial Theme
   ======================================== */

:root {
    --bg: #0a0a0b;
    --bg-elevated: #111113;
    --bg-card: #161618;
    --bg-card-hover: #1c1c1f;
    --surface: #1e1e21;

    --text: #e8e8ec;
    --text-secondary: #8b8b96;
    --text-muted: #5a5a65;

    --red: #ef4444;
    --red-dim: rgba(239, 68, 68, 0.12);
    --amber: #f59e0b;
    --amber-dim: rgba(245, 158, 11, 0.12);
    --green: #22c55e;
    --green-dim: rgba(34, 197, 94, 0.12);
    --blue: #3b82f6;
    --blue-dim: rgba(59, 130, 246, 0.12);

    --accent: #6366f1;
    --accent-glow: rgba(99, 102, 241, 0.3);

    --border: rgba(255, 255, 255, 0.06);
    --border-strong: rgba(255, 255, 255, 0.1);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --font-display: 'Unbounded', cursive;
    --font-body: 'Manrope', sans-serif;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar--scrolled {
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
}

.navbar__logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.navbar__links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

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

.navbar__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar__partner {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.navbar__partner:hover {
    color: var(--text-secondary);
}

.navbar__cta {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 100px;
    background: var(--accent);
    color: white;
    transition: all 0.2s;
}

.navbar__cta:hover {
    box-shadow: 0 0 24px var(--accent-glow);
    transform: translateY(-1px);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

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

.btn--primary:hover {
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-2px);
}

.btn--large {
    padding: 18px 36px;
    font-size: 17px;
}

.btn--glow {
    position: relative;
}

.btn--glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--accent), #8b5cf6, var(--accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    filter: blur(12px);
}

.btn--glow:hover::before { opacity: 1; }

/* ========================================
   Hero
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--red-dim);
    border: 1px solid rgba(239, 68, 68, 0.2);
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 28px;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 50%, var(--red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 32px;
}

.hero__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }

.hero__actions-note {
    font-size: 13px;
    color: var(--text-muted);
    padding-left: 4px;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    animation: float-down 2s ease-in-out infinite;
}

@keyframes float-down {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* Demo card */
.demo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03),
        0 20px 60px -12px rgba(0,0,0,0.5);
}

.demo-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
}

.demo-card__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.demo-card__dot--red { background: #ff5f57; }
.demo-card__dot--yellow { background: #febc2e; }
.demo-card__dot--green { background: #28c840; }

.demo-card__title {
    margin-left: 8px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.demo-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demo-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.demo-item__badge {
    flex-shrink: 0;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.demo-item__badge--red { background: var(--red-dim); color: var(--red); }
.demo-item__badge--yellow { background: var(--amber-dim); color: var(--amber); }
.demo-item__badge--green { background: var(--green-dim); color: var(--green); }

.demo-item__text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.demo-item__original {
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 13px;
}

.demo-item--violation .demo-item__original {
    text-decoration: line-through;
    text-decoration-color: var(--red);
    opacity: 0.6;
}

.demo-item__arrow { color: var(--text-muted); flex-shrink: 0; }

.demo-item__fix {
    color: var(--green);
    font-weight: 600;
}

.demo-item__note {
    color: var(--text-secondary);
    font-size: 13px;
}

.demo-card__risk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    margin-top: 4px;
    border-radius: var(--radius-sm);
    background: var(--red-dim);
    border: 1px solid rgba(239, 68, 68, 0.15);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-card__risk.visible {
    opacity: 1;
    transform: translateY(0);
}

.demo-card__risk-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
}

.demo-card__risk-amount {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--red);
}

/* ========================================
   Ticker / Stats
   ======================================== */
.ticker {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
}

.ticker__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ticker__item { text-align: center; }

.ticker__number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    display: block;
}

.ticker__unit {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.ticker__label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.ticker__divider {
    width: 1px;
    height: 40px;
    background: var(--border-strong);
}

/* ========================================
   Section defaults
   ======================================== */
.section {
    padding: 96px 0;
}

.section--dark {
    background: var(--bg-elevated);
}

.section__header {
    text-align: center;
    margin-bottom: 56px;
}

.section__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section__subtitle {
    margin-top: 12px;
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Modes (what we check)
   ======================================== */
.modes__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mode-card {
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.mode-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.mode-card:hover::before { opacity: 1; }

.mode-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--accent);
    margin-bottom: 20px;
}

.mode-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.mode-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.mode-card__tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    background: var(--surface);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

/* ========================================
   Steps
   ======================================== */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 560px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 28px;
    padding: 24px 0;
}

.step__number-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step__number {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: rgba(99, 102, 241, 0.08);
    flex-shrink: 0;
}

.step__line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin-top: 8px;
    min-height: 40px;
}

.step__content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 4px;
}

.step__content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Law cards
   ======================================== */
.law-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.law-card {
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.law-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.law-card__icon-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.law-card__icon-wrap--red { background: var(--red-dim); color: var(--red); }
.law-card__icon-wrap--amber { background: var(--amber-dim); color: var(--amber); }
.law-card__icon-wrap--blue { background: var(--blue-dim); color: var(--blue); }
.law-card__icon-wrap--green { background: var(--green-dim); color: var(--green); }
.law-card__icon-wrap--muted { background: var(--surface); color: var(--text-secondary); }

.law-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.law-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.law-card--ok { border-color: rgba(34, 197, 94, 0.15); }
.law-card--warn { border-color: rgba(245, 158, 11, 0.15); }

/* ========================================
   Fines
   ======================================== */
.fines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.fine-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all 0.3s;
}

.fine-card:hover { transform: translateY(-2px); }

.fine-card__who {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.fine-card__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
}

.fine-card__row--repeat {
    border-top: 1px solid var(--border);
    margin-top: 4px;
    padding-top: 12px;
}

.fine-card__label {
    font-size: 13px;
    color: var(--text-muted);
}

.fine-card__value {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
}

.fine-card--accent { border-color: rgba(245, 158, 11, 0.2); }
.fine-card--accent .fine-card__who { color: var(--amber); }
.fine-card--accent .fine-card__row--repeat .fine-card__value { color: var(--amber); }

.fine-card--danger { border-color: rgba(239, 68, 68, 0.2); }
.fine-card--danger .fine-card__who { color: var(--red); }
.fine-card--danger .fine-card__row--repeat .fine-card__value { color: var(--red); }

.fines-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px;
    background: var(--amber-dim);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: var(--radius);
    max-width: 700px;
    margin: 0 auto;
}

.fines-warning svg { flex-shrink: 0; color: var(--amber); margin-top: 2px; }

.fines-warning p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    background: var(--bg-card);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover { border-color: var(--border-strong); }

.faq-item[open] { border-color: var(--accent); }

.faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item__chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-item__chevron { transform: rotate(180deg); color: var(--accent); }

.faq-item__answer {
    padding: 0 22px 18px;
}

.faq-item__answer p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.cta-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cta-section__desc {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-section__decoration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-orbit {
    position: relative;
    width: 280px;
    height: 280px;
}

.cta-orbit__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.cta-orbit__ring--1 {
    inset: 0;
    animation: orbit-spin 20s linear infinite;
}

.cta-orbit__ring--1::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 12px var(--red);
}

.cta-orbit__ring--2 {
    inset: 40px;
    border-color: rgba(255,255,255,0.08);
    animation: orbit-spin 15s linear infinite reverse;
}

.cta-orbit__ring--2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 20%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
}

.cta-orbit__ring--3 {
    inset: 80px;
    border-color: rgba(255,255,255,0.1);
    animation: orbit-spin 10s linear infinite;
}

.cta-orbit__ring--3::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 12px var(--amber);
}

.cta-orbit__center {
    position: absolute;
    inset: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
    background: var(--bg-card);
    border-radius: 50%;
    border: 2px solid var(--accent);
    box-shadow: 0 0 40px var(--accent-glow);
}

@keyframes orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   Neon Text Effect
   ======================================== */
.neon-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 32px;
    color: #e0b0ff;
    text-shadow:
        0 0 7px rgba(192, 132, 252, 0.6),
        0 0 20px rgba(192, 132, 252, 0.4),
        0 0 42px rgba(147, 51, 234, 0.3),
        0 0 82px rgba(147, 51, 234, 0.15);
    transition: text-shadow 0.3s;
}

.neon-text:hover {
    text-shadow:
        0 0 7px rgba(192, 132, 252, 0.8),
        0 0 20px rgba(192, 132, 252, 0.6),
        0 0 42px rgba(147, 51, 234, 0.5),
        0 0 82px rgba(147, 51, 234, 0.3),
        0 0 120px rgba(147, 51, 234, 0.15);
}

.neon-text--sm {
    font-size: inherit;
    font-weight: 600;
}

/* ========================================
   Supported By
   ======================================== */
.supported-by {
    padding: 56px 0;
    border-top: 1px solid var(--border);
}

.supported-by__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.supported-by__label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.supported-by__link {
    text-decoration: none;
    transition: transform 0.3s;
}

.supported-by__link:hover {
    transform: scale(1.05);
}

.supported-by__desc {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   CTA Partner
   ======================================== */
.cta-section__partner {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 12px;
}

.cta-section__partner a {
    text-decoration: none;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer__logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
}

.footer__left p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.footer__center {
    font-size: 13px;
    color: var(--text-muted);
}

.footer__center a {
    text-decoration: none;
}

.footer__disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    text-align: right;
    max-width: 360px;
}

/* ========================================
   Animations
   ======================================== */
.anim-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__actions { align-items: center; }

    .modes__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .law-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cta-section__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-section__decoration { order: -1; }

    .cta-orbit { width: 200px; height: 200px; }
    .cta-orbit__ring--2 { inset: 30px; }
    .cta-orbit__ring--3 { inset: 60px; }
    .cta-orbit__center { inset: 72px; font-size: 24px; }
}

@media (max-width: 600px) {
    .navbar__links { display: none; }
    .navbar__partner { display: none; }

    .hero { padding: 100px 0 60px; min-height: auto; }

    .hero__title { font-size: 28px; }

    .section { padding: 64px 0; }

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

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

    .ticker__grid { gap: 24px; }
    .ticker__divider { display: none; }
    .ticker__grid { flex-direction: column; }

    .hero__scroll-hint { display: none; }

    .footer__inner { flex-direction: column; text-align: center; }
    .footer__disclaimer { text-align: center; }
    .footer__center { order: -1; }

    .demo-card { margin: 0 -8px; }
}
