:root {
    --bg: #06111f;
    --bg-soft: #0a1728;
    --panel: rgba(15, 31, 51, 0.88);
    --panel-strong: #10233a;
    --panel-light: #142a44;
    --border: rgba(133, 169, 204, 0.16);
    --border-strong: rgba(64, 207, 173, 0.28);

    --text: #f4f8fc;
    --text-soft: #b4c3d4;
    --text-muted: #7f94aa;

    --primary: #27d3a2;
    --primary-dark: #1da77f;
    --primary-glow: rgba(39, 211, 162, 0.22);

    --secondary: #4bb5ff;
    --secondary-glow: rgba(75, 181, 255, 0.18);

    --danger: #ff6174;
    --warning: #f5b84c;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;

    --shadow-sm: 0 10px 35px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.35);

    --container: 1220px;
    --header-height: 78px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 85% 10%, rgba(39, 211, 162, 0.11), transparent 30%),
        radial-gradient(circle at 10% 35%, rgba(75, 181, 255, 0.09), transparent 28%),
        linear-gradient(180deg, #06111f 0%, #071523 45%, #06111f 100%);
    font-family:
        "Tajawal",
        "Segoe UI",
        Tahoma,
        Arial,
        sans-serif;
    line-height: 1.7;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.17;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

button,
input,
textarea,
select {
    font: inherit;
}

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

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

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

.section-dark {
    background:
        linear-gradient(
            180deg,
            rgba(9, 23, 39, 0.92),
            rgba(6, 17, 31, 0.98)
        );
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border: 1px solid rgba(39, 211, 162, 0.23);
    border-radius: 999px;
    color: #7de7c8;
    background: rgba(39, 211, 162, 0.08);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.section-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-heading .section-badge {
    margin-inline: auto;
}

.section-heading h2 {
    margin: 18px 0 14px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.section-heading p {
    margin: 0;
    color: var(--text-soft);
    font-size: 18px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

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

.button-primary {
    color: #03130e;
    background:
        linear-gradient(135deg, #68ebc6 0%, var(--primary) 48%, #22b98d 100%);
    box-shadow:
        0 12px 30px rgba(39, 211, 162, 0.19),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-primary:hover {
    box-shadow:
        0 16px 38px rgba(39, 211, 162, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button-secondary {
    color: var(--text);
    border-color: rgba(158, 188, 218, 0.18);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
    border-color: rgba(75, 181, 255, 0.4);
    background: rgba(75, 181, 255, 0.08);
}

.button-large {
    min-height: 54px;
    padding-inline: 26px;
    font-size: 16px;
}

button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    background: rgba(6, 17, 31, 0.76);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #04130e;
    background:
        linear-gradient(135deg, #7ff0d1, var(--primary));
    box-shadow:
        0 10px 30px rgba(39, 211, 162, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    font-size: 20px;
    font-weight: 1000;
}

.brand-name {
    font-size: 21px;
    font-weight: 1000;
    letter-spacing: 0.08em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
}

.main-nav a {
    position: relative;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--primary);
    transition: width 0.2s ease;
}

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

.main-nav a:hover::after {
    width: 100%;
}

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

.header-actions .button {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 13px;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: var(--text);
}

/* Hero */

.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 90px 0 110px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    top: -240px;
    right: -190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 211, 162, 0.13), transparent 68%);
    filter: blur(5px);
}

.hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -250px;
    bottom: -250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75, 181, 255, 0.11), transparent 70%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(480px, 0.95fr);
    align-items: center;
    gap: 72px;
}

.hero-content h1 {
    max-width: 760px;
    margin: 22px 0 24px;
    font-size: clamp(46px, 6vw, 78px);
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.hero-content h1 span {
    display: block;
    margin-top: 8px;
    color: transparent;
    background:
        linear-gradient(90deg, #ffffff 0%, #72e8ca 48%, #5bc3ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-description {
    max-width: 670px;
    margin: 0;
    color: var(--text-soft);
    font-size: 19px;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.hero-points {
    display: grid;
    gap: 13px;
    margin-top: 38px;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
}

.point-icon {
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(39, 211, 162, 0.2);
    border-radius: 11px;
    color: var(--primary);
    background: rgba(39, 211, 162, 0.07);
    font-size: 11px;
    font-weight: 1000;
}

.hero-preview {
    position: relative;
}

.preview-glow {
    position: absolute;
    inset: 14% 8%;
    border-radius: 40%;
    background: rgba(39, 211, 162, 0.18);
    filter: blur(70px);
}

.market-card {
    position: relative;
    z-index: 1;
    padding: 24px;
    border: 1px solid rgba(132, 174, 208, 0.18);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(17, 38, 61, 0.96), rgba(8, 23, 39, 0.96));
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.market-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.05),
            transparent 22%,
            transparent 78%,
            rgba(39, 211, 162, 0.035)
        );
}

.market-card-header {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.market-label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
}

.market-card-header h2 {
    margin: 0;
    font-size: 27px;
    letter-spacing: -0.03em;
}

.market-price {
    text-align: left;
}

.market-price strong {
    display: block;
    font-size: 18px;
}

.market-price span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
}

.market-price span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.market-status {
    position: relative;
    margin-top: 22px;
    padding: 12px 16px;
    border-radius: 13px;
    text-align: center;
    font-size: 13px;
    font-weight: 1000;
    letter-spacing: 0.04em;
}

.buy-status {
    color: #91efd3;
    border: 1px solid rgba(39, 211, 162, 0.22);
    background: rgba(39, 211, 162, 0.09);
}

.qss-summary {
    position: relative;
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.027);
}

.qss-main {
    display: grid;
    gap: 4px;
}

.qss-main span {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
}

.qss-main strong {
    color: #ff8c9a;
    font-size: 35px;
    line-height: 1;
}

.qss-main small {
    color: var(--text-soft);
}

.qss-scale {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 10px;
}

.scale-line {
    position: relative;
    height: 5px;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            #ff6174 0%,
            #ffb85c 34%,
            #60758a 50%,
            #61c7ff 68%,
            #27d3a2 100%
        );
}

