:root {
    --bg: #090a0c;
    --bg-deep: #070809;
    --card: #111318;
    --card-hover: #15181e;

    --text: #f4f4f5;
    --text-secondary: #92969f;
    --text-muted: #62666f;

    --gold: #c79a45;
    --gold-light: #e1b866;

    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 255, 255, 0.14);
    --gold-border: rgba(199, 154, 69, 0.32);

    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;

    background: var(--bg);
    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

button {
    font: inherit;
    color: inherit;
}

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

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


/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    border-bottom: 1px solid var(--border);

    background: rgba(9, 10, 12, 0.84);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;

    gap: 11px;

    white-space: nowrap;

    font-weight: 750;
    letter-spacing: -0.03em;
}

.brand-logo-shell {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;
}

.brand-logo-img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.brand-logo-fallback {
    display: none;

    width: 32px;
    height: 32px;

    fill: var(--gold-light);
}

.logo-text {
    font-size: 15px;
}

.nav {
    display: flex;
    align-items: center;

    gap: 32px;

    color: var(--text-secondary);

    font-size: 14px;
}

.nav a {
    transition: color 0.2s ease;
}

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


/* BUTTONS */

.btn {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    border: 1px solid var(--border);
    border-radius: 12px;

    cursor: pointer;

    font-size: 14px;
    font-weight: 650;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

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

.btn-primary {
    border-color: var(--gold);

    color: #090909;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    box-shadow:
        0 8px 30px rgba(199, 154, 69, 0.12);
}

.btn-primary:hover {
    box-shadow:
        0 12px 40px rgba(199, 154, 69, 0.2);
}

.btn-secondary {
    background:
        rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
    border-color:
        rgba(255, 255, 255, 0.16);
}

.btn-large {
    min-height: 52px;
    padding: 0 26px;
}

.btn-arrow {
    margin-left: 18px;
    transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}


/* HERO */

.hero {
    position: relative;
    overflow: hidden;

    min-height: calc(100vh - 78px);

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-bottom: 1px solid var(--border);

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(199, 154, 69, 0.07),
            transparent 30%
        ),
        var(--bg);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;

    opacity: 0.12;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 75%,
            transparent
        );

    pointer-events: none;
}

.hero-glow {
    position: absolute;

    border-radius: 999px;

    filter: blur(120px);

    pointer-events: none;
}

.hero-glow-one {
    width: 500px;
    height: 500px;

    right: 6%;
    top: 15%;

    background:
        rgba(199,154,69,.07);
}

.hero-glow-two {
    width: 360px;
    height: 360px;

    left: -160px;
    bottom: -120px;

    background:
        rgba(199,154,69,.04);
}

.hero-layout {
    position: relative;
    z-index: 5;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: center;

    gap: 75px;

    padding-top: 85px;
    padding-bottom: 60px;
}

.hero-copy {
    text-align: left;
}

.hero-badge,
.section-label {
    display: inline-flex;
    align-items: center;

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 750;

    letter-spacing: .16em;
}

.hero-badge {
    padding: 8px 13px;
    margin-bottom: 28px;

    border: 1px solid var(--gold-border);
    border-radius: 999px;

    background:
        rgba(199,154,69,.05);
}

.status-dot {
    width: 6px;
    height: 6px;

    margin-right: 9px;

    border-radius: 50%;

    background: var(--gold-light);

    box-shadow:
        0 0 0 4px rgba(199,154,69,.08),
        0 0 18px rgba(225,184,102,.5);
}

.hero-copy h1 {
    max-width: 700px;

    font-size:
        clamp(52px, 5.4vw, 82px);

    line-height: .98;

    letter-spacing: -.055em;
}

.hero-copy h1 span {
    color: var(--gold-light);
}

.hero-description {
    max-width: 590px;

    margin-top: 28px;

    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 10px;

    margin-top: 34px;
}

.hero-mini-stats {
    display: flex;

    margin-top: 58px;
}

