:root {
    color-scheme: dark;
    --bg: #0b0b0e;
    --surface: #121216;
    --surface-raised: #17171c;
    --surface-soft: #101014;
    --text: #f4f2ef;
    --muted: #9e9ba3;
    --dim: #6d6a73;
    --line: rgba(255, 255, 255, .09);
    --line-strong: rgba(255, 255, 255, .15);
    --accent: #dafe32;
    --accent-light: #e8ff7a;
    --accent-soft: rgba(218, 254, 50, .13);
    --success: #73d8a0;
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --page: min(1240px, calc(100% - 40px));
    --ease: cubic-bezier(.22, .8, .24, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    min-width: 320px;
    min-height: 100svh;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 85% 0%, rgba(169, 205, 24, .13), transparent 30rem),
        radial-gradient(circle at 10% 28%, rgba(255, 255, 255, .025), transparent 25rem),
        var(--bg);
    font-family: Inter, "SF Pro Display", "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

a {
    color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--accent-light);
    outline-offset: 3px;
}

.visually-hidden {
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.page-glow {
    width: 45rem;
    height: 45rem;
    position: fixed;
    top: -25rem;
    left: calc(50% - 22rem);
    z-index: -1;
    border-radius: 50%;
    background: rgba(218, 254, 50, .07);
    filter: blur(80px);
    pointer-events: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(11, 11, 14, .84);
    backdrop-filter: blur(20px);
}

.header-inner {
    width: var(--page);
    min-height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 38px;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025));
    box-shadow: inset 0 1px rgba(255, 255, 255, .08);
    font-family: Georgia, serif;
    font-size: 17px;
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.brand-copy strong {
    font-size: 14px;
    line-height: 1;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.brand-copy small {
    color: var(--dim);
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.desktop-nav a {
    padding: 10px 12px;
    border-radius: 9px;
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s ease, background .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, .045);
}

.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 9px;
}

.search-trigger,
.account-button {
    height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .025);
    cursor: pointer;
    font-size: 12px;
    transition: border-color .2s ease, background .2s ease;
}

.search-trigger {
    min-width: 192px;
    padding: 0 9px 0 12px;
    color: var(--muted);
}

.search-trigger kbd {
    margin-left: auto;
    padding: 3px 6px;
    border: 1px solid var(--line);
    border-radius: 5px;
    color: var(--dim);
    background: rgba(255, 255, 255, .025);
    font-size: 9px;
    font-family: inherit;
}

.search-icon {
    width: 14px;
    height: 14px;
    position: relative;
    display: inline-block;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    opacity: .8;
    flex: 0 0 auto;
}

.search-icon::after {
    content: "";
    width: 5px;
    height: 1.5px;
    position: absolute;
    right: -4px;
    bottom: -2px;
    border-radius: 1px;
    background: currentColor;
    transform: rotate(45deg);
}

.account-button {
    padding: 0 14px;
}

.account-icon {
    width: 14px;
    height: 14px;
    position: relative;
    display: inline-block;
    border: 1.5px solid var(--muted);
    border-radius: 50%;
}

.account-icon::after {
    content: "";
    width: 17px;
    height: 8px;
    position: absolute;
    left: 50%;
    top: 11px;
    border: 1.5px solid var(--muted);
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    transform: translateX(-50%);
}

.search-trigger:hover,
.account-button:hover {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, .05);
}

.menu-button {
    width: 42px;
    height: 40px;
    display: none;
    place-items: center;
    position: relative;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.menu-button span {
    width: 16px;
    height: 1px;
    position: absolute;
    background: var(--text);
    transition: transform .25s ease, top .25s ease;
}

.menu-button span:first-child { top: 15px; }
.menu-button span:last-child { top: 23px; }
.menu-button[aria-expanded="true"] span:first-child { top: 19px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 19px; transform: rotate(-45deg); }

.mobile-menu {
    width: var(--page);
    margin: 0 auto;
    padding: 0 0 16px;
}

.mobile-menu a {
    display: block;
    padding: 12px;
    border-radius: 10px;
    color: var(--muted);
    text-decoration: none;
}

main,
.site-footer {
    width: var(--page);
    margin: 0 auto;
}

.hero {
    min-height: 670px;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(440px, .97fr);
    align-items: center;
    gap: clamp(50px, 7vw, 110px);
    padding: 88px 0 92px;
}

.eyebrow,
.section-kicker {
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .018);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(115, 216, 160, .1);
}