.scale-position {
    position: absolute;
    top: 50%;
    left: 37%;
    width: 12px;
    height: 12px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #ff7f8f;
    box-shadow: 0 0 15px rgba(255, 97, 116, 0.62);
    transform: translate(-50%, -50%);
}

.timeframes-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
    margin-top: 18px;
}

.timeframe-item {
    padding: 12px 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.027);
    text-align: center;
}

.timeframe-item span {
    display: block;
    margin-bottom: 4px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 900;
}

.timeframe-item strong {
    font-size: 13px;
}

.timeframe-item.positive strong {
    color: #70e7c5;
}

.timeframe-item.negative strong {
    color: #ff7c8c;
}

.timeframe-item.neutral strong {
    color: #f4c76a;
}

.mini-chart {
    position: relative;
    height: 150px;
    margin-top: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px),
        rgba(2, 13, 23, 0.5);
    background-size: 28px 28px;
    overflow: hidden;
}

.mini-chart svg {
    width: 100%;
    height: 100%;
}

.chart-area {
    fill: url(#chartFill);
}

.chart-line {
    fill: none;
    stroke: #42dfb1;
    stroke-width: 3;
    filter: drop-shadow(0 0 7px rgba(39, 211, 162, 0.5));
}

.market-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(1.35);
    }
}

/* Steps */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.step-card {
    position: relative;
    min-height: 280px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background:
        linear-gradient(
            145deg,
            rgba(20, 42, 68, 0.72),
            rgba(9, 25, 42, 0.82)
        );
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.step-card:hover {
    transform: translateY(-7px);
    border-color: rgba(39, 211, 162, 0.28);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 22px;
    color: rgba(255, 255, 255, 0.07);
    font-size: 52px;
    font-weight: 1000;
    line-height: 1;
}

.step-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border: 1px solid rgba(39, 211, 162, 0.2);
    border-radius: 16px;
    color: var(--primary);
    background: rgba(39, 211, 162, 0.08);
    font-size: 25px;
    font-weight: 900;
}

