:root {
    --bg-base: #05080f;
    --bg-elevated: #101726;
    --bg-contrast: #171f2f;
    --bg-panel: #0d1422;
    --accent-teal: #5ab8a1;
    --accent-gold: #c6a869;
    --accent-blue: #4f9dd6;
    --text-primary: #f2f5ff;
    --text-secondary: #9aa6bf;
    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(90, 184, 161, 0.6);
    --shadow-soft: 0 28px 60px rgba(3, 6, 14, 0.55);
    --shadow-tight: 0 10px 24px rgba(3, 6, 14, 0.5);
    --max-width: 1140px;
    
    /* Gold tokens */
    --gold: #bfa76f;
    --gold-20: rgba(191, 167, 111, 0.20);
    --gold-35: rgba(191, 167, 111, 0.35);
    
    /* Typography */
    --font-heading: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', 'Monaco', monospace;
    --font-logo: 'Orbitron', 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, rgba(15, 16, 19, 0.98) 0%, rgba(12, 13, 17, 0.98) 40%, rgba(10, 11, 15, 1) 100%);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle at 25% 25%, rgba(90, 184, 161, 0.05) 0, transparent 40%), radial-gradient(circle at 75% 10%, rgba(79, 157, 214, 0.08) 0, transparent 50%), radial-gradient(circle at 50% 80%, rgba(198, 168, 105, 0.06) 0, transparent 58%);
    mix-blend-mode: screen;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Crect width='160' height='160' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: -1;
}

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

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

.container {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.top-bar {
    position: sticky;
    top: 0;
    background: rgba(6, 9, 18, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    z-index: 200;
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
}

.nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo__img {
    height: 56px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav__link {
    font-size: 0.95rem;
    color: #C3C6CA;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -10px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transform: scaleX(0.7);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav__link:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav__link:hover,
.nav__link:focus-visible {
    color: var(--text-primary);
}

.nav__link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.btn {
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--accent-teal);
    color: #010409;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(3, 5, 10, 0.4);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(90, 184, 161, 0.24);
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent-teal), rgba(59, 169, 255, 0.65));
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    border: 1px solid transparent;
}

.btn--primary:hover,
.btn--primary:focus-visible {
    box-shadow: 0 8px 24px var(--gold-35);
    transform: translateY(-1px);
}

.btn--ghost {
    background: rgba(90, 184, 161, 0.06);
    border-color: rgba(90, 184, 161, 0.32);
    color: var(--text-primary);
    box-shadow: none;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    color: var(--text-primary);
    background: rgba(90, 184, 161, 0.12);
    border-color: rgba(90, 184, 161, 0.55);
}

main {
    padding-bottom: 140px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-teal);
}

.lead {
    margin-top: 20px;
    max-width: 600px;
    color: var(--text-secondary);
    font-size: 1.12rem;
}

.section__divider {
    display: inline-flex;
    width: 68px;
    height: 2px;
    background: linear-gradient(90deg, rgba(79, 214, 182, 0.6), rgba(198, 168, 105, 0.5));
    border-radius: 999px;
    margin: 20px 0 24px;
}

.section__divider--hero {
    width: 92px;
    margin: 12px 0 12px;
}

.hero {
    position: relative;
    padding: 40px 0 95px;
    overflow: hidden;
}

.hero__backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(18, 19, 23, 0.98), rgba(13, 14, 19, 0.98));
    z-index: -1;
}

.hero__layout {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

.hero__content {
    text-align: center;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Gold divider for section titles */
h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 2px;
    margin-top: 14px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.8;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.35;
    font-weight: 600;
    margin-top: 20px;
}

.hero__brand {
    font-size: 0.87em;
    font-weight: 700;
}


.hero__stats {
    margin: 32px 0 16px;
    text-align: center;
}

.hero__stat-value {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #6FB89C;
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: 0.4px;
}

.hero__stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero__video {
    margin: 32px -50px;
    width: calc(100% + 100px);
    scroll-margin-top: 100px;
}

.video-player {
    position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, var(--bg-panel) 0%, var(--bg-contrast) 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.video-player__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.video-player__play-button {
    width: 64px;
    height: 64px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.video-player__play-button:hover {
    transform: scale(1.1);
}

.video-player__play-button svg {
    color: white;
    margin-left: 4px;
}

.video-player__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.video-player__description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 400px;
}

/* Risks Section */
.risks__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.risk-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.risk-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), 0 10px 30px var(--gold-20);
}