.hero h1 {
    max-width: 720px;
    margin-top: 26px;
    font-size: clamp(48px, 5.5vw, 78px);
    line-height: .99;
    letter-spacing: -.055em;
    font-weight: 620;
}

.hero h1 span {
    color: var(--muted);
    font-weight: 480;
}

.hero-lead {
    max-width: 610px;
    margin-top: 27px;
    color: var(--muted);
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.62;
}

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

.primary-button,
.secondary-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .25s var(--ease), background .2s ease, border-color .2s ease;
}

.primary-button {
    color: #0d0c11;
    background: var(--text);
}

.primary-button:hover {
    background: #fff;
    transform: translateY(-2px);
}

.secondary-button {
    border-color: var(--line);
    background: rgba(255, 255, 255, .025);
}

.secondary-button:hover {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, .05);
}

.hero-trust {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    color: var(--dim);
    font-size: 11px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-trust i {
    color: var(--success);
    font-style: normal;
}

.hero-visual {
    min-height: 480px;
    position: relative;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.hero-visual::before {
    content: "";
    width: 370px;
    height: 370px;
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(218, 254, 50, .2), transparent 66%);
    filter: blur(20px);
}

.visual-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 50%;
}

.visual-orbit-one {
    width: 430px;
    height: 430px;
}

.visual-orbit-two {
    width: 330px;
    height: 330px;
    border-style: dashed;
    opacity: .8;
    animation: orbit-spin 34s linear infinite;
}

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

.service-card {
    width: 300px;
    height: 365px;
    position: relative;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 25px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .02) 55%),
        #15141c;
    box-shadow: 0 35px 70px rgba(0, 0, 0, .4), inset 0 1px rgba(255, 255, 255, .1);
    transform: rotate(4deg);
}

.service-card::before {
    content: "";
    width: 230px;
    height: 230px;
    position: absolute;
    right: -105px;
    top: -110px;
    border-radius: 50%;
    background: var(--accent);
    filter: blur(60px);
    opacity: .28;
}

.service-card::after {
    content: "D";
    position: absolute;
    right: -18px;
    bottom: -70px;
    color: rgba(255, 255, 255, .035);
    font-family: Georgia, serif;
    font-size: 260px;
    line-height: 1;
}