.hero-mini-stats > div {
    min-width: 130px;

    padding-right: 30px;
}

.hero-mini-stats > div + div {
    padding-left: 30px;

    border-left: 1px solid var(--border);
}

.hero-mini-stats strong,
.hero-mini-stats span {
    display: block;
}

.hero-mini-stats strong {
    font-size: 17px;
}

.hero-mini-stats span {
    margin-top: 3px;

    color: var(--text-secondary);

    font-size: 12px;
}


/* NETWORK */

.network-visual {
    position: relative;

    width: min(100%, 570px);

    aspect-ratio: 1;

    margin-left: auto;

    transition:
        transform .35s ease-out;
}

.network-visual::before {
    content: "";

    position: absolute;

    width: 62%;
    height: 62%;

    left: 19%;
    top: 19%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(199,154,69,.10),
            transparent 68%
        );

    filter: blur(15px);
}

.network-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    border:
        1px solid rgba(199,154,69,.13);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);
}

.orbit-one {
    width: 72%;
    height: 72%;
}

.orbit-two {
    width: 94%;
    height: 55%;

    transform:
        translate(-50%, -50%)
        rotate(25deg);
}

.orbit-three {
    width: 55%;
    height: 94%;

    transform:
        translate(-50%, -50%)
        rotate(55deg);
}

.network-core {
    position: absolute;
    z-index: 5;

    left: 50%;
    top: 50%;

    width: 88px;
    height: 88px;

    transform:
        translate(-50%, -50%);

    display: grid;
    place-items: center;

    border:
        1px solid rgba(225,184,102,.50);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(199,154,69,.17),
            rgba(15,16,19,.95)
        );

    box-shadow:
        0 0 50px rgba(199,154,69,.14),
        inset 0 0 30px rgba(199,154,69,.06);
}

.network-logo-shell {
    position: relative;
    z-index: 2;

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;
}

.network-logo-img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.network-logo-fallback {
    display: none;

    width: 45px;
    height: 45px;

    fill: var(--gold-light);
}

.network-core-glow {
    position: absolute;

    width: 135px;
    height: 135px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(199,154,69,.17),
            transparent 65%
        );

    animation:
        corePulse 3s ease-in-out infinite;
}

.server-node {
    position: absolute;
    z-index: 6;

    display: flex;
    align-items: center;

    gap: 10px;

    min-width: 140px;

    padding: 10px 13px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        rgba(14,16,19,.83);

    backdrop-filter: blur(15px);

    box-shadow:
        0 12px 40px
        rgba(0,0,0,.25);

    transition:
        border-color .25s ease,
        transform .25s ease,
        background .25s ease;
}

.server-node:hover {
    transform: translateY(-3px);

    border-color:
        var(--gold-border);

    background:
        rgba(19,20,23,.96);
}

.server-node strong,
.server-node small {
    display: block;
}

.server-node strong {
    font-size: 12px;
}

.server-node small {
    margin-top: 1px;

    color: #70747c;

    font-size: 10px;
}

.server-status {
    width: 7px;
    height: 7px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #65c98b;

    box-shadow:
        0 0 9px
        rgba(101,201,139,.55);
}

.node-fi {
    top: 9%;
    right: 9%;
}

.node-de {
    top: 26%;
    left: 0;
}

.node-nl {
    top: 47%;
    right: -2%;
}

.node-us {
    bottom: 7%;
    right: 17%;
}

.network-lines {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;
}

.network-path {
    fill: none;

    stroke:
        rgba(199,154,69,.37);

    stroke-width: 1.2;

    stroke-dasharray: 5 8;

    animation:
        networkFlow 8s linear infinite;
}

.path-2 {
    animation-delay: -2s;
}

.path-3 {
    animation-delay: -4s;
}

.path-4 {
    animation-delay: -6s;
}


/* HERO BOTTOM */

.hero-bottom {
    position: relative;
    z-index: 5;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 24px;
    padding-bottom: 24px;

    border-top:
        1px solid var(--border);
}