.risk-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
}

.risk-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.risk-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.risks__video {
    margin-top: 48px;
}

/* Modal Popup */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal__content {
    position: relative;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    text-align: left;
    z-index: 1001;
    box-shadow: var(--shadow-soft);
}

/* Стили для скроллбара */
.modal__content::-webkit-scrollbar {
    width: 8px;
}

.modal__content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal__content::-webkit-scrollbar-thumb {
    background: rgba(90, 184, 161, 0.3);
    border-radius: 4px;
}

.modal__content::-webkit-scrollbar-thumb:hover {
    background: rgba(90, 184, 161, 0.5);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal__close:hover {
    color: var(--text-primary);
}

.modal__content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.modal__content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.modal__content a {
    color: #5ED4B6;
    text-decoration: none;
}

.modal__content a:hover {
    text-decoration: underline;
}

.modal__content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.modal__content .btn {
    width: 100%;
    color: #FFFFFF !important;
}

.modal__content--video {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal__video {
    margin: 24px 0;
}

.modal__video .video-player {
    height: 350px;
}

/* Support Section */
.section--support {
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
}

.support {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.support h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.support p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.support__contacts {
    margin-top: 24px;
}

.support__contacts p {
    font-size: 1.1rem;
    color: var(--accent-teal);
    margin: 8px 0;
}

.btn--support {
    font-size: 0.9rem;
    padding: 8px 18px;
}

.hero__highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 8px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(16, 19, 27, 0.78);
    box-shadow: 0 12px 28px rgba(4, 6, 12, 0.38);
}

.highlight {
    display: grid;
    gap: 6px;
}

.highlight__label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.highlight__value {
    font-family: var(--font-mono);
    font-size: 1.05rem;
    font-weight: 500;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.hero__panel {
    display: flex;
    justify-content: center;
}

.section {
    padding: 95px 0;
    position: relative;
}

.section--gradient {
    background: linear-gradient(140deg, rgba(19, 28, 45, 0.7), rgba(7, 10, 18, 0.92));
}

.section--overlay {
    background: radial-gradient(circle at 50% -10%, rgba(90, 184, 161, 0.12), transparent 55%), linear-gradient(160deg, rgba(11, 16, 27, 0.94), rgba(10, 12, 20, 0.96));
}

.section--cta {
    background: linear-gradient(135deg, rgba(17, 24, 38, 0.92), rgba(5, 8, 16, 0.95));
}

.section__header {
    display: grid;
    gap: 12px;
    max-width: 760px;
    margin-bottom: 44px;
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--accent-teal);
}

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

.split {
    display: grid;
    grid-template-columns: minmax(280px, 1.1fr) minmax(240px, 1fr);
    gap: 40px;
    align-items: start;
}

.quotebox {
    padding: 32px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: rgba(13, 20, 33, 0.84);
    box-shadow: 0 22px 48px rgba(3, 5, 10, 0.45);
    display: grid;
    gap: 16px;
}

.pattern {
    position: relative;
}

.pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0.35;
}

.pattern--grid::after {
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
}

.pattern--lines::after {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 2px, transparent 2px, transparent 36px);
}

.pattern--noise::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cpath opacity='.08' d='M0 160 160 0H0z' fill='%23fff'/%3E%3C/svg%3E");
    mix-blend-mode: screen;
}

.panel {
    position: relative;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: var(--bg-panel);
    box-shadow: 0 24px 54px rgba(3, 6, 12, 0.5);
    overflow: hidden;
    display: grid;
    gap: 0;
    transform-style: preserve-3d;
}

.panel--video {
    background: linear-gradient(150deg, rgba(90, 184, 161, 0.12), rgba(12, 18, 30, 0.94));
}

.panel--light {
    background: linear-gradient(150deg, rgba(59, 169, 255, 0.14), rgba(12, 18, 30, 0.92));
}

.panel--line {
    background: linear-gradient(160deg, rgba(198, 168, 105, 0.14), rgba(11, 16, 27, 0.92));
}

.panel--compact {
    background: linear-gradient(150deg, rgba(90, 184, 161, 0.12), rgba(10, 15, 25, 0.95));
}

