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

:root {
    --bg: #090909;
    --surface: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.07);
    --text: #f0f0f0;
    --dim: rgba(255, 255, 255, 0.35);
    --accent: #ffffff;
    --font: 'Space Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    overflow-x: hidden;
    cursor: none;
}


#cur {
    position: fixed;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease, opacity 0.35s ease;
    opacity: 0;
}

#cur-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, opacity 0.35s ease;
    opacity: 0;
}

body.cursor-visible #cur,
body.cursor-visible #cur-ring {
    opacity: 1;
}

body.hovering #cur {
    transform: translate(-50%, -50%) scale(2);
}

body.hovering #cur-ring {
    width: 48px;
    height: 48px;
    border-color: rgba(255, 255, 255, 0.2);
}


#snow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}


.amb-orb {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.amb-orb-1 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.018) 35%, transparent 70%);
    top: -22%;
    right: -14%;
    animation: amb-drift-1 24s ease-in-out infinite;
}

.amb-orb-2 {
    width: 750px;
    height: 750px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.012) 35%, transparent 70%);
    bottom: 5%;
    left: -14%;
    animation: amb-drift-2 31s ease-in-out infinite;
}

.amb-orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.014) 35%, transparent 70%);
    top: 40%;
    right: 18%;
    animation: amb-drift-3 20s ease-in-out infinite;
}

@keyframes amb-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    25%  { transform: translate(-45px, 35px) scale(1.1); opacity: 1; }
    55%  { transform: translate(-15px, 65px) scale(0.92); opacity: 0.6; }
    78%  { transform: translate(30px, 18px) scale(1.06); opacity: 0.85; }
}

@keyframes amb-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    28%  { transform: translate(55px, -35px) scale(1.09); opacity: 0.8; }
    58%  { transform: translate(22px, -55px) scale(0.9); opacity: 0.55; }
    82%  { transform: translate(-18px, 12px) scale(1.04); opacity: 0.7; }
}

@keyframes amb-drift-3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    38%  { transform: translate(-40px, -45px) scale(1.13); opacity: 1; }
    70%  { transform: translate(28px, 32px) scale(0.87); opacity: 0.45; }
}

.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    animation: grain-shift 0.5s steps(1) infinite;
}

@keyframes grain-shift {
    0%   { background-position: 0 0; }
    20%  { background-position: -30px 10px; }
    40%  { background-position: 15px -20px; }
    60%  { background-position: -10px 25px; }
    80%  { background-position: 20px -5px; }
    100% { background-position: -25px 15px; }
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 52px;
    background: linear-gradient(180deg, rgba(9, 9, 9, 0.95) 0%, transparent 100%);
    backdrop-filter: blur(0px);
    transition: background 0.3s, backdrop-filter 0.3s, border-bottom 0.3s;
}

.logo {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.3px;
}

.logo span {
    color: var(--dim);
    font-weight: 400;
}

.nav-admins-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 100px;
    padding: 7px 16px;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: -0.1px;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    cursor: none;
}

.nav-admins-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
}


.admins-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.admins-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.admins-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 201;
    width: 300px;
    background: #111;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.admins-panel.open {
    transform: translateX(0);
}

.admins-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 22px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admins-panel-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.admins-count {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 1px 7px;
    letter-spacing: 0;
}

.admins-panel-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    cursor: none;
}

.admins-panel-close:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.admins-list {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.admin-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    cursor: none;
}


.admin-pfp-wrap {
    position: relative;
    flex-shrink: 0;
}

.admin-pfp {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-status-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: #23d160;
    border-radius: 50%;
    border: 2px solid #111;
}

.admin-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.admin-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.2px;
}

.admin-role {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    gap: 5px;
}

.admin-role i {
    font-size: 9px;
}


.nav-ticket {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dim);
    text-decoration: none;
    padding: 9px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--surface);
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    letter-spacing: -0.2px;
    cursor: none;
}

.nav-ticket:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
}


.hero {
    position: relative;
    z-index: 10;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 0 10vw;
    padding-top: 80px;
    overflow: hidden;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 64px;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 55%;
    min-width: 0;
}

.hero-pitch {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fade-up 0.7s 0.3s forwards;
}

.hero-pitch-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    padding: 40px 36px;
    width: 100%;
    max-width: 480px;
}