.hero-trust {
    display: flex;
    gap: 25px;
}

.hero-trust span {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #858991;

    font-size: 11px;
}

.hero-trust i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--gold);
}

.hero-platforms {
    color: #5e626a;

    font-size: 11px;
}


/* SECTIONS */

.section {
    padding: 120px 0;
}

.section-muted {
    position: relative;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.012),
            transparent
        );
}

.section-heading {
    max-width: 700px;

    margin-bottom: 52px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading h2 {
    margin-top: 14px;

    font-size:
        clamp(38px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -.045em;
}

.section-heading p {
    max-width: 580px;

    margin-top: 18px;

    color:
        var(--text-secondary);

    font-size: 17px;
}

.section-heading.center p {
    margin-left: auto;
    margin-right: auto;
}


/* SVG BASE */

.protocol-icon svg,
.tab-protocol-icon svg,
.feature-icon svg {
    width: 100%;
    height: 100%;

    overflow: visible;
}

.protocol-vless svg {
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 3;
    stroke-linejoin: round;
}

.protocol-wireguard svg {
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.protocol-openvpn svg {
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* PROTOCOL CARDS */

.protocol-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}

.protocol-card {
    position: relative;

    min-height: 390px;

    display: flex;
    flex-direction: column;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 20px;

    background: var(--card);

    transition:
        transform .28s ease,
        border-color .28s ease,
        background .28s ease,
        box-shadow .28s ease;
}

.protocol-card:hover {
    transform:
        translateY(-6px);

    border-color:
        var(--border-hover);

    background:
        var(--card-hover);

    box-shadow:
        0 25px 60px rgba(0,0,0,.18);
}

.protocol-card.featured {
    border-color:
        var(--gold-border);

    background:
        radial-gradient(
            circle at 0 0,
            rgba(199,154,69,.12),
            transparent 48%
        ),
        var(--card);
}

.protocol-header {
    position: relative;
    z-index: 2;

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

.protocol-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    padding: 9px;

    border:
        1px solid var(--gold-border);

    border-radius: 14px;

    background:
        rgba(199,154,69,.055);

    box-shadow:
        0 0 30px rgba(199,154,69,.05);
}

.recommended,
.protocol-status {
    padding: 5px 9px;

    border-radius: 999px;

    font-size: 10px;
}

.recommended {
    color: var(--gold-light);

    background:
        rgba(199,154,69,.10);
}

.protocol-status {
    color: #797d86;

    background:
        rgba(255,255,255,.035);
}

.protocol-content {
    margin-top: 65px;
}

.protocol-content h3 {
    font-size: 32px;

    letter-spacing: -.04em;
}

.protocol-content p {
    margin-top: 12px;

    color:
        var(--text-secondary);
}

.protocol-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: auto;
    padding-top: 26px;
}

.protocol-tags span {
    padding: 5px 9px;

    border:
        1px solid var(--border);

    border-radius: 7px;

    color:
        var(--text-secondary);

    font-size: 10px;
}


/* FEATURES */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;
}

.feature-card {
    min-height: 220px;

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: 20px;

    background: var(--card);

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.feature-card:hover {
    transform:
        translateY(-4px);

    border-color:
        var(--border-hover);

    background:
        var(--card-hover);
}

.feature-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    padding: 8px;

    border:
        1px solid var(--gold-border);

    border-radius: 12px;

    background:
        rgba(199,154,69,.055);
}

.feature-icon svg {
    fill: none;

    stroke:
        var(--gold-light);

    stroke-width: 2.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    margin-top: 42px;

    font-size: 22px;

    letter-spacing: -.025em;
}

.feature-card p {
    margin-top: 7px;

    color:
        var(--text-secondary);
}


/* PRICING */

.pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 400px;

    left: 50%;
    top: 0;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        rgba(199,154,69,.035);

    filter: blur(120px);

    pointer-events: none;
}