.panel--tilt {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    transition: transform 0.4s ease;
    transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translateZ(0);
}

.panel__accent {
    position: absolute;
    inset: auto 0 0 auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top left, rgba(90, 184, 161, 0.4), transparent 70%);
    transform: translate(40%, 40%);
    pointer-events: none;
}

.panel__accent--gold {
    background: radial-gradient(circle at top left, rgba(198, 168, 105, 0.45), transparent 70%);
}

.panel__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 24px 30px 14px;
}

.panel__tag {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.panel__title {
    font-weight: 600;
}

.panel__body {
    padding: 0 30px 28px;
    display: grid;
    gap: 18px;
    color: var(--text-secondary);
}

.panel__meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
}

.panel__play {
    font-size: 1.4rem;
    color: var(--accent-teal);
}

.panel__wave {
    height: 140px;
    border-radius: 22px;
    background: linear-gradient(120deg, rgba(90, 184, 161, 0.32), rgba(59, 169, 255, 0.25));
    position: relative;
    overflow: hidden;
}

.panel__wave::before,
.panel__wave::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 2px, transparent 2px, transparent 10px);
    transform: skewX(-18deg);
}

.panel__wave::after {
    animation: wave 9s linear infinite;
    opacity: 0.4;
}

.panel__timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.panel__timeline span {
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(59, 169, 255, 0.3), rgba(90, 184, 161, 0.26));
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 36px;
    padding: 26px;
    border-radius: 30px;
    border: 1px solid rgba(79, 214, 182, 0.15);
    background: linear-gradient(145deg, rgba(9, 14, 25, 0.85), rgba(6, 10, 18, 0.92));
    box-shadow: var(--shadow-soft);
}

.timeline__item {
    position: relative;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 26, 43, 0.9);
    display: grid;
    gap: 14px;
    box-shadow: 0 16px 34px rgba(5, 9, 18, 0.42);
    overflow: hidden;
}

.timeline__marker {
    position: absolute;
    top: 20px;
    left: 22px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-teal);
    box-shadow: 0 0 0 6px rgba(90, 184, 161, 0.2);
}

.timeline__step {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding-left: 28px;
}

.timeline__item h3 {
    font-size: 1.14rem;
}

.timeline__item p {
    color: var(--text-secondary);
}

.timeline__item::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(90, 184, 161, 0.14), transparent 65%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline__item:hover::after,
.timeline__item:focus-within::after {
    opacity: 1;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    align-items: start;
}

.product {
    padding: 32px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(8, 12, 20, 0.92);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 20px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product:hover,
.product:focus-within {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: 0 20px 48px rgba(90, 184, 161, 0.18);
}

.product--pulse {
    border-color: rgba(198, 168, 105, 0.45);
}

.product--pulse:hover,
.product--pulse:focus-within {
    box-shadow: 0 20px 48px rgba(198, 168, 105, 0.18);
}

.product__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product__tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(90, 184, 161, 0.12);
    color: var(--accent-teal);
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.product--core .product__tag {
    background: rgba(198, 168, 105, 0.12);
    color: var(--accent-gold);
}

.product ul {
    display: grid;
    gap: 12px;
    color: var(--text-secondary);
    list-style: none;
}

.product ul li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-teal), rgba(59, 169, 255, 0.6));
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 36px;
    align-items: start;
}

.stat {
    position: relative;
    padding: 32px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(9, 13, 23, 0.9);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 14px;
    overflow: hidden;
}

.stat__spark {
    position: absolute;
    top: -20px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at center, rgba(90, 184, 161, 0.16), transparent 65%);
    transform: rotate(25deg);
}

.stat__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
}

.stat__value {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.stat p {
    color: var(--text-secondary);
}

.cta__layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.cta__list {
    margin: 22px 0;
    display: grid;
    gap: 12px;
    list-style: none;
    color: var(--text-secondary);
}

.cta__list li::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-gold));
}

.cta__actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.accordion {
    display: grid;
    gap: 18px;
}

.accordion__item {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 12, 20, 0.88);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.accordion__trigger {
    width: 100%;
    background: transparent;
    color: var(--text-primary);
    border: 0;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    cursor: pointer;
}