.step-card h3 {
    margin: 0 0 12px;
    font-size: 23px;
}

.step-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.9;
}

/* Live Section */

.live-section {
    overflow: hidden;
}

.live-section::before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    right: -220px;
    top: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 211, 162, 0.1), transparent 70%);
}

.live-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 70px;
}

.live-content h2 {
    margin: 20px 0 18px;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.live-content h2 span {
    display: block;
    color: var(--primary);
}

.live-content > p {
    margin: 0;
    color: var(--text-soft);
    font-size: 18px;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin: 30px 0 34px;
}

.feature-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-soft);
    font-weight: 700;
}

.feature-list span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--primary);
    background: rgba(39, 211, 162, 0.09);
    font-size: 13px;
}

.live-preview {
    position: relative;
}

.live-preview::before {
    content: "";
    position: absolute;
    inset: 12% 10%;
    border-radius: 50%;
    background: rgba(75, 181, 255, 0.15);
    filter: blur(65px);
}

.live-window {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(128, 166, 198, 0.18);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(17, 37, 59, 0.96), rgba(7, 20, 34, 0.97));
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
}

.window-topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    background: rgba(255, 255, 255, 0.025);
}

.window-topbar strong {
    font-size: 13px;
    letter-spacing: 0.07em;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff6174;
}

.window-dots span:nth-child(2) {
    background: #f4bc5a;
}

.window-dots span:nth-child(3) {
    background: #2fd3a2;
}

.online-status {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
}

.online-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.window-body {
    padding: 14px;
}

.preview-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.preview-row + .preview-row {
    margin-top: 10px;
}

.preview-row div {
    display: grid;
    gap: 3px;
}

.preview-row strong {
    font-size: 14px;
}

.preview-row span {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 800;
}

.preview-row b {
    color: var(--text-soft);
    font-size: 15px;
}

.positive-text {
    color: var(--primary) !important;
}

.negative-text {
    color: var(--danger) !important;
}

/* Plans */

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background:
        linear-gradient(
            145deg,
            rgba(20, 42, 68, 0.72),
            rgba(8, 23, 39, 0.86)
        );
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.plan-card:hover {
    transform: translateY(-7px);
    border-color: rgba(75, 181, 255, 0.3);
}

.featured-plan {
    border-color: rgba(39, 211, 162, 0.36);
    background:
        linear-gradient(
            145deg,
            rgba(20, 51, 68, 0.9),
            rgba(7, 27, 37, 0.94)
        );
    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(39, 211, 162, 0.05);
}

.featured-label {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #04130e;
    background: var(--primary);
    font-size: 10px;
    font-weight: 1000;
}

.plan-header {
    display: grid;
    gap: 5px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-header span {
    font-size: 26px;
    font-weight: 1000;
}

.plan-header strong {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.06em;
}

.plan-description {
    min-height: 58px;
    margin: 22px 0;
    color: var(--text-soft);
}

.plan-card ul {
    display: grid;
    gap: 14px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.plan-card li {
    position: relative;
    padding-right: 28px;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
}

.plan-card li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary);
    font-weight: 1000;
}

.plan-button {
    width: 100%;
    margin-top: auto;
}

/* Telegram */

.telegram-section {
    padding-top: 90px;
    padding-bottom: 110px;
}

.telegram-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 38px;
    border: 1px solid rgba(75, 181, 255, 0.22);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            135deg,
            rgba(15, 42, 67, 0.95),
            rgba(7, 24, 40, 0.96)
        );
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.telegram-card::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -100px;
    bottom: -150px;
    border-radius: 50%;
    background: rgba(75, 181, 255, 0.17);
    filter: blur(35px);
}

.telegram-icon {
    position: relative;
    z-index: 1;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(75, 181, 255, 0.28);
    border-radius: 23px;
    color: #8cd4ff;
    background: rgba(75, 181, 255, 0.1);
    font-size: 34px;
    transform: rotate(-12deg);
}