.pricing-tabs {
    position: relative;
    z-index: 2;

    width: fit-content;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 6px;

    margin:
        0 auto 36px;

    padding: 6px;

    border:
        1px solid var(--border);

    border-radius: 15px;

    background:
        rgba(255,255,255,.025);
}

.pricing-tab {
    min-width: 170px;
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 18px;

    border:
        1px solid transparent;

    border-radius: 11px;

    cursor: pointer;

    color:
        var(--text-secondary);

    background: transparent;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.pricing-tab:hover {
    color: var(--text);
}

.pricing-tab.active {
    color: var(--text);

    border-color:
        var(--gold-border);

    background:
        linear-gradient(
            135deg,
            rgba(199,154,69,.13),
            rgba(199,154,69,.045)
        );
}

.tab-protocol-icon {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    padding: 3px;
}

.pricing-protocol-info {
    max-width: 900px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin:
        0 auto 30px;
}

.pricing-small-label {
    color:
        var(--text-muted);

    font-size: 10px;
    letter-spacing: .15em;
}

.pricing-protocol-info h3 {
    margin-top: 5px;

    font-size: 28px;
}

.pricing-protocol-info p {
    max-width: 460px;

    color:
        var(--text-secondary);

    text-align: right;
}

.pricing-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.price-card {
    position: relative;

    min-height: 430px;

    display: flex;
    flex-direction: column;

    padding: 26px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 20px;

    background:
        var(--card);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.price-card:hover {
    transform:
        translateY(-5px);

    border-color:
        var(--border-hover);
}

.price-card.popular {
    border-color:
        var(--gold-border);

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(199,154,69,.12),
            transparent 45%
        ),
        var(--card);

    box-shadow:
        0 20px 70px
        rgba(199,154,69,.05);
}

.price-badge {
    position: absolute;

    top: 18px;
    right: 18px;

    padding: 5px 9px;

    border-radius: 999px;

    color:
        var(--gold-light);

    background:
        rgba(199,154,69,.11);

    font-size: 10px;
}

.price-period {
    color:
        var(--text-secondary);

    font-size: 12px;
}

.price-title {
    margin-top: 10px;

    font-size: 24px;
}

.price-value {
    display: flex;
    align-items: baseline;

    gap: 7px;

    margin-top: 35px;
}

.price-value strong {
    font-size: 39px;

    line-height: 1;

    letter-spacing: -.045em;
}

.price-value span {
    color:
        var(--text-secondary);

    font-size: 12px;
}

.price-features {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-top: 34px;

    color:
        var(--text-secondary);

    font-size: 12px;
}

.price-features li {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 9px;
}

.price-features li::before {
    content: "✓";

    color:
        var(--gold-light);
}

.price-card .btn {
    width: 100%;

    margin-top: auto;
}

.pricing-note {
    max-width: 700px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    margin:
        28px auto 0;

    color:
        var(--text-secondary);

    text-align: center;

    font-size: 12px;
}

.pricing-note-icon {
    width: 24px;
    height: 24px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border:
        1px solid var(--gold-border);

    border-radius: 50%;

    color:
        var(--gold-light);
}


/* FAQ */

.faq-section {
    border-top:
        1px solid var(--border);
}

.faq-layout {
    display: grid;

    grid-template-columns:
        .72fr 1.28fr;

    gap: 100px;
}

.faq-intro {
    position: sticky;

    top: 130px;

    align-self: start;
}

.faq-intro h2 {
    margin-top: 14px;

    font-size:
        clamp(44px, 5vw, 64px);

    line-height: .98;

    letter-spacing: -.05em;
}

.faq-intro p {
    max-width: 360px;

    margin-top: 22px;

    color:
        var(--text-secondary);
}

.faq-list {
    border-top:
        1px solid var(--border);
}

.faq-item {
    border-bottom:
        1px solid var(--border);
}

.faq-question {
    width: 100%;

    min-height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border: 0;

    cursor: pointer;

    color: var(--text);

    background: transparent;

    text-align: left;

    font-size: 18px;
    font-weight: 650;
}

.faq-plus {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border:
        1px solid var(--border);

    border-radius: 10px;

    color:
        var(--text-secondary);

    transition:
        border-color .2s ease,
        color .2s ease,
        background .2s ease;
}

.faq-item.active .faq-plus {
    border-color:
        var(--gold-border);

    color:
        var(--gold-light);

    background:
        rgba(199,154,69,.055);
}

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows
        .35s
        cubic-bezier(.2,.7,.2,1);
}