.hero-pitch-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-pitch-label i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
}

.hero-pitch-text {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    margin-bottom: 26px;
}

.hero-pitch-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-pitch-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.hero-pitch-point i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.22);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 22px;
    opacity: 0;
    animation: fade-up 0.7s 0.1s forwards;
}

.og-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 220, 100, 0.9);
    background: rgba(255, 200, 50, 0.08);
    border: 1px solid rgba(255, 200, 50, 0.18);
    border-radius: 100px;
    padding: 3px 10px;
    margin-left: 6px;
}

.og-pill i {
    font-size: 9px;
    opacity: 0.8;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    animation: pulse-live 2.5s infinite;
    flex-shrink: 0;
}

@keyframes pulse-live {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }
}

.hero-title {
    font-size: clamp(48px, 7.5vw, 104px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -3px;
    margin-bottom: 22px;
}

.hero-line-1 {
    display: inline;
    opacity: 0;
    animation: fade-up 0.7s 0.25s forwards;
}

.hero-typed-wrap {
    display: inline;
    color: var(--dim);
    opacity: 0;
    animation: fade-up 0.7s 0.6s forwards;
}

.hero-title br {
    line-height: 1.15;
}

.hero-typed {
    display: inline;
}

.hero-cursor {
    display: inline;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    animation: blink-cursor 0.75s step-end infinite;
    margin-left: 2px;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-sub {
    font-size: 14.5px;
    font-weight: 400;
    color: var(--dim);
    line-height: 1.75;
    max-width: 400px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fade-up 0.7s 0.8s forwards;
    letter-spacing: -0.1px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0;
    animation: fade-up 0.7s 1.0s forwards;
}


.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 600;
    color: #000;
    background: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid transparent;
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: -0.2px;
    cursor: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.14);
}

.btn-primary.big {
    font-size: 15px;
    padding: 15px 34px;
    gap: 10px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dim);
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    transition: color 0.2s, border-color 0.2s;
    letter-spacing: -0.2px;
    cursor: none;
}

.btn-ghost:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.18);
}


.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    color: var(--dim);
    font-size: 12px;
    animation: fade-up 0.7s 1.2s forwards, chevron-bounce 1.8s 1.9s ease-in-out infinite;
}

@keyframes chevron-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(5px);
    }
}


.how {
    position: relative;
    z-index: 10;
    height: 100vh;
    min-height: 100vh;
    padding: 0 10vw;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.how-row {
    display: flex;
    gap: 0;
    align-items: flex-start;
    width: 100%;
}

.how-left {
    flex: 1 1 55%;
    padding-right: 64px;
    border-right: 1px solid var(--border);
}

.how-right {
    flex: 0 0 auto;
    width: 38%;
    padding-left: 64px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.section-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--dim);
    margin-bottom: 48px;
    text-transform: uppercase;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
}

.step:first-child {
    border-top: 1px solid var(--border);
}

.step-left {
    flex-shrink: 0;
    width: 52px;
}

.step-num {
    font-size: 11px;
    font-weight: 600;
    color: var(--dim);
    letter-spacing: 0.08em;
    padding-top: 3px;
    transition: color 0.25s;
}

.step:hover .step-num {
    color: rgba(255, 255, 255, 0.65);
}

.step-right {
    flex: 1;
}

.step-right h3 {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    color: var(--text);
    line-height: 1.2;
}

.step-right p {
    font-size: 14px;
    color: var(--dim);
    line-height: 1.75;
    max-width: 460px;
    font-weight: 400;
}

.step-faq {
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    max-width: 460px;
}

.step-faq-q {
    font-size: 11.5px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.4) !important;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px !important;
    line-height: 1 !important;
}

.step-faq-q i {
    font-size: 10px;
    opacity: 0.7;
}

.step-faq-a {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.28) !important;
    line-height: 1.65 !important;
    max-width: none !important;
}

.step-arrow {
    flex-shrink: 0;
    font-size: 13px;
    color: var(--border);
    transition: color 0.25s, transform 0.25s;
    margin-left: auto;
    padding-right: 4px;
}

.step:hover .step-arrow {
    color: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

.mono-inline {
    font-family: 'Courier New', monospace;
    font-size: 0.87em;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    padding: 2px 7px;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.65);
}