.accordion__icon {
    font-size: 1.3rem;
    color: var(--accent-teal);
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
    transform: rotate(45deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease;
    opacity: 0;
    padding: 0 28px;
}

.accordion__item.is-open .accordion__content {
    opacity: 1;
    padding: 0 28px 22px;
    max-height: 220px;
}

.accordion__content p {
    color: var(--text-secondary);
}

.accordion__item.is-open {
    border: 1.5px solid #bfa76f;
    border-radius: 22px;
    box-shadow: 0 0 8px rgba(191, 167, 111, 0.25);
    transition: box-shadow 0.3s ease;
}

.accordion__item.is-open:hover {
    box-shadow: 0 0 12px rgba(191, 167, 111, 0.25);
}

/* Gold border and shadow on hover for all FAQ items */
.accordion__item {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.accordion__item:hover {
    border: 1.5px solid var(--gold);
    border-radius: 22px;
    box-shadow: 0 0 8px rgba(191, 167, 111, 0.25);
}

/* Gold accent for FAQ toggle icon */
.accordion__icon {
    transition: color 0.2s ease;
}

.accordion__trigger:hover .accordion__icon {
    color: var(--gold);
}

.accordion__item.is-open .accordion__icon {
    color: var(--gold);
}

/* Gold focus ring for form elements */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--gold-20);
    border-color: var(--gold);
}

/* Proof card footer styles */
.proof-card__footer {
    text-align: center;
    margin-top: 24px;
    padding-bottom: 24px;
}

.proof-card__source {
    font-family: var(--font-body);
    font-size: 13px;
    color: #9CA3AF;
    margin: 0 0 12px 0;
    text-align: center;
}

.btn--demo {
    font-size: 0.9rem;
    padding: 10px 20px;
    font-weight: 600;
}

.disclaimer {
    padding-bottom: 0;
}

.disclaimer__box {
    padding: 32px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 12, 20, 0.94);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 16px;
    color: var(--text-secondary);
}

.footer {
    padding: 60px 0 60px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: var(--bg-base);
}

.final-accent {
    padding: 0 0 60px;
    background: transparent;
    text-align: center;
    margin-top: -80px;
}

.final-accent p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4em;
    letter-spacing: 0.3px;
    margin: 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: start;
    margin-bottom: 32px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__col--brand {
    gap: 16px;
}

