/* Just Fucking Set Identity Onchain */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    --bg: #050508;
    --bg-raised: #0d0d12;
    --bg-code: #0a0a0f;
    --border: #1e1e2a;
    --border-subtle: #15151d;
    --text: #c8c8d0;
    --text-muted: #777787;
    --text-bright: #f2f2f5;
    --accent: #7dd3fc;
    --accent-dim: #0ea5e9;
    --bad: #ef4444;
    --good: #4ade80;
    --warn: #fbbf24;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background:
        radial-gradient(circle at top, rgba(14, 165, 233, 0.09), transparent 34rem),
        var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

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

p {
    margin: 0 0 1.25rem;
}

strong {
    color: var(--text-bright);
    font-weight: 800;
}

.cuss {
    color: var(--warn);
    font-weight: 900;
    text-shadow: 0 0 18px rgba(251, 191, 36, 0.16);
}

h1 .cuss {
    color: var(--accent);
    text-shadow: 0 0 28px rgba(125, 211, 252, 0.18);
}

.rant .cuss {
    color: var(--bad);
    text-shadow: 0 0 18px rgba(239, 68, 68, 0.18);
}

em {
    color: var(--text-muted);
    font-style: normal;
}

code {
    max-width: 100%;
    padding: 0.15rem 0.4rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-code);
    color: var(--warn);
    font-family: var(--font-mono);
    font-size: 0.88em;
    overflow-wrap: anywhere;
}

pre {
    margin: 1.25rem 0;
    padding: 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    background: var(--bg);
    overflow-x: auto;
}

pre code {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 0.85rem;
    line-height: 1.65;
    white-space: pre;
}

.hero {
    padding: 5rem 1.5rem 4.5rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.hero-copy {
    max-width: 820px;
    margin: 0 auto;
}

.eyebrow,
.section-kicker {
    margin: 0 0 0.85rem;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    color: var(--text-bright);
    letter-spacing: 0;
}

h1 {
    margin: 0 auto 2.25rem;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.45rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

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

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    color: #000;
    opacity: 0.92;
}

.btn-secondary {
    border-color: var(--accent);
    background: transparent;
    color: var(--accent);
}

.btn-secondary:hover {
    background: rgba(125, 211, 252, 0.08);
    color: var(--text-bright);
}

main {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

section {
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid var(--border);
}

section:last-of-type,
section.cta {
    border-bottom: none;
}

h2 {
    margin: 0 0 1.25rem;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.3;
}

h3 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
}

.rant p {
    color: var(--text-bright);
    font-size: 1.25rem;
    line-height: 1.75;
}

.tool-section {
    margin: 3.5rem 0 2.5rem;
    padding: 2rem;
    border: 1px solid var(--border);
    border-left: 3px solid var(--warn);
    border-radius: 12px;
    background: var(--bg-raised);
}

.tool-section h2 {
    margin-bottom: 1rem;
}

.small {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 680px) {
    .comparison {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.compare-panel {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-raised);
}

.compare-panel.bad {
    border-left: 3px solid var(--bad);
}

.compare-panel.good {
    border-left: 3px solid var(--good);
}

.compare-panel h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 800;
}

.compare-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.compare-panel li {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.92rem;
    line-height: 1.5;
}

.compare-panel li:last-child {
    border-bottom: none;
}

.compare-panel span {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.compare-panel a,
.compare-panel strong,
.compare-panel em,
.compare-panel code {
    display: inline-block;
    margin-top: 0.2rem;
}

.field-list {
    margin: 0;
}

.field-list dt {
    margin-top: 1.75rem;
    color: var(--text-bright);
    font-size: 1rem;
    font-weight: 800;
}

.field-list dt::before {
    content: "-> ";
    color: var(--accent);
}

.field-list dd {
    margin: 0.5rem 0 0;
    padding-left: 1.5rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.excuse {
    margin-bottom: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-left: 3px solid var(--bad);
    border-radius: 10px;
    background: var(--bg-raised);
}

.excuse h3 {
    margin-top: 0;
    color: var(--warn);
    font-size: 1.05rem;
}

.excuse p:last-child {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.checklist {
    margin: 1rem 0;
    padding: 0;
    list-style: none;
}

.checklist li {
    position: relative;
    padding: 0.85rem 0 0.85rem 2rem;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.98rem;
    line-height: 1.55;
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist li::before {
    content: "OK";
    position: absolute;
    left: 0;
    top: 0.85rem;
    color: var(--good);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
}

.cta {
    margin: 4rem 0;
    padding: 3rem 2rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--bg-raised);
    text-align: center;
}

.cta h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 900;
}

.cta .hero-actions {
    margin-top: 2.5rem;
}

footer {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.88rem;
    text-align: center;
}

footer p {
    margin: 0 0 0.6rem;
    color: var(--text-muted);
}

footer a {
    color: var(--text-muted);
}

footer a:hover {
    color: var(--accent);
}

::selection {
    background: rgba(125, 211, 252, 0.2);
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

@media (max-width: 760px) {
    .hero {
        padding-top: 4rem;
    }

}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .hero,
    main,
    footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    h1 {
        font-size: 2.05rem;
        line-height: 1.08;
        max-width: 12ch;
        margin-left: auto;
        margin-right: auto;
    }

    .rant p {
        font-size: 1.08rem;
    }

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

    .tool-section,
    .cta {
        padding: 1.5rem;
    }

    pre {
        padding: 1rem;
    }
}