.bottom {
    display: none;
}

.bottom-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.08;
    margin-bottom: 12px;
}

.bottom-title .dim {
    color: var(--dim);
}

.bottom-sub {
    font-size: 13px;
    color: var(--dim);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 280px;
}


.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.step.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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


footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 20px 52px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    font-size: 12.5px;
    color: var(--dim);
    font-weight: 500;
    letter-spacing: -0.2px;
}

.footer-right-text {
    font-size: 12px;
    color: var(--dim);
    font-weight: 400;
    letter-spacing: -0.1px;
    opacity: 0.7;
}


.tmodal-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.tmodal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.tmodal {
    position: relative;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 44px 48px 40px;
    width: 100%;
    max-width: 480px;
    margin: 20px;
    transform: translateY(22px) scale(0.97);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.tmodal-overlay.open .tmodal {
    transform: translateY(0) scale(1);
}

.tmodal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    border: none;
    color: var(--dim);
    font-size: 14px;
    cursor: none;
    padding: 6px;
    transition: color 0.2s;
}

.tmodal-close:hover {
    color: var(--text);
}

.tstep {
    display: none;
    flex-direction: column;
    gap: 0;
}

.tstep.active {
    display: flex;
}

.tstep-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--dim);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.tstep-q {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.6px;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.2;
}

.tstep-hint {
    font-size: 13px;
    color: var(--dim);
    line-height: 1.6;
    margin-bottom: 24px;
}

.tinput {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    outline: none;
    margin-bottom: 20px;
    transition: border-color 0.2s;
    caret-color: #fff;
}

.tinput::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.tinput:focus {
    border-color: rgba(255, 255, 255, 0.22);
}

.tnext-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 600;
    color: #000;
    background: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 100px;
    cursor: none;
    transition: background 0.2s, box-shadow 0.2s;
    align-self: flex-start;
    text-decoration: none;
}

.tnext-btn:hover {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
}

.topen-btn {
    background: transparent;
    color: var(--dim);
    border: 1px solid var(--border);
}

.topen-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.16);
}

.tyesno {
    display: flex;
    gap: 10px;
    margin-bottom: 4px;
}

.tyesno-btn {
    flex: 1;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--dim);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    cursor: none;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.tyesno-btn:hover,
.tyesno-btn.selected {
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.18);
}

.tstep-toprow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.tstep-toprow .tstep-label {
    margin-bottom: 0;
}

.tback-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--dim);
    font-size: 11px;
    cursor: none;
    flex-shrink: 0;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.tback-btn:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
}

.tcompare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px;
}