.telegram-content {
    position: relative;
    z-index: 1;
}

.telegram-content h2 {
    margin: 15px 0 10px;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.25;
}

.telegram-content p {
    max-width: 680px;
    margin: 0;
    color: var(--text-soft);
}

.telegram-card > .button {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    background: #040d17;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    gap: 50px;
    padding-top: 58px;
    padding-bottom: 48px;
}

.footer-brand p,
.risk-note p {
    margin: 15px 0 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.9;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-links a {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(-4px);
}

.risk-note {
    padding: 19px;
    border: 1px solid rgba(245, 184, 76, 0.14);
    border-radius: 15px;
    background: rgba(245, 184, 76, 0.045);
}

.risk-note strong {
    color: #f5c66b;
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 19px 0;
    color: var(--text-muted);
    text-align: center;
    font-size: 12px;
}

/* Responsive */

@media (max-width: 1120px) {
    .main-nav {
        gap: 18px;
    }

    .header-actions .button-secondary {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr 0.9fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: clamp(42px, 6vw, 66px);
    }
}

@media (max-width: 940px) {
    :root {
        --header-height: 68px;
    }

    .site-header {
        position: relative;
    }

    .main-nav,
    .header-actions {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 70px;
    }

    .hero-grid,
    .live-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 55px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .section-badge {
        margin-inline: auto;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-points {
        width: fit-content;
        margin-inline: auto;
        text-align: right;
    }

    .hero-preview {
        max-width: 620px;
        margin-inline: auto;
    }

    .steps-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .step-card,
    .plan-card {
        min-height: auto;
    }

    .live-grid {
        gap: 52px;
    }

    .live-content {
        text-align: center;
    }

    .live-content .section-badge {
        margin-inline: auto;
    }

    .feature-list {
        width: fit-content;
        margin-inline: auto;
        text-align: right;
    }

    .live-window {
        max-width: 700px;
        margin-inline: auto;
        transform: none;
    }

    .telegram-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .telegram-content .section-badge {
        margin-inline: auto;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .section {
        padding: 78px 0;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .brand-name {
        font-size: 18px;
    }

    .hero {
        padding-top: 55px;
        padding-bottom: 80px;
    }

    .hero-content h1 {
        margin-top: 18px;
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-points {
        width: 100%;
    }

    .market-card {
        padding: 17px;
        border-radius: 20px;
    }

    .market-card-header h2 {
        font-size: 21px;
    }

    .qss-main strong {
        font-size: 29px;
    }

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

    .mini-chart {
        height: 125px;
    }

    .section-heading h2 {
        font-size: 33px;
    }

    .section-heading p,
    .live-content > p {
        font-size: 16px;
    }

    .step-card,
    .plan-card {
        padding: 22px;
    }

    .live-content h2 {
        font-size: 37px;
    }

    .window-topbar {
        grid-template-columns: 1fr auto;
    }

    .window-topbar strong {
        display: none;
    }

    .preview-row {
        padding: 14px;
    }

    .telegram-card {
        padding: 27px 20px;
    }

    .telegram-icon {
        width: 66px;
        height: 66px;
        font-size: 29px;
    }

    .telegram-content h2 {
        font-size: 31px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

/* QSSTR Confirmed Trade Performance — isolated additive styles */
.marketing-performance-section {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background:
        radial-gradient(circle at 20% 20%, rgba(75, 181, 255, 0.08), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(39, 211, 162, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(7, 22, 37, 0.97), rgba(6, 17, 31, 0.99));
}
.marketing-performance-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
    gap: 22px;
    padding: 24px;
    border: 1px solid rgba(128, 166, 198, 0.17);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(17, 37, 59, .93), rgba(7, 20, 34, .96));
    box-shadow: var(--shadow-lg);
}
.marketing-performance-main,
.marketing-performance-stat,
.marketing-performance-recent {
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 16px;
    background: rgba(3, 14, 24, .58);
}
.marketing-performance-main { padding: 18px; }
.marketing-performance-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}
.marketing-performance-toolbar > div:first-child { display: grid; gap: 3px; }
.marketing-performance-toolbar span { color: var(--text-muted); font-size: 12px; font-weight: 700; }
.marketing-performance-toolbar strong { color: var(--text); font-size: 17px; }
.marketing-performance-tabs {
    display: inline-flex;
    gap: 5px;
    padding: 5px;
    border: 1px solid rgba(133, 169, 204, .15);
    border-radius: 12px;
    background: rgba(255, 255, 255, .025);
}
.marketing-performance-tab {
    min-height: 34px;
    padding: 7px 14px;
    border: 0;
    border-radius: 9px;
    color: var(--text-muted);
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
}
.marketing-performance-tab.is-active {
    color: #03130e;
    background: var(--primary);
    box-shadow: 0 8px 22px rgba(39, 211, 162, .18);
}
.marketing-performance-chart {
    min-height: 285px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 14px;
    background:
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
        rgba(2, 13, 23, .58);
    background-size: 34px 34px;
    overflow: hidden;
}
.marketing-performance-chart svg { display: block; width: 100%; height: 285px; }
.marketing-performance-source {
    margin-top: 12px;
    color: var(--text-muted);
    text-align: center;
    font-size: 11px;
}
.marketing-performance-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.marketing-performance-stat {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 16px;
    text-align: center;
}
.marketing-performance-stat span { color: var(--text-muted); font-size: 12px; font-weight: 700; }
.marketing-performance-stat strong { font-size: 30px; line-height: 1; font-variant-numeric: tabular-nums; }
.marketing-performance-stat.positive strong { color: var(--primary); }
.marketing-performance-stat.negative strong { color: var(--danger); }
.marketing-performance-stat.pending strong { color: var(--secondary); }
.marketing-performance-stat.rate strong { color: var(--warning); }
.marketing-performance-recent {
    grid-column: 1 / -1;
    min-height: 132px;
    padding: 12px;
}
.marketing-performance-result {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
    min-height: 31px;
    padding: 7px 9px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .025);
    color: var(--text-muted);
    font-size: 11px;
}
.marketing-performance-result + .marketing-performance-result { margin-top: 6px; }
.marketing-performance-result b { color: var(--text-soft); direction: ltr; }
.marketing-performance-result em { font-style: normal; font-weight: 900; }
.marketing-performance-result.win em { color: var(--primary); }
.marketing-performance-result.loss em { color: var(--danger); }
.marketing-performance-result.open em { color: var(--secondary); }
.marketing-performance-empty {
    min-height: 106px;
    display: grid;
    place-items: center;
    color: var(--text-muted);
    text-align: center;
    font-size: 12px;
}
@media (max-width: 940px) {
    .marketing-performance-shell { grid-template-columns: 1fr; }
    .marketing-performance-chart { min-height: 240px; }
    .marketing-performance-chart svg { height: 240px; }
}
@media (max-width: 640px) {
    .marketing-performance-shell { padding: 14px; border-radius: 20px; }
    .marketing-performance-main { padding: 13px; }
    .marketing-performance-toolbar { align-items: stretch; flex-direction: column; }
    .marketing-performance-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .marketing-performance-tab { width: 100%; }
    .marketing-performance-side { grid-template-columns: 1fr 1fr; gap: 8px; }
    .marketing-performance-stat { min-height: 96px; padding: 12px; }
    .marketing-performance-stat strong { font-size: 25px; }
    .marketing-performance-chart { min-height: 205px; }
    .marketing-performance-chart svg { height: 205px; }
}

/* QSSTR BOT subscriber registration — isolated additive styles */
.bot-access-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 25%, rgba(75, 181, 255, .08), transparent 32%),
        radial-gradient(circle at 85% 70%, rgba(39, 211, 162, .08), transparent 30%),
        linear-gradient(180deg, rgba(7, 22, 37, .97), rgba(6, 17, 31, .99));
}
.bot-access-shell {
    display: grid;
    grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
    gap: 22px;
    padding: 24px;
    border: 1px solid rgba(128, 166, 198, .18);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(17, 37, 59, .94), rgba(7, 20, 34, .97));
    box-shadow: var(--shadow-lg);
}
.bot-access-info,
.bot-auth-panel {
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 18px;
    background: rgba(3, 14, 24, .58);
}
.bot-access-info { padding: 26px; }
.bot-access-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(39, 211, 162, .22);
    border-radius: 17px;
    color: var(--primary);
    background: rgba(39, 211, 162, .08);
    font-size: 27px;
    box-shadow: 0 12px 28px rgba(39, 211, 162, .1);
}
.bot-access-info h3 { margin: 20px 0 8px; font-size: 25px; }
.bot-access-info > p { margin: 0; color: var(--text-soft); }
.bot-access-steps { display: grid; gap: 10px; margin-top: 25px; }
.bot-access-steps > div {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 2px 11px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 13px;
    background: rgba(255,255,255,.025);
}
.bot-access-steps span {
    grid-row: 1 / 3;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--primary);
    background: rgba(39, 211, 162, .08);
    font-size: 11px;
    font-weight: 1000;
}
.bot-access-steps b { color: var(--text-soft); font-size: 13px; }
.bot-access-steps small { color: var(--text-muted); direction: ltr; text-align: right; font-size: 9px; }
.bot-access-security {
    display: grid;
    gap: 7px;
    margin-top: 22px;
    padding: 15px;
    border: 1px solid rgba(75, 181, 255, .14);
    border-radius: 14px;
    background: rgba(75, 181, 255, .05);
}
.bot-access-security strong { color: var(--secondary); }
.bot-access-security span { color: var(--text-muted); font-size: 11px; }
.bot-auth-panel { min-height: 600px; padding: 24px; }
.bot-auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 5px;
    border: 1px solid rgba(133,169,204,.15);
    border-radius: 14px;
    background: rgba(255,255,255,.025);
}
.bot-auth-tab {
    min-height: 43px;
    border: 0;
    border-radius: 10px;
    color: var(--text-muted);
    background: transparent;
    cursor: pointer;
    font-weight: 900;
}
.bot-auth-tab.is-active {
    color: #03130e;
    background: var(--primary);
    box-shadow: 0 10px 25px rgba(39,211,162,.18);
}
.bot-auth-message {
    display: none;
    margin-top: 15px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}