.service-card-label {
    position: relative;
    color: rgba(255, 255, 255, .55);
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.service-card > strong {
    display: block;
    position: relative;
    margin-top: 86px;
    font-family: Georgia, serif;
    font-size: 55px;
    font-weight: 400;
    letter-spacing: -.05em;
}

.service-card > strong span { color: var(--accent-light); }

.service-card > small {
    display: block;
    position: relative;
    margin-top: 5px;
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
}

.service-card-line {
    position: relative;
    margin-top: 85px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 15px;
    color: rgba(255, 255, 255, .4);
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.floating-token {
    width: 58px;
    height: 58px;
    position: absolute;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    color: #fff;
    background: rgba(18, 18, 23, .86);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .34), inset 0 1px rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    font-size: 15px;
    font-weight: 700;
}

.token-steam { left: 2%; top: 18%; color: #66c0f4; transform: rotate(-7deg); }
.token-telegram { right: 1%; top: 12%; color: #2aabee; transform: rotate(7deg); }
.token-ai { left: 3%; bottom: 11%; color: #b78cff; transform: rotate(5deg); }
.token-discord { right: 3%; bottom: 14%; color: #8d96ff; transform: rotate(-6deg); }

.availability-pill {
    position: absolute;
    right: 4%;
    bottom: 3%;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(11, 11, 14, .8);
    font-size: 10px;
    backdrop-filter: blur(8px);
}

.catalog-section,
.how-section {
    padding: 100px 0;
    border-top: 1px solid var(--line);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
}

.section-heading > div:first-child {
    max-width: 650px;
}

.section-heading h2,
.trust-copy h2,
.support-section h2 {
    margin-top: 12px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -.045em;
    font-weight: 580;
}

.section-heading p,
.trust-copy > p,
.support-section p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.catalog-search {
    width: min(370px, 100%);
    height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--surface-soft);
    color: var(--dim);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.catalog-search:focus-within {
    border-color: rgba(218, 254, 50, .55);
    box-shadow: 0 0 0 3px rgba(218, 254, 50, .08);
}

.catalog-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font-size: 13px;
}

.catalog-search input::placeholder { color: var(--dim); }

.catalog-search button {
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 6px;
    color: var(--muted);
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
}

.category-tabs {
    margin-top: 38px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar { display: none; }

.category-tabs button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--muted);
    background: transparent;
    white-space: nowrap;
    cursor: pointer;
    font-size: 12px;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.category-tabs button span {
    min-width: 18px;
    color: var(--dim);
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}

.category-tabs button:hover {
    color: var(--text);
    border-color: var(--line-strong);
}

.category-tabs button.is-active {
    color: #0d0c11;
    border-color: var(--text);
    background: var(--text);
}

.category-tabs button.is-active span { color: #4e4b54; }

.catalog-summary {
    margin: 27px 0 14px;
    display: flex;
    justify-content: space-between;
    color: var(--dim);
    font-size: 10px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.product-card {
    min-height: 450px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 90% 0%, color-mix(in srgb, var(--product-accent) 10%, transparent), transparent 13rem),
        var(--surface);
    transition: transform .3s var(--ease), border-color .25s ease, background-color .25s ease;
}

.product-card::before {
    content: "";
    width: 120px;
    height: 120px;
    position: absolute;
    right: -65px;
    top: -65px;
    border-radius: 50%;
    background: var(--product-accent);
    filter: blur(35px);
    opacity: .1;
}

.product-card:hover {
    z-index: 2;
    border-color: rgba(255, 255, 255, .17);
    transform: translateY(-4px);
}

.product-card[hidden] { display: none; }

.product-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.product-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--product-accent) 32%, var(--line));
    border-radius: 15px;
    color: var(--product-accent);
    background: color-mix(in srgb, var(--product-accent) 9%, transparent);
    font-size: 14px;
    font-weight: 750;
}

.product-badge {
    padding: 6px 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--dim);
    background: rgba(255, 255, 255, .02);
    font-size: 9px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-copy {
    margin-top: 30px;
}

.product-category {
    color: var(--product-accent);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-copy h3 {
    margin-top: 9px;
    font-size: 23px;
    letter-spacing: -.025em;
    font-weight: 580;
}

.product-copy p {
    margin-top: 11px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.product-features {
    margin-top: 23px;
    display: grid;
    gap: 9px;
    list-style: none;
}

.product-features li {
    display: flex;
    gap: 9px;
    color: var(--dim);
    font-size: 11px;
}

.product-features li span {
    color: var(--success);
}

.product-action {
    min-height: 44px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--muted);
    background: rgba(255, 255, 255, .025);
    cursor: pointer;
    font-size: 11px;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.product-action:hover {
    color: var(--text);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, .05);
}

.empty-state {
    padding: 70px 20px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius);
    text-align: center;
}

.empty-state > span {
    display: block;
    color: var(--dim);
    font-size: 40px;
}

.empty-state h3 { margin-top: 13px; font-size: 20px; }
.empty-state p { margin-top: 8px; color: var(--muted); font-size: 13px; }
.empty-state button {
    margin-top: 20px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: rgba(255, 255, 255, .04);
    cursor: pointer;
    font-size: 12px;
}

.section-heading.compact {
    align-items: flex-start;
}

.steps-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
}

.steps-grid article {
    min-height: 285px;
    position: relative;
    padding: 28px;
}

.steps-grid article + article { border-left: 1px solid var(--line); }

.step-number {
    position: absolute;
    right: 24px;
    top: 23px;
    color: var(--dim);
    font-size: 9px;
    letter-spacing: .1em;
}

.step-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--accent-light);
    background: var(--accent-soft);
    font-size: 17px;
}