.tcompare-col {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tcompare-col--premium {
    background: rgba(255, 200, 50, 0.03);
    border-color: rgba(255, 200, 50, 0.22);
    box-shadow: 0 0 28px rgba(255, 200, 50, 0.04);
}

.tcompare-col-head {
    padding: 12px 14px 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.tcompare-col--premium .tcompare-col-head {
    border-bottom-color: rgba(255, 200, 50, 0.1);
    background: rgba(255, 200, 50, 0.03);
}

.tcompare-body {
    padding: 13px 14px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tcompare-heading {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.tcompare-col--premium .tcompare-heading {
    color: rgba(255, 220, 100, 0.9);
}

.icon-diamond {
    transform: rotate(45deg);
    font-size: 8px !important;
}

.tcompare-price {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 220, 100, 0.7);
    background: rgba(255, 200, 50, 0.1);
    border: 1px solid rgba(255, 200, 50, 0.18);
    border-radius: 100px;
    padding: 2px 8px;
    white-space: nowrap;
}

.tcompare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    margin-bottom: 0;
}

.tcompare-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

.tcompare-list li i {
    font-size: 9px;
    color: rgba(255, 220, 100, 0.75);
    width: 11px;
    text-align: center;
    flex-shrink: 0;
}

.tcompare-col:not(.tcompare-col--premium) .tcompare-list li i {
    color: rgba(255, 255, 255, 0.28);
}

.tcompare-list li.tcompare-no {
    color: rgba(255, 255, 255, 0.2);
}

.tcompare-list li.tcompare-no i {
    color: rgba(255, 255, 255, 0.12);
}

.tcompare-addon {
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 200, 50, 0.1);
    color: rgba(255, 255, 255, 0.55) !important;
}

.tcompare-addon i {
    color: rgba(255, 200, 50, 0.65) !important;
}

.tcompare-addon-price {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(255, 220, 100, 0.75);
    background: rgba(255, 200, 50, 0.09);
    border: 1px solid rgba(255, 200, 50, 0.18);
    border-radius: 100px;
    padding: 1px 7px;
    flex-shrink: 0;
}

.tcompare-pay {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.55;
    margin-top: 12px;
    padding-top: 11px;
    border-top: 1px solid rgba(255, 200, 50, 0.09);
}

.tcompare-pay strong {
    color: rgba(255, 220, 100, 0.6);
    font-weight: 600;
}

.tresult-box {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
    white-space: pre;
    margin-bottom: 22px;
    overflow-x: auto;
}

.tresult-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



.pricing {
    position: relative;
    z-index: 10;
    height: 100vh;
    min-height: 100vh;
    padding: 0 10vw;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pricing-inner {
    width: 100%;
}

.pricing-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 44px;
}

.ptable {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    overflow: hidden;
}

.ptable-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ptable-row:last-child {
    border-bottom: none;
}

.ptable-row--head {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.ptable-cell {
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.ptable-feat {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.ptable-feat-desc {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.22);
    line-height: 1.55;
}

.ptable-plan-head {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 18px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.ptable-plan-head--gold {
    background: rgba(255, 200, 50, 0.04);
    border-left-color: rgba(255, 200, 50, 0.15);
}

.ptable-plan-name {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.ptable-plan-head--gold .ptable-plan-name {
    color: rgba(255, 220, 100, 0.9);
}

.ptable-plan-price {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 220, 100, 0.95);
    letter-spacing: -0.5px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.ptable-lifetime {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 220, 100, 0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ptable-val {
    justify-content: center;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.ptable-val--gold {
    background: rgba(255, 200, 50, 0.025);
    border-left-color: rgba(255, 200, 50, 0.09);
    color: rgba(255, 255, 255, 0.65);
}

.ptable-yes i {
    color: rgba(255, 220, 100, 0.85);
    font-size: 11px;
}

.ptable-no i {
    color: rgba(255, 255, 255, 0.13);
    font-size: 11px;
}

.ptable-row--foot {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: none;
}

.ptable-pay-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.22);
    line-height: 1.65;
    margin: 0;
}

.ptable-pay-note strong {
    color: rgba(255, 255, 255, 0.38);
    font-weight: 600;
}


.twhatis-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.28);
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 0;
    transition: color 0.2s;
    cursor: none;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.1);
}

.twhatis-btn:hover {
    color: rgba(255, 255, 255, 0.6);
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

.twhatis-btn i {
    font-size: 9px;
    text-decoration: none;
}


@media (max-width: 960px) {
    .hero-row {
        flex-direction: column;
        gap: 36px;
        align-items: flex-start;
    }

    .hero-pitch {
        flex: 1 1 100%;
    }
}

@media (max-width: 860px) {
    .how-row {
        flex-direction: column;
    }

    .how-left {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 48px;
        margin-bottom: 48px;
    }

    .how-right {
        position: static;
        width: 100%;
        padding-left: 0;
    }
}

@media (max-width: 700px) {
    nav {
        padding: 18px 24px;
    }

    .hero {
        padding: 0 6vw;
        padding-top: 80px;
    }

    .scroll-hint {
        left: auto;
    }

    .how {
        padding: 0 6vw;
        height: auto;
        min-height: 100vh;
    }

    .pricing {
        padding: 0 6vw;
        height: auto;
        min-height: 100vh;
    }

    .ptable-row {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .ptable-cell {
        padding: 11px 12px;
    }

    .ptable-feat {
        font-size: 12px;
    }

    .ptable-val {
        font-size: 11.5px;
    }

    .ptable-plan-price {
        font-size: 18px;
    }

    footer {
        padding: 16px 24px;
    }

    .hero-title {
        letter-spacing: -2px;
    }

    .step {
        gap: 24px;
        padding: 24px 0;
    }

    .step-arrow {
        display: none;
    }
}

@media (pointer: coarse) {
    body,
    body * {
        cursor: auto !important;
    }

    #cur,
    #cur-ring {
        display: none !important;
    }

}