/* ===== COSMOS THEME — 2dd.pl ===== */

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

html {
    font-family: 'Inter', sans-serif;
    background: #040514;
    color: #e9ecf5;
    letter-spacing: -.015em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}
body { min-height: 100%; }

/* ===== BACKGROUND CANVAS ===== */
.co-bg {
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 64px;
    padding-bottom: max(64px, env(safe-area-inset-bottom, 0px) + 48px);
    background:
        radial-gradient(ellipse 80% 50% at 50% 20%, #3a1f7a55 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 30% 90%, #ff2e8a33 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 70%, #1f3d9a55 0%, transparent 60%),
        linear-gradient(180deg, #040514 0%, #0a0a24 60%, #040514 100%);
}

/* ===== ORBS ===== */
.co-orb {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    opacity: .65;
}
.co-orb.a { top: -30%; left: -10%; background: #6b3bff; }
.co-orb.b { bottom: -20%; right: -15%; background: #ff2e8a; }

/* ===== COMET ===== */
.co-comet {
    position: absolute;
    top: 18%;
    right: -50px;
    width: 280px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #a5b0ff, #fff);
    transform: rotate(-18deg);
    box-shadow: 0 0 12px #a5b0ff;
    pointer-events: none;
    animation: coComet 8s ease-in-out infinite;
}
.co-comet::after {
    content: "";
    position: absolute;
    right: -6px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 18px #fff, 0 0 32px #a5b0ff;
}
@keyframes coComet {
    0%, 100% { opacity: .7; }
    50% { opacity: 1; }
}

/* ===== STARS ===== */
.co-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.co-stars i {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    display: block;
    animation: coTwinkle 4s ease-in-out infinite;
}
@keyframes coTwinkle {
    0%, 100% { opacity: .15; transform: scale(.8); }
    50% { opacity: .9; transform: scale(1); }
}

/* ===== LOGO ===== */
.co-logo {
    position: absolute;
    top: 36px;
    left: 48px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
    color: #e9ecf5cc;
    text-decoration: none;
    transition: color .2s;
}
.co-logo:hover { color: #e9ecf5; }
.co-logo::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #ff2e8a, #6b3bff, #a5b0ff, #ff2e8a);
    box-shadow: 0 0 14px #ff2e8a88;
    flex-shrink: 0;
}

/* ===== INNER CONTENT ===== */
.co-inner {
    position: relative;
    z-index: 3;
    max-width: 680px;
    width: 100%;
    text-align: center;
    animation: coFadeUp .55s cubic-bezier(.16,1,.3,1) both;
}
@keyframes coFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== EYEBROW ===== */
.co-eyebrow {
    font-size: 11.5px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: #a5b0ffcc;
    margin-bottom: 28px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.co-eyebrow::before, .co-eyebrow::after {
    content: "";
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #a5b0ff66, transparent);
}

/* ===== H1 ===== */
.co-h1 {
    font-family: 'Spectral', serif;
    font-size: clamp(48px, 12vw, 128px);
    line-height: .92;
    font-weight: 400;
    letter-spacing: -.04em;
    margin: 0 0 24px;
    text-shadow: 0 0 60px #6b3bff44;
}
.co-h1 em {
    font-style: italic;
    background: linear-gradient(135deg, #ff2e8a, #a5b0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== SUBTITLE ===== */
.co-sub {
    font-size: 18px;
    color: #e9ecf599;
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== FIELD GROUP ===== */
.co-fieldgroup {
    display: grid;
    gap: 14px;
    text-align: left;
    width: 100%;
    position: relative;
}
.co-fieldgroup::before {
    content: "";
    position: absolute;
    inset: -60px -80px;
    background: radial-gradient(ellipse at center, #ff2e8a22 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

/* ===== MAIN FIELD (URL INPUT) ===== */
.co-field {
    background: #fafbff;
    border-radius: 18px;
    padding: 7px 7px 7px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 0 1px #ffffff44, 0 30px 80px -10px #ff2e8a55, 0 0 60px #ffffff22, inset 0 -2px 0 #00000010;
    transition: box-shadow .2s;
}
.co-field:focus-within {
    box-shadow: 0 0 0 2px #ff2e8a, 0 30px 100px -10px #ff2e8a99;
}
.co-field input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font: inherit;
    color: #040514;
    font-size: 17px;
    padding: 16px 0;
    font-weight: 500;
    letter-spacing: -.01em;
}
.co-field input::placeholder { color: #04051555; font-weight: 400; }

/* ===== CTA BUTTON ===== */
.co-cta {
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff2e8a 0%, #6b3bff 100%);
    color: #fff;
    border: 0;
    border-radius: 13px;
    padding: 16px 26px;
    font: inherit;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: -.005em;
    transition: transform .2s, box-shadow .2s, opacity .15s;
    box-shadow: 0 6px 18px #ff2e8a55, inset 0 1px 0 #ffffff22;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}
.co-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px #ff2e8a88, inset 0 1px 0 #ffffff33; }
.co-cta:active { transform: translateY(0) scale(.98); box-shadow: 0 4px 12px #ff2e8a44; }
.co-cta:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.co-cta:focus-visible { outline: 3px solid #a5b0ff; outline-offset: 3px; }
.co-cta .arr { font-size: 18px; transition: transform .2s; display: inline-block; }
.co-cta:hover .arr { transform: translateX(3px); }

/* ===== ALIAS TOGGLE ===== */
.co-toggle {
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid #ffffff20;
    border-radius: 999px;
    color: #e9ecf5cc;
    font: inherit;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
    letter-spacing: -.005em;
    justify-self: center;
    -webkit-tap-highlight-color: transparent;
}
.co-toggle:hover { background: #ffffff08; border-color: #ff2e8a66; color: #fff; }
.co-toggle:active { background: #ffffff12; }
.co-toggle:focus-visible { outline: 2px solid #a5b0ff; outline-offset: 3px; }
.co-toggle .plus {
    display: inline-flex;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ff2e8a22;
    color: #ff8da6;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: transform .25s ease, background .25s;
}
.co-toggle.open .plus { transform: rotate(45deg); background: #ff2e8a; color: #fff; }
.co-toggle small { color: #e9ecf555; font-size: 12px; font-weight: 400; margin-left: -2px; }

/* ===== ALIAS PANEL ===== */
.co-aliaswrap {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .38s cubic-bezier(.4,0,.2,1), opacity .28s ease;
}
.co-aliaswrap.open { max-height: 160px; opacity: 1; }
.co-alias {
    background: #ffffff0a;
    border: 1px solid #ffffff20;
    border-radius: 14px;
    padding: 4px 8px 4px 20px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(20px);
    transition: background .2s, border-color .2s, box-shadow .2s;
}
.co-alias:focus-within { background: #ffffff14; border-color: #ff2e8a66; box-shadow: 0 0 0 3px #ff2e8a22; }
.co-alias .pre {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #e9ecf577;
    flex-shrink: 0;
    font-weight: 500;
    white-space: nowrap;
}
.co-alias input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: #fff;
    padding: 14px 2px 14px 4px;
    font-weight: 500;
    letter-spacing: -.005em;
}
.co-alias input::placeholder { color: #e9ecf544; font-weight: 400; }
.co-aliashint {
    margin-top: 8px;
    font-size: 12px;
    color: #e9ecf555;
    text-align: left;
    padding-left: 14px;
    line-height: 1.5;
}
.co-aliashint code { font-family: 'JetBrains Mono', monospace; color: #ff8da6; font-size: 11.5px; }

/* ===== ERROR MESSAGE ===== */
.co-err {
    color: #ffb1c4;
    font-size: 13.5px;
    font-weight: 500;
    text-align: center;
    padding: 12px 16px;
    background: #ff2e8a15;
    border: 1px solid #ff2e8a33;
    border-radius: 10px;
    line-height: 1.5;
}

/* ===== RESULT CARD ===== */
.co-result-wrap { position: relative; }
.co-result {
    background: #fafbff;
    border-radius: 18px;
    padding: 24px 28px;
    text-align: left;
    box-shadow: 0 0 0 1px #ffffff44, 0 30px 100px -10px #1bf2c266, 0 0 60px #ffffff22;
}
.co-rlabel {
    font-size: 10.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #1bf2c2;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.co-rlabel::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1bf2c2;
    box-shadow: 0 0 8px #1bf2c2;
    flex-shrink: 0;
    animation: coPulse 2s ease-in-out infinite;
}
@keyframes coPulse {
    0%, 100% { box-shadow: 0 0 4px #1bf2c2; }
    50% { box-shadow: 0 0 14px #1bf2c2, 0 0 24px #1bf2c244; }
}
.co-rrow {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.co-rshort {
    flex: 1;
    font-family: 'Spectral', serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -.015em;
    color: #040514;
    word-break: break-all;
    min-width: 0;
    line-height: 1.2;
}
.co-rcopy {
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff2e8a 0%, #6b3bff 100%);
    color: #fff;
    border: 0;
    border-radius: 12px;
    padding: 12px 22px;
    font: inherit;
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s, box-shadow .2s, background .3s;
    box-shadow: 0 4px 14px #ff2e8a44;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}
.co-rcopy:hover { transform: translateY(-1px); box-shadow: 0 8px 20px #ff2e8a66; }
.co-rcopy:active { transform: scale(.97); }
.co-rcopy:focus-visible { outline: 3px solid #6b3bff; outline-offset: 3px; }
.co-rcopy.copied { background: linear-gradient(135deg, #1bf2c2, #0eaa8b); box-shadow: 0 4px 14px #1bf2c244; }
.co-rinfo {
    margin-top: 14px;
    font-size: 12px;
    color: #04051566;
    line-height: 1.5;
}
.co-rinfo a { color: #6b3bff; text-decoration: none; }
.co-rinfo a:hover { text-decoration: underline; }
.co-rclose {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0d0e28;
    border: 1px solid #ffffff25;
    color: #e9ecf5aa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    transition: background .2s, color .2s, border-color .2s, transform .15s;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
}
.co-rclose:hover { background: #ff2e8a; color: #fff; border-color: #ff2e8a; transform: scale(1.1); }
.co-rclose:active { transform: scale(.95); }
.co-rclose:focus-visible { outline: 3px solid #a5b0ff; outline-offset: 2px; }

/* ===== LOGIN CARD ===== */
.co-login {
    background: #ffffff08;
    border: 1px solid #ffffff18;
    border-radius: 20px;
    padding: 40px 36px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px -10px #6b3bff33;
    text-align: left;
    max-width: 440px;
    margin: 0 auto;
}
.co-login-title {
    font-family: 'Spectral', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -.03em;
    margin-bottom: 6px;
    text-align: center;
}
.co-login-sub {
    font-size: 14px;
    color: #e9ecf566;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.5;
}
.co-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #a5b0ffcc;
    margin-bottom: 8px;
}
.co-input {
    width: 100%;
    background: #ffffff0a;
    border: 1px solid #ffffff20;
    border-radius: 12px;
    padding: 14px 18px;
    font: inherit;
    font-size: 16px;
    color: #e9ecf5;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    margin-bottom: 16px;
    -webkit-appearance: none;
}
.co-input:focus {
    border-color: #ff2e8a66;
    box-shadow: 0 0 0 3px #ff2e8a22;
    background: #ffffff14;
}
.co-submit {
    width: 100%;
    background: linear-gradient(135deg, #ff2e8a 0%, #6b3bff 100%);
    color: #fff;
    border: 0;
    border-radius: 13px;
    padding: 16px 24px;
    font: inherit;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, opacity .15s;
    box-shadow: 0 6px 18px #ff2e8a44;
    letter-spacing: -.005em;
    margin-top: 4px;
    -webkit-tap-highlight-color: transparent;
}
.co-submit:hover { transform: translateY(-1px); box-shadow: 0 10px 24px #ff2e8a77; }
.co-submit:active { transform: scale(.98); box-shadow: 0 4px 10px #ff2e8a33; }
.co-submit:focus-visible { outline: 3px solid #a5b0ff; outline-offset: 3px; }
.co-login-err {
    background: #ff2e8a15;
    border: 1px solid #ff2e8a44;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13.5px;
    color: #ffb1c4;
    margin-bottom: 20px;
    line-height: 1.5;
}
.co-login-admin {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #e9ecf555;
}
.co-login-admin a { color: #a5b0ff; text-decoration: none; }
.co-login-admin a:hover { text-decoration: underline; }
.co-login-admin a:focus-visible { outline: 2px solid #a5b0ff; outline-offset: 2px; border-radius: 2px; }

/* ===== WELCOME BANNER ===== */
.co-welcome {
    background: #1bf2c215;
    border: 1px solid #1bf2c233;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13.5px;
    color: #1bf2c2;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
}
.co-welcome a { color: #1bf2c2aa; font-size: 12.5px; text-decoration: none; white-space: nowrap; }
.co-welcome a:hover { color: #1bf2c2; text-decoration: underline; }

/* ===== FOOTER ===== */
.co-footer {
    position: relative;
    z-index: 5;
    margin-top: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 12.5px;
    color: #e9ecf544;
}
.co-footer a { color: #e9ecf566; text-decoration: none; transition: color .2s; }
.co-footer a:hover { color: #e9ecf5; }
.co-footer a:focus-visible { outline: 2px solid #a5b0ff; outline-offset: 2px; border-radius: 2px; color: #e9ecf5; }
.co-footer-sep { width: 3px; height: 3px; border-radius: 50%; background: #ffffff22; flex-shrink: 0; }

/* ===== TABLET (641–960px) ===== */
@media (min-width: 641px) and (max-width: 960px) {
    .co-h1 { font-size: clamp(56px, 9vw, 96px); }
    .co-bg { padding: 90px 32px 56px; }
}

/* ===== MOBILE (≤ 640px) ===== */
@media (max-width: 640px) {
    .co-bg { padding: 72px 16px 44px; padding-bottom: max(44px, env(safe-area-inset-bottom, 0px) + 44px); }
    .co-logo { top: 20px; left: 20px; font-size: 13px; }
    .co-h1 { font-size: clamp(40px, 11vw, 72px); margin-bottom: 20px; }
    .co-sub { font-size: 15px; margin-bottom: 36px; line-height: 1.55; }
    .co-eyebrow { font-size: 10px; letter-spacing: .2em; gap: 10px; margin-bottom: 20px; }
    .co-rshort { font-size: 22px; }
    .co-rcopy { padding: 11px 18px; font-size: 13.5px; }
    .co-login { padding: 28px 20px; }
    .co-login-title { font-size: 28px; }
    .co-result { padding: 20px 20px; }
    .co-footer { margin-top: 40px; }
    .co-fieldgroup::before { inset: -30px -20px; }
}

/* ===== VERY SMALL SCREENS (≤ 460px) — stack button below input ===== */
@media (max-width: 460px) {
    .co-field {
        flex-wrap: wrap;
        padding: 12px 12px 10px;
        gap: 8px;
        border-radius: 16px;
    }
    .co-field input {
        flex: none;
        width: 100%;
        font-size: 16px;
        padding: 4px 2px 4px 8px;
        font-weight: 400;
    }
    .co-cta {
        width: 100%;
        border-radius: 11px;
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .co-stars i,
    .co-comet,
    .co-rlabel::before { animation: none; }
    .co-inner { animation: none; }
    .co-cta,
    .co-rcopy,
    .co-submit,
    .co-toggle,
    .co-rclose,
    .co-aliaswrap { transition: none; }
    .co-cta:hover,
    .co-rcopy:hover,
    .co-submit:hover { transform: none; }
}

/* ================================================================
   BELOW THE FOLD — SEO CONTENT
   ================================================================ */

/* ===== FOLD SEPARATOR ===== */
.co-fold {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px 48px;
    position: relative;
    z-index: 4;
}
.co-fold-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff14, transparent);
}
.co-fold-arrow {
    font-size: 13px;
    color: #e9ecf530;
    animation: coFoldBounce 2.5s ease-in-out infinite;
    display: block;
    line-height: 1;
}
@keyframes coFoldBounce {
    0%, 100% { transform: translateY(0); opacity: .3; }
    50%       { transform: translateY(4px); opacity: .7; }
}

/* ===== MAIN CONTENT WRAPPER ===== */
.co-main-content {
    background: #040514;
    border-top: 1px solid #ffffff0a;
}

/* ===== SECTION ===== */
.co-section {
    border-bottom: 1px solid #ffffff08;
}
.co-section:last-child { border-bottom: 0; }

.co-section-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* ===== SECTION TITLE ===== */
.co-section-title {
    font-family: 'Spectral', serif;
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 400;
    letter-spacing: -.03em;
    color: #e9ecf5;
    margin: 0 0 18px;
    line-height: 1.2;
    padding-bottom: 18px;
    border-bottom: 1px solid #ffffff0c;
    position: relative;
}
.co-section-title::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, #ff2e8a, #6b3bff);
}

/* ===== LEAD PARAGRAPH ===== */
.co-lead {
    font-size: 17px;
    line-height: 1.78;
    color: #e9ecf5bb;
    margin: 20px 0 28px;
    max-width: 720px;
    padding-left: 16px;
    border-left: 2px solid #ff2e8a44;
}

/* ===== BODY PARAGRAPHS ===== */
.co-section-inner p:not(.co-lead):not(.co-note) {
    font-size: 15.5px;
    line-height: 1.78;
    color: #e9ecf588;
    margin-top: 18px;
    max-width: 720px;
}
.co-section-inner p code,
.co-section-inner li code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #ff8da6;
    background: #ff2e8a12;
    padding: 1px 6px;
    border-radius: 4px;
}

/* ===== STEPS (ol) ===== */
.co-steps {
    list-style: none;
    counter-reset: co-step;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
    padding: 0;
}
.co-steps li {
    counter-increment: co-step;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    font-size: 15.5px;
    color: #e9ecf5aa;
    line-height: 1.65;
    padding: 16px 20px;
    background: #ffffff05;
    border: 1px solid #ffffff0c;
    border-radius: 12px;
    transition: background .2s, border-color .2s;
}
.co-steps li:hover { background: #ffffff09; border-color: #ffffff18; }
.co-steps li::before {
    content: counter(co-step, decimal-leading-zero);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #ff8da6;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 3px;
    letter-spacing: .05em;
    width: 20px;
}
.co-steps strong { color: #e9ecf5; font-weight: 600; }

/* ===== USE CASES (ul) ===== */
.co-uses {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0;
    padding: 0;
}
.co-uses li {
    font-size: 15.5px;
    color: #e9ecf599;
    line-height: 1.65;
    padding: 16px 20px 16px 22px;
    background: #ffffff05;
    border: 1px solid #ffffff0c;
    border-radius: 12px;
    border-left: 2px solid #ff2e8a44;
    transition: background .2s, border-left-color .2s;
}
.co-uses li:hover { background: #ffffff09; border-left-color: #ff2e8a; }
.co-uses li:nth-child(2) { border-left-color: #a5b0ff44; }
.co-uses li:nth-child(2):hover { border-left-color: #a5b0ff; }
.co-uses li:nth-child(3) { border-left-color: #6b3bff44; }
.co-uses li:nth-child(3):hover { border-left-color: #6b3bff; }
.co-uses li:nth-child(5) { border-left-color: #1bf2c244; }
.co-uses li:nth-child(5):hover { border-left-color: #1bf2c2; }
.co-uses li:nth-child(6) { border-left-color: #a5b0ff44; }
.co-uses strong { color: #e9ecf5; font-weight: 600; display: block; margin-bottom: 3px; }

/* ===== PRIVACY COLS ===== */
.co-privacy-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}
.co-privacy-col {
    background: #ffffff06;
    border: 1px solid #ffffff10;
    border-radius: 14px;
    padding: 22px 24px;
}
.co-privacy-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #a5b0ffcc;
    margin: 0 0 14px;
}
.co-privacy-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.co-privacy-col li {
    font-size: 14px;
    color: #e9ecf577;
    line-height: 1.55;
    padding-left: 16px;
    position: relative;
}
.co-privacy-col li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: #ff8da6;
    font-weight: 700;
}

/* ===== COMPARISON TABLE ===== */
.co-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
    border-radius: 14px;
    border: 1px solid #ffffff10;
}
.co-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 560px;
}
.co-compare-table th,
.co-compare-table td {
    padding: 13px 18px;
    text-align: left;
    border-bottom: 1px solid #ffffff08;
    line-height: 1.45;
}
.co-compare-table th {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #a5b0ffcc;
    background: #ffffff07;
    white-space: nowrap;
}
.co-compare-table td { color: #e9ecf566; }
.co-compare-table td:first-child { color: #e9ecf5cc; font-weight: 500; }
.co-compare-table td:nth-child(2) { color: #1bf2c2; font-weight: 500; }
.co-compare-table tbody tr:last-child td { border-bottom: 0; }
.co-compare-table tbody tr:hover td { background: #ffffff04; }

/* ===== NOTE ===== */
.co-section-inner .co-note {
    font-size: 13.5px;
    color: #e9ecf566;
    line-height: 1.65;
    padding: 14px 18px;
    background: #ffffff06;
    border: 1px solid #ffffff10;
    border-left: 2px solid #a5b0ff55;
    border-radius: 10px;
    margin-top: 24px;
    max-width: 720px;
}
.co-section-inner .co-note strong { color: #a5b0ffcc; font-weight: 500; }

/* ===== FAQ (div + h3 + p) ===== */
.co-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto;
}
.co-faq-item {
    background: #ffffff06;
    border: 1px solid #ffffff10;
    border-radius: 14px;
    padding: 22px 24px;
    transition: border-color .2s;
}
.co-faq-item:hover { border-color: #ffffff20; }
.co-faq-q {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #e9ecf5;
    margin: 0 0 10px;
    letter-spacing: -.015em;
    line-height: 1.4;
}
.co-faq-a {
    font-size: 14.5px;
    line-height: 1.72;
    color: #e9ecf577;
    margin: 0;
}
.co-faq-a code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #ff8da6;
    background: #ff2e8a12;
    padding: 1px 6px;
    border-radius: 4px;
}

/* ===== PAGE FOOTER ===== */
.co-footer--page {
    margin-top: 0;
    padding: 28px 40px;
    border-top: 1px solid #ffffff08;
    background: #040514;
    padding-bottom: max(28px, env(safe-area-inset-bottom, 0px) + 20px);
}

/* ===== BELOW-FOLD RESPONSIVE ===== */
@media (max-width: 640px) {
    .co-section-inner { padding: 52px 20px; }
    .co-section-title { font-size: clamp(20px, 5.5vw, 30px); }
    .co-lead { font-size: 15.5px; margin-bottom: 20px; }
    .co-privacy-cols { grid-template-columns: 1fr; }
    .co-faq-item { padding: 18px; }
    .co-faq-q { font-size: 14px; }
    .co-faq-a { font-size: 14px; }
    .co-steps li { padding: 13px 16px; font-size: 15px; }
    .co-uses li { padding: 13px 16px 13px 18px; font-size: 15px; }
    .co-footer--page { padding: 20px; padding-bottom: max(20px, env(safe-area-inset-bottom, 0px) + 16px); }
    .co-fold { padding-bottom: 32px; }
    .co-compare-table th,
    .co-compare-table td { padding: 10px 13px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
    .co-fold-arrow { animation: none; }
    .co-steps li,
    .co-uses li,
    .co-faq-item { transition: none; }
}