.steps-grid h3 {
    margin-top: 60px;
    font-size: 19px;
    font-weight: 560;
}

.steps-grid p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.trust-section {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 90px;
    padding: 100px 0;
    border-top: 1px solid var(--line);
}

.trust-copy > p { max-width: 500px; }

.trust-copy > a {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    margin-top: 27px;
    color: var(--text);
    font-size: 12px;
    text-decoration: none;
}

.trust-copy > a span { color: var(--muted); }

.trust-list {
    display: grid;
    border-top: 1px solid var(--line);
}

.trust-list > div {
    min-height: 118px;
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--line);
}

.trust-list > div > span {
    color: var(--dim);
    font-size: 9px;
}

.trust-list strong,
.trust-list small {
    display: block;
}

.trust-list strong {
    font-size: 15px;
    font-weight: 550;
}

.trust-list small {
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.support-section {
    min-height: 290px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 55px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 90% 50%, rgba(218, 254, 50, .14), transparent 26rem),
        var(--surface);
}

.support-section::after {
    content: "D";
    position: absolute;
    right: 13%;
    bottom: -135px;
    color: rgba(255, 255, 255, .025);
    font-family: Georgia, serif;
    font-size: 340px;
    pointer-events: none;
}

.support-section > div { max-width: 610px; position: relative; z-index: 1; }

.support-button {
    min-width: 170px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    position: relative;
    z-index: 1;
    padding: 0 17px;
    border: 0;
    border-radius: 12px;
    color: #0d0c11;
    background: var(--text);
    cursor: pointer;
    font-size: 12px;
    font-weight: 650;
    transition: transform .25s var(--ease);
}

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