.faq-answer > div {
    overflow: hidden;

    color:
        var(--text-secondary);

    line-height: 1.8;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer > div {
    padding-bottom: 28px;
}


/* FOOTER */

.footer {
    padding: 70px 0 30px;

    border-top:
        1px solid var(--border);

    background:
        var(--bg-deep);
}

.footer-inner {
    display: grid;

    grid-template-columns:
        1.5fr .7fr 1fr;

    gap: 60px;
}

.footer-brand p {
    max-width: 360px;

    margin-top: 18px;

    color:
        var(--text-secondary);

    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 11px;

    color:
        var(--text-secondary);

    font-size: 13px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 60px;

    padding-top: 25px;

    border-top:
        1px solid var(--border);

    color:
        var(--text-muted);

    font-size: 11px;
}


/* REVEAL */

.reveal {
    opacity: 0;

    transform:
        translateY(18px);

    transition:
        opacity .75s ease,
        transform .75s
        cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* ANIMATIONS */

@keyframes corePulse {

    0%,
    100% {
        transform: scale(.9);
        opacity: .55;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

}

@keyframes networkFlow {

    to {
        stroke-dashoffset: -100;
    }

}


/* TABLET */

@media (max-width: 1050px) {

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

}

@media (max-width: 900px) {

    .nav {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-layout {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 90px;
    }

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

    .hero-copy h1,
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-mini-stats {
        justify-content: center;
    }

    .network-visual {
        width: min(100%, 500px);

        margin: 0 auto;
    }

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

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

    .pricing-tabs {
        width: 100%;
    }

    .pricing-tab {
        min-width: 0;
    }

    .faq-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .faq-intro {
        position: static;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    .header-inner {
        min-height: 68px;
    }

    .logo-text {
        font-size: 12px;
    }

    .brand-logo-shell {
        width: 32px;
        height: 32px;
    }

    .header-actions .btn {
        min-height: 38px;

        padding: 0 13px;

        font-size: 12px;
    }

    .hero-layout {
        padding-top: 65px;
    }

    .hero-copy h1 {
        font-size: 46px;
    }

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

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-mini-stats {
        margin-top: 45px;
    }

    .hero-mini-stats > div {
        min-width: 0;

        flex: 1;

        padding-right: 8px;
    }

    .hero-mini-stats > div + div {
        padding-left: 8px;
    }

    .hero-mini-stats strong {
        font-size: 14px;
    }

    .hero-mini-stats span {
        font-size: 9px;
    }

    .network-visual {
        width: 100%;
    }

    .server-node {
        min-width: 110px;

        padding: 8px 9px;
    }

    .server-node strong {
        font-size: 10px;
    }

    .hero-platforms {
        display: none;
    }

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

    .hero-trust {
        gap: 13px;
    }

    .section {
        padding: 85px 0;
    }

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

    .protocol-card {
        min-height: 350px;
    }

    .protocol-content {
        margin-top: 50px;
    }

    .pricing-tabs {
        grid-template-columns: 1fr;

        gap: 5px;
    }

    .pricing-tab {
        width: 100%;
    }

    .pricing-protocol-info {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

    .pricing-protocol-info p {
        text-align: left;
    }

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

    .price-card {
        min-height: 390px;
    }

    .faq-question {
        min-height: 76px;

        font-size: 16px;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 5px;
    }

}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

}