.bot-auth-message.is-visible { display: block; }
.bot-auth-message.success { color: #8df0d1; border: 1px solid rgba(39,211,162,.24); background: rgba(39,211,162,.08); }
.bot-auth-message.error { color: #ff9aa6; border: 1px solid rgba(255,97,116,.24); background: rgba(255,97,116,.08); }
.bot-auth-message.info { color: #8fd2ff; border: 1px solid rgba(75,181,255,.22); background: rgba(75,181,255,.07); }
.bot-auth-form { display: grid; gap: 16px; margin-top: 20px; }
.bot-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bot-auth-form label,
.bot-payment-form label { display: grid; gap: 7px; }
.bot-auth-form label > span,
.bot-payment-form label > span { color: var(--text-soft); font-size: 12px; font-weight: 800; }
.bot-auth-form input,
.bot-payment-form input,
.bot-payment-form textarea {
    width: 100%;
    min-height: 47px;
    padding: 11px 13px;
    border: 1px solid rgba(133,169,204,.17);
    border-radius: 12px;
    outline: none;
    color: var(--text);
    background: rgba(255,255,255,.035);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.bot-payment-form textarea { min-height: 90px; resize: vertical; }
.bot-auth-form input:focus,
.bot-payment-form input:focus,
.bot-payment-form textarea:focus {
    border-color: rgba(39,211,162,.46);
    box-shadow: 0 0 0 3px rgba(39,211,162,.08);
}
.bot-plan-choice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px;
    border: 1px solid rgba(39,211,162,.18);
    border-radius: 13px;
    background: rgba(39,211,162,.055);
}
.bot-plan-choice span { color: var(--text-muted); font-size: 12px; }
.bot-plan-choice strong { color: var(--primary); font-size: 13px; }
.bot-terms-check {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: flex-start;
    gap: 10px !important;
    color: var(--text-muted);
}
.bot-terms-check input { width: 18px; min-height: 18px; margin-top: 3px; accent-color: var(--primary); }
.bot-terms-check span { font-weight: 600 !important; line-height: 1.7; }
.bot-auth-submit { width: 100%; min-height: 50px; border: 0; }
.bot-auth-submit.is-loading { opacity: .65; pointer-events: none; }
.bot-account-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.bot-account-head > div { display: grid; gap: 3px; }
.bot-account-head span { color: var(--text-muted); font-size: 11px; }
.bot-account-head strong { font-size: 20px; }
.bot-account-status {
    margin-top: 18px;
    padding: 17px;
    border: 1px solid rgba(75,181,255,.16);
    border-radius: 14px;
    background: rgba(75,181,255,.055);
}
.bot-account-status strong { display: block; margin-bottom: 5px; color: var(--secondary); }
.bot-account-status p { margin: 0; color: var(--text-soft); font-size: 13px; }
.bot-account-status.active { border-color: rgba(39,211,162,.24); background: rgba(39,211,162,.07); }
.bot-account-status.active strong { color: var(--primary); }
.bot-account-status.warning { border-color: rgba(245,184,76,.24); background: rgba(245,184,76,.07); }
.bot-account-status.warning strong { color: var(--warning); }
.bot-account-status.danger { border-color: rgba(255,97,116,.24); background: rgba(255,97,116,.07); }
.bot-account-status.danger strong { color: var(--danger); }
.bot-account-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    margin-top: 15px;
}
.bot-account-detail {
    display: grid;
    gap: 3px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 12px;
    background: rgba(255,255,255,.025);
}
.bot-account-detail span { color: var(--text-muted); font-size: 10px; }
.bot-account-detail b { color: var(--text-soft); font-size: 12px; overflow-wrap: anywhere; }
.bot-payment-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    padding: 18px;
    border: 1px solid rgba(245,184,76,.18);
    border-radius: 15px;
    background: rgba(245,184,76,.04);
}
.bot-payment-form h3 { margin: 0; color: var(--warning); }
.bot-payment-form p { margin: 0; color: var(--text-muted); font-size: 12px; }
.bot-active-notice {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid rgba(39,211,162,.24);
    border-radius: 15px;
    background: rgba(39,211,162,.07);
}
.bot-active-notice strong { color: var(--primary); }
.bot-active-notice p { margin: 7px 0 0; color: var(--text-soft); font-size: 13px; }
@media (max-width: 940px) {
    .bot-access-shell { grid-template-columns: 1fr; }
    .bot-auth-panel { min-height: auto; }
}
@media (max-width: 640px) {
    .bot-access-shell { padding: 13px; border-radius: 20px; }
    .bot-access-info, .bot-auth-panel { padding: 17px; }
    .bot-form-grid, .bot-account-details { grid-template-columns: 1fr; }
    .bot-plan-choice, .bot-account-head { align-items: stretch; flex-direction: column; }
    .bot-account-head .button { width: 100%; }
}

/* Existing mobile header control activation */
@media (max-width: 940px) {
    .header-inner { position: relative; flex-wrap: wrap; }
    .main-nav.is-open {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        padding: 10px;
        border: 1px solid rgba(133,169,204,.16);
        border-radius: 0 0 16px 16px;
        background: rgba(6,17,31,.98);
        box-shadow: 0 20px 45px rgba(0,0,0,.3);
    }
    .main-nav.is-open a { padding: 11px 12px; border-radius: 10px; }
    .main-nav.is-open a:hover { background: rgba(39,211,162,.07); }
    .main-nav.is-open a::after { display: none; }
}

/* QSSTR dynamic packages and payment options */
.bot-plan-select-label,
.bot-payment-form label {
    display: grid;
    gap: .45rem;
}
.bot-plan-select-label select,
.bot-payment-form select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 10px;
    background: #11151b;
    color: #f8fafc;
    padding: .72rem .8rem;
    font: inherit;
}
.bot-selected-plan-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    padding: .78rem .9rem;
    border: 1px solid rgba(240, 185, 11, .28);
    border-radius: 10px;
    background: rgba(240, 185, 11, .08);
}
.bot-selected-plan-summary:empty { display: none; }
.bot-selected-plan-summary strong { color: #f8fafc; }
.bot-selected-plan-summary span { color: #f0b90b; font-weight: 800; }
.bot-payment-instructions {
    display: grid;
    gap: .45rem;
    padding: .85rem;
    border: 1px solid rgba(14, 203, 129, .24);
    border-radius: 10px;
    background: rgba(14, 203, 129, .06);
}
.bot-payment-instructions:empty { display: none; }
.bot-payment-instructions div {
    display: grid;
    grid-template-columns: minmax(110px, .36fr) minmax(0, 1fr);
    gap: .65rem;
    align-items: start;
}
.bot-payment-instructions span { color: #848e9c; font-size: .8rem; }
.bot-payment-instructions b { color: #eaecef; overflow-wrap: anywhere; }
.bot-payment-instructions p { margin: 0; color: #848e9c; }
.plan-duration {
    color: #f0b90b;
    font-weight: 800;
    margin: -.2rem 0 .9rem;
}
.plan-loading-card { opacity: .78; }
@media (max-width: 640px) {
    .bot-selected-plan-summary { align-items: flex-start; flex-direction: column; }
    .bot-payment-instructions div { grid-template-columns: 1fr; gap: .12rem; }
}


/* Active subscriber BOT entry — isolated additive control. */
.bot-enter-button { display: inline-flex; margin-top: 14px; text-decoration: none; justify-content: center; align-items: center; }

/* QSSTR_PUBLIC_LANGUAGE_SELECTOR_STYLE_20260729 */
.qsstr-language-control { min-width:124px; height:42px; display:inline-flex; align-items:center; gap:7px; padding:0 10px; flex:0 0 auto; border:1px solid rgba(158,188,218,.18); border-radius:13px; background:rgba(255,255,255,.045); box-shadow:inset 0 1px 0 rgba(255,255,255,.04); }
.qsstr-language-icon { color:var(--primary, #27d3a2); font-size:15px; line-height:1; }
#qsstrLanguageSelect { width:100%; min-width:0; height:38px; padding:0 2px; border:0; outline:0; color:var(--text, #e8f1f7); background:transparent; cursor:pointer; font-size:12px; font-weight:800; }
#qsstrLanguageSelect option { color:#e8f1f7; background:#071522; }
.qsstr-language-control:focus-within { border-color:rgba(39,211,162,.42); background:rgba(39,211,162,.07); }
.sr-only { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }
html[dir="ltr"] .main-nav a::after { right:auto; left:0; }
html[dir="ltr"] .plan-card li { padding-right:0; padding-left:28px; }
html[dir="ltr"] .plan-card li::before { right:auto; left:0; }
html[dir="ltr"] .featured-label { left:auto; right:18px; }
@media (max-width:1120px) { .qsstr-language-control { min-width:108px; } }
@media (max-width:940px) { .qsstr-language-control { order:2; margin-inline-start:auto; min-width:118px; } .menu-button { order:3; } }
@media (max-width:420px) { .qsstr-language-control { min-width:102px; max-width:112px; padding-inline:8px; } #qsstrLanguageSelect { font-size:11px; } }


/* QSSTR approved header logo — isolated replacement of the former text mark */
.site-header .header-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    line-height: 0;
}

.site-header .brand-logo {
    display: block;
    width: auto;
    height: 54px;
    max-width: 154px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 8px 24px rgba(42, 222, 211, 0.14));
}

@media (max-width: 640px) {
    .site-header .brand-logo {
        height: 46px;
        max-width: 131px;
    }
}