.site-footer {
    margin-top: 100px;
    padding: 48px 0 30px;
    border-top: 1px solid var(--line);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand strong,
.footer-brand small { display: block; }
.footer-brand strong { font-size: 13px; letter-spacing: .04em; }
.footer-brand small { margin-top: 3px; color: var(--dim); font-size: 10px; }

.footer-links {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 23px;
}

.footer-links a,
.footer-links button {
    border: 0;
    color: var(--muted);
    background: none;
    text-decoration: none;
    cursor: pointer;
    font-size: 11px;
}

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

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    color: var(--dim);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-dialog {
    width: min(480px, calc(100% - 28px));
    margin: auto;
    padding: 32px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    color: var(--text);
    background: #15151a;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}

.product-dialog::backdrop {
    background: rgba(3, 3, 5, .74);
    backdrop-filter: blur(7px);
}

.dialog-close {
    width: 32px;
    height: 32px;
    position: absolute;
    right: 16px;
    top: 16px;
    border: 1px solid var(--line);
    border-radius: 9px;
    color: var(--muted);
    background: rgba(255, 255, 255, .03);
    cursor: pointer;
}

.dialog-kicker {
    color: var(--accent-light);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-dialog h2 {
    margin-top: 10px;
    padding-right: 25px;
    font-size: 27px;
    letter-spacing: -.03em;
}

.product-dialog > p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.dialog-note {
    margin-top: 23px;
    display: flex;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(218, 254, 50, .18);
    border-radius: 11px;
    background: var(--accent-soft);
}

.dialog-note > span {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--accent-light);
    background: rgba(218, 254, 50, .18);
    font-size: 11px;
}

.dialog-note strong,
.dialog-note p { display: block; }
.dialog-note strong { margin-bottom: 4px; color: var(--text); font-size: 11px; }
.dialog-note p { color: var(--muted); font-size: 10px; line-height: 1.5; }

.dialog-action {
    width: 100%;
    margin-top: 20px;
    border: 0;
}

.toast {
    min-width: min(360px, calc(100% - 28px));
    max-width: 420px;
    display: flex;
    gap: 12px;
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    padding: 15px;
    border: 1px solid var(--line-strong);
    border-radius: 13px;
    background: rgba(23, 23, 28, .95);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .3s var(--ease);
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.toast > span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--accent-light);
    background: var(--accent-soft);
    font-size: 11px;
}

.toast strong,
.toast p { display: block; }
.toast strong { margin-bottom: 3px; font-size: 11px; }
.toast p { color: var(--muted); font-size: 10px; line-height: 1.45; }

@media (max-width: 1060px) {
    .desktop-nav { display: none; }
    .hero {
        grid-template-columns: minmax(0, 1fr) 390px;
        gap: 30px;
    }
    .hero-visual { transform: scale(.9); }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
    :root { --page: min(100% - 28px, 680px); }
    .header-inner { min-height: 66px; }
    .search-trigger { min-width: 42px; width: 42px; justify-content: center; padding: 0; }
    .search-trigger > span:last-of-type,
    .search-trigger kbd,
    .account-button span:last-child { display: none; }
    .account-button { width: 42px; justify-content: center; padding: 0; overflow: hidden; }
    .menu-button { display: grid; }
    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 70px 0 55px;
    }
    .hero-copy { text-align: center; }
    .eyebrow,
    .hero-actions,
    .hero-trust { margin-left: auto; margin-right: auto; justify-content: center; }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-visual { min-height: 430px; width: min(100%, 520px); margin: 5px auto 0; }
    .section-heading { align-items: stretch; flex-direction: column; gap: 28px; }
    .catalog-search { width: 100%; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid article { min-height: 220px; }
    .steps-grid article + article { border-left: 0; border-top: 1px solid var(--line); }
    .steps-grid h3 { margin-top: 42px; }
    .trust-section { grid-template-columns: 1fr; gap: 45px; }
    .support-section { padding: 38px; align-items: flex-start; flex-direction: column; }
}

@media (max-width: 580px) {
    :root { --page: calc(100% - 24px); }
    .brand-copy small { display: none; }
    .header-actions { gap: 6px; }
    .hero { padding-top: 55px; }
    .hero h1 { font-size: clamp(41px, 13vw, 60px); }
    .hero-lead { font-size: 15px; }
    .hero-actions { flex-direction: column; }
    .hero-actions a { width: 100%; }
    .hero-trust { max-width: 300px; }
    .hero-visual { min-height: 385px; transform: scale(.86); margin-top: -15px; margin-bottom: -15px; }
    .service-card { width: 280px; height: 345px; }
    .visual-orbit-one { width: 390px; height: 390px; }
    .visual-orbit-two { width: 300px; height: 300px; }
    .catalog-section,
    .how-section,
    .trust-section { padding: 74px 0; }
    .section-heading h2,
    .trust-copy h2,
    .support-section h2 { font-size: 34px; }
    .catalog-summary span:last-child { display: none; }
    .product-grid { grid-template-columns: 1fr; }
    .product-card { min-height: 415px; }
    .steps-grid article { min-height: 210px; padding: 23px; }
    .support-section { min-height: 360px; padding: 30px 24px; border-radius: 22px; }
    .support-button { width: 100%; }
    .footer-bottom { flex-direction: column; gap: 8px; }
    .product-dialog { padding: 27px 21px 21px; }
    .toast { left: 14px; right: 14px; bottom: 14px; min-width: 0; }
}

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