.footer__logo {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.footer__copyright {
    font-size: 0.9rem;
    color: #E5E5E5;
    line-height: 1.6;
    font-weight: 500;
}

.footer__entity {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer__details {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer__tax {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer__support h4 {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.footer__support-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6em;
    margin-bottom: 16px;
}

.footer__contact {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.footer__contact:first-of-type {
    margin-top: 8px;
}

.footer__contact + .footer__contact {
    margin-top: 4px;
}

.footer__contact-link {
    color: #5ED4B6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__contact-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* ===== ЗОЛОТЫЕ АКЦЕНТЫ ===== */

/* 1) Разделительные линии: золотой модификатор */
.section__divider--gold {
    background: linear-gradient(90deg, rgba(198,168,105,.75), rgba(90,184,161,.5));
}

/* 2) Сравнение: золотой лейбл для Zen27 */
.compare__label--system {
    background: rgba(198,168,105,.14);
    color: var(--accent-gold);
    border: 1px solid rgba(198,168,105,.28);
    padding: 4px 10px;
    border-radius: 999px;
}

/* 3) Истоки (таймлайн): чётные маркеры и подсветка золотые */
.timeline__item:nth-child(2n) .timeline__marker {
    background: var(--accent-gold);
    box-shadow: 0 0 0 6px rgba(198,168,105,.22);
}
.timeline__item:nth-child(2n)::after {
    background: linear-gradient(135deg, rgba(198,168,105,.14), transparent 65%);
}

/* 4) Валидация (статы): каждый второй «спарк» — золото */
.stat:nth-child(2n) .stat__spark {
    background: radial-gradient(circle at center, rgba(198,168,105,.16), transparent 65%);
}

/* 5) Продукты: у Core — золотые буллеты */
.product--core ul li::before {
    background: linear-gradient(135deg, var(--accent-gold), rgba(198,168,105,.55));
}

/* 6) Вариант кнопки под золото (ghost-стиль) */
.btn--gold {
    background: rgba(198,168,105,.08);
    border-color: rgba(198,168,105,.35);
    color: var(--text-primary);
    box-shadow: none;
}
.btn--gold:hover,
.btn--gold:focus-visible {
    background: rgba(198,168,105,.14);
    border-color: rgba(198,168,105,.55);
}

/* 7) Лёгкое усиление золотых панелей там, где уже есть panel__accent--gold */
.panel .panel__accent--gold ~ .panel__body,
.panel .panel__accent--gold ~ .panel__header {
    position: relative;
}
.panel .panel__accent--gold ~ .panel__body::before,
.panel .panel__accent--gold ~ .panel__header::before {
    content:'';
    position:absolute;
    inset:0;
    pointer-events:none;
    background: radial-gradient(120px 80px at 10% 0%, rgba(198,168,105,.08), transparent 60%);
}

/* 8) Подвал: YouTube — золото при ховере */
.footer__social-icon--youtube:hover svg,
.footer__social-icon--youtube:focus svg {
    stroke: var(--accent-gold);
}

/* ===== МЕТОДОЛОГИЯ ВИДЕО ===== */

.methodology-video {
    margin-top: 60px;
}

.methodology-video__caption {
    text-align: center;
    color: #8A8A8A;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 24px;
    font-weight: 400;
}

/* ===== КАК МЫ РАБОТАЕМ ===== */

.workflow__cta {
    text-align: center;
    margin-top: 60px;
}

.workflow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.workflow__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.workflow__number {
    font-size: 3rem;
    font-weight: 700;
    color: #C9A34C;
    line-height: 1;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.workflow__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #00E6C3;
    transition: all 0.3s ease;
}

.workflow__icon svg {
    width: 24px;
    height: 24px;
}

.workflow__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.3;
}

.workflow__desc {
    font-size: 0.95rem;
    color: #DADADA;
    line-height: 1.4;
    margin: 0;
}

.workflow__divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(201,163,76,0.3), transparent);
    position: relative;
}

.workflow__divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: rgba(201,163,76,0.4);
    border-radius: 50%;
}

/* Hover эффекты */
.workflow__step:hover .workflow__number {
    text-shadow: 0 0 20px rgba(201,163,76,0.4);
}

.workflow__step:hover .workflow__icon {
    color: #00E6C3;
    transform: scale(1.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .workflow {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .workflow__divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(201,163,76,0.3), transparent);
        margin: 20px auto;
    }
    
    .workflow__divider::before {
        width: 6px;
        height: 6px;
    }
    
    .workflow__step {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .workflow__step {
        padding: 24px 16px;
    }
    
    .workflow__number {
        font-size: 2.5rem;
    }
    
    .workflow__icon {
        width: 40px;
        height: 40px;
    }
    
    .workflow__icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Social Icons - Контурная версия */
.footer__social-icons {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: flex-start;
    max-width: 112px;
}

.footer__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.25s ease;
    text-decoration: none;
    filter: drop-shadow(0 0 0px rgba(87, 205, 160, 0));
}

.footer__social-icon:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 14px rgba(87, 205, 160, 0.45));
}

.footer__social-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8px;
    fill: none;
    stroke: url(#zenGradient);
    transition: all 0.25s ease;
}

.footer__social-icon:hover svg {
    stroke: #A0EFD5;
}

/* Градиент для контуров */
.footer__social-icons::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.footer__social-icon--telegram,
.footer__social-icon--youtube {
    position: relative;
}

/* Fallback для браузеров без поддержки stroke градиента */
.footer__social-icon svg path {
    stroke: #57CDA0;
}


.footer__link {
    color: #5ED4B6;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.8em;
    transition: color 0.2s ease;
    margin-bottom: 4px;
    display: inline-block;
}

.footer__link:hover {
    color: #7DE3C1;
}

.footer__link--main {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer__notice {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 250px;
}

.footer__col--social h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #E4E4E4;
    letter-spacing: 0.3px;
    margin-top: 0;
    margin-bottom: 12px;
}

.footer__col--support h4,
.footer__col--links h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.footer__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 28px 0 20px;
}

.footer__legal {
    text-align: center;
    padding-bottom: 30px;
}

.footer__legal .footer__copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.footer__legal .footer__entity,
.footer__legal .footer__details {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-top: 12px;
}

.footer__col--placeholder {
    opacity: 0.3;
}

.modal__text {
    text-align: left;
}

.modal__text p {
    margin-bottom: 16px;
}

[data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.48s ease, transform 0.48s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section__header[data-animate] {
    transition-duration: 0.36s;
}

[data-animate].is-visible .panel--tilt {
    transform: perspective(900px) rotateX(0deg) rotateY(0deg);
}

@keyframes wave {
    0% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(25%);
    }
}

@media (max-width: 1080px) {
    .split {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 960px) {
    .top-bar__inner {
        flex-wrap: wrap;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-bar__inner .btn--ghost {
        order: 2;
    }
}

@media (max-width: 720px) {
    .hero {
        padding: 65px 0 90px;
    }

    .hero__actions,
    .cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .section {
        padding: 90px 0;
    }

    .timeline {
        padding: 18px;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 18px;
    }

    .top-bar__inner {
        padding: 16px 0;
    }

    .quotebox,
    .panel__body,
    .panel__header,
    .product,
    .stat,
    .timeline__item,
    .cta__content,
    .cta__meta .panel,
    .accordion__trigger,
    .accordion__content {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.section--contrast {
    background: linear-gradient(135deg, rgba(15, 16, 19, 0.98), rgba(11, 12, 16, 0.98));
}

.compare {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 44px;
    align-items: start;
}

.compare__card {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(13, 15, 22, 0.92);
    padding: 32px;
    box-shadow: 0 24px 52px rgba(4, 6, 12, 0.55);
    display: grid;
    gap: 22px;
    position: relative;
    overflow: hidden;
}

.compare__card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(90, 184, 161, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.compare__card:hover::after,
.compare__card:focus-within::after {
    opacity: 1;
}

.compare__header {
    display: grid;
    gap: 8px;
}

.compare__label {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(110, 185, 165, 0.14);
    color: rgba(175, 232, 215, 0.8);
    letter-spacing: 0.1em;
    font-size: 0.76rem;
    text-transform: uppercase;
    width: fit-content;
}

.compare__label--system {
    background: rgba(255, 214, 145, 0.14);
    color: rgba(255, 214, 145, 0.85);
}

.compare__points {
    display: grid;
    gap: 14px;
    list-style: none;
    color: var(--text-secondary);
}

.compare__points li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(110, 185, 165, 0.55), rgba(79, 157, 214, 0.45));
}

.compare__visual {
    position: relative;
    padding: 26px;
    border-radius: 22px;
    background: linear-gradient(120deg, rgba(18, 21, 30, 0.9), rgba(12, 15, 24, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    gap: 18px;
}

.compare__visual--hold {
    background: linear-gradient(120deg, rgba(24, 30, 38, 0.94), rgba(12, 14, 20, 0.92));
}

.compare__visual--zen {
    background: linear-gradient(120deg, rgba(14, 35, 29, 0.94), rgba(12, 15, 22, 0.92));
}

.compare__spark {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at center, rgba(110, 185, 165, 0.28), transparent 70%);
}

.compare__legend {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    color: var(--text-secondary);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot--hold {
    background: linear-gradient(135deg, rgba(175, 87, 120, 0.8), rgba(215, 138, 78, 0.8));
}

.dot--zen {
    background: linear-gradient(135deg, rgba(110, 185, 165, 0.85), rgba(79, 157, 214, 0.7));
}

.compare__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
    align-items: start;
}

.metric-card {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(13, 15, 22, 0.9);
    padding: 28px;
    display: grid;
    gap: 16px;
    color: var(--text-secondary);
}

.metric-card__label {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(200, 210, 230, 0.8);
}

.metric-card__values {
    display: grid;
    gap: 12px;
}

.metric-card__values > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(20, 23, 31, 0.75);
}

.metric-card__tag {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(160, 170, 200, 0.8);
}

.metric-card__tag--zen {
    color: rgba(110, 185, 165, 0.9);
}

.metric-card__value {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.compare__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.compare__cta p {
    color: var(--text-secondary);
}

@media (max-width: 720px) {
    .compare__cta {
        flex-direction: column;
        align-items: flex-start;
    }
}


.compare__cta {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(240px, 0.8fr);
    gap: 24px;
    align-items: stretch;
}

.compare__video {
    min-height: 100%;
}

.compare__video .panel__body {
    gap: 14px;
}

.compare__video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 214, 145, 0.85);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.compare__video-link::after {
    content: '→';
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.compare__video-link:hover::after,
.compare__video-link:focus-visible::after {
    transform: translateX(4px);
}

.compare__cta-text {
    display: grid;
    gap: 12px;
    align-content: start;
}

@media (max-width: 960px) {
    .compare__cta {
        grid-template-columns: 1fr;
    }
}

/* PATCH BEGIN: PROOF_CSS */
.proof__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
    align-items: start;
}

.proof-card {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(13, 15, 22, 0.92);
    padding: 32px;
    box-shadow: 0 24px 52px rgba(4, 6, 12, 0.55);
    display: grid;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.proof-card--active {
    border-color: var(--border-strong);
    box-shadow: 0 20px 48px rgba(90, 184, 161, 0.18);
}

.proof-card--active:hover,
.proof-card--active:focus-within {
    transform: translateY(-6px);
}

.proof-card--disabled {
    opacity: 0.6;
    background: rgba(8, 12, 20, 0.6);
}

.proof-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.proof-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(90, 184, 161, 0.12);
    color: var(--accent-teal);
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.proof-card__tag--start {
    background: rgba(79, 157, 214, 0.12);
    color: var(--accent-blue);
}

.proof-card__tag--flagship {
    background: rgba(90, 184, 161, 0.12);
    color: var(--accent-teal);
}

.proof-card__tag--premium {
    background: rgba(198, 168, 105, 0.12);
    color: var(--accent-gold);
}

.proof-card__tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.proof-card__tab {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.proof-card__tab--active {
    background: var(--accent-teal);
    color: #010409;
    border-color: var(--accent-teal);
}

.proof-card__tab--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.proof-card__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.proof-card__metric {
    display: grid;
    gap: 4px;
}

.proof-card__metric-label {
    font-size: 0.60rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
}

.proof-card__metric-value {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}


.proof-card__chart {
    height: 80px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.sparkline {
    width: 100%;
    height: 100%;
    position: relative;
}

.sparkline__placeholder {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.proof-card__note {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-card__note p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.proof-card__placeholder {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-align: center;
    margin: 40px 0;
}

.proof__cta {
    text-align: center;
    margin-top: 32px;
}

@media (max-width: 720px) {
    .proof__grid {
        grid-template-columns: 1fr;
    }
    
    .proof-card__metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* PATCH END: PROOF_CSS */

/* Tooltip styles */
:root {
    --tip-w: 360px;
    --tip-gap: 10px;
    --tip-rad: 12px;
    --tip-bg: #15191f;
    --tip-fg: #e6eef6;
    --tip-border: rgba(255,255,255,.08);
    --tip-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 1px rgba(255,255,255,.05);
}

.k-tip {
    position: fixed;
    z-index: 999999;
    width: var(--tip-w);
    max-width: calc(100vw - 32px);
    background: var(--tip-bg);
    color: var(--tip-fg);
    border: 1px solid var(--tip-border);
    border-radius: var(--tip-rad);
    padding: 16px 18px;
    box-shadow: var(--tip-shadow);
    pointer-events: none;
    line-height: 1.45;
    font-size: 14px;
}

.k-tip .dot { 
    display:inline-block; 
    width:10px; 
    height:10px; 
    border-radius:50%; 
    margin-right:8px; 
    transform: translateY(1px); 
}

.k-tip .dot.red    { background: #FF6B6B; }
.k-tip .dot.orange { background: #FFB347; }
.k-tip .dot.green  { background: #47E6B1; }
.k-tip .dot.blue   { background: #4DB6FF; }
.k-tip .dot.gold   { background: #D6B86A; }



.k-tip-trigger {
    display:inline-flex; 
    align-items:center; 
    justify-content:center;
    width:18px; 
    height:18px; 
    border-radius:50%;
    font-size:12px; 
    user-select:none; 
    cursor:help;
    color:#BFD6E6; 
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    margin-left: 6px;
}

.k-tip-trigger:hover { 
    background:rgba(255,255,255,.1); 
}

.proof-card__metric-header {
    display: flex;
    align-items: center;
}
