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

:root {
    --black: #000000;
    --white: #ffffff;
    --purple: #7c3aed;
    --pink: #ec4899;
    --cyan: #06b6d4;
    --red: #ef4444;
    --gray: #a1a1aa;
}

body {
    font-family: 'Courier New', monospace;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.4;
}

/* Noise Overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Floating Nav - Dynamic Staircase */
.floating-nav {
    position: fixed;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
}

.nav-item {
    padding: 20px 32px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    border: 3px solid var(--black);
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    border-radius: 8px;
    box-shadow: 4px 4px 0 var(--black);
}

.nav-item:nth-child(1) {
    transform: translateX(0) rotate(-2deg);
}

.nav-item:nth-child(2) {
    transform: translateX(30px) rotate(1deg);
}

.nav-item:nth-child(3) {
    transform: translateX(60px) rotate(-1deg);
}

.nav-item:nth-child(4) {
    transform: translateX(90px) rotate(2deg);
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--purple);
    border-radius: 50%;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s;
}

.nav-item:hover {
    transform: translateX(calc(var(--base-x) * 1px)) rotate(0deg) scale(1.1);
    background: var(--purple);
    color: var(--white);
    box-shadow: 8px 8px 0 var(--black);
}

.nav-item:nth-child(1):hover {
    transform: translateX(-10px) rotate(0deg) scale(1.1);
}

.nav-item:nth-child(2):hover {
    transform: translateX(20px) rotate(0deg) scale(1.1);
}

.nav-item:nth-child(3):hover {
    transform: translateX(50px) rotate(0deg) scale(1.1);
}

.nav-item:nth-child(4):hover {
    transform: translateX(80px) rotate(0deg) scale(1.1);
}

.nav-item:hover::after {
    opacity: 1;
    animation: pulse-dot 1s infinite;
}

.nav-item.active {
    background: var(--black);
    color: var(--white);
    transform: translateX(calc(var(--base-x) * 1px)) rotate(0deg) scale(1.05);
}

.nav-item:nth-child(1).active {
    transform: translateX(-10px) rotate(0deg) scale(1.05);
}

.nav-item:nth-child(2).active {
    transform: translateX(20px) rotate(0deg) scale(1.05);
}

.nav-item:nth-child(3).active {
    transform: translateX(50px) rotate(0deg) scale(1.05);
}

.nav-item:nth-child(4).active {
    transform: translateX(80px) rotate(0deg) scale(1.05);
}

.nav-item.active::after {
    opacity: 1;
    background: var(--cyan);
}

@keyframes pulse-dot {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.5); }
}

/* Hero Chaos */
.hero-chaos {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 40px 60px;
    position: relative;
}

.glitch-container {
    margin-bottom: 60px;
}

.glitch {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    position: relative;
    text-transform: uppercase;
    animation: glitch-skew 3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--purple);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--cyan);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 31px, 0); }
    20% { clip: rect(85px, 9999px, 140px, 0); }
    40% { clip: rect(20px, 9999px, 60px, 0); }
    60% { clip: rect(50px, 9999px, 90px, 0); }
    80% { clip: rect(5px, 9999px, 25px, 0); }
    100% { clip: rect(70px, 9999px, 110px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    20% { clip: rect(5px, 9999px, 45px, 0); }
    40% { clip: rect(90px, 9999px, 130px, 0); }
    60% { clip: rect(30px, 9999px, 70px, 0); }
    80% { clip: rect(110px, 9999px, 150px, 0); }
    100% { clip: rect(15px, 9999px, 55px, 0); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(-2deg); }
    20% { transform: skew(0deg); }
    30% { transform: skew(1deg); }
    40% { transform: skew(0deg); }
    100% { transform: skew(0deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    max-width: 1400px;
}

.hero-block {
    border: 3px solid var(--black);
    padding: 30px;
    background: var(--white);
    position: relative;
    border-radius: 12px;
}

.hero-block::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--black);
    border-radius: 12px;
    z-index: -1;
}

.label {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border-radius: 4px;
}

.hero-block p {
    font-size: 16px;
    line-height: 1.6;
}

.rotating-text {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
}

@keyframes rotate-words {
    0%, 30% { transform: translateY(0); }
    33%, 63% { transform: translateY(-40px); }
    66%, 96% { transform: translateY(-80px); }
    100% { transform: translateY(-120px); }
}

.brutal-btn {
    width: 100%;
    padding: 20px;
    background: var(--purple);
    color: var(--white);
    border: 3px solid var(--black);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    transition: all 0.1s;
}

.brutal-btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 var(--black);
}

.brutal-btn:active {
    transform: translate(0, 0);
    box-shadow: none;
}

/* Diagonal Section - Chaotic Redesign */
.diagonal-section {
    background: var(--black);
    color: var(--white);
    padding: 120px 40px;
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: 80px 0;
    overflow: hidden;
}

.diagonal-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Chaotic Header */
.chaos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
    position: relative;
}

.rotating-stamp {
    animation: rotate-stamp 20s linear infinite;
}

@keyframes rotate-stamp {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background: var(--green);
    color: var(--black);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    border-radius: 8px;
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Benefits Chaos - Asymmetric */
.benefits-chaos {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 100px;
}

.benefit-mega {
    background: var(--white);
    color: var(--black);
    padding: 50px;
    border: 5px solid var(--white);
    border-radius: 16px;
    position: relative;
    transform: rotate(-2deg);
    transition: all 0.3s;
}

.benefit-mega:hover {
    transform: rotate(0deg) scale(1.02);
}

.benefit-stamp {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    border: 5px solid var(--black);
    box-shadow: 0 8px 0 var(--black);
}

.benefit-content-mega h3 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.benefit-content-mega p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.8;
}

.benefit-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.benefit-tags span {
    background: var(--black);
    color: var(--white);
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    border-radius: 6px;
}

.benefit-side {
    background: var(--purple);
    color: var(--white);
    padding: 40px;
    border: 5px solid var(--purple);
    border-radius: 16px;
    position: relative;
    transform: rotate(3deg);
    transition: all 0.3s;
}

.benefit-side:hover {
    transform: rotate(0deg) scale(1.05);
}

.benefit-side .benefit-stamp {
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    font-size: 24px;
    background: var(--cyan);
}

.benefit-side h3 {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.benefit-side p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Parameters Scattered */
.params-scatter {
    position: relative;
    height: 500px;
    margin-bottom: 100px;
}

.scatter-title {
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
}

.param-box {
    position: absolute;
    background: var(--white);
    color: var(--black);
    padding: 16px 24px;
    border: 3px solid var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.param-box.clickable::before {
    content: '→';
    position: absolute;
    right: 12px;
    font-size: 20px;
    font-weight: 900;
    opacity: 0;
    transition: all 0.3s;
}

.param-box.clickable:hover::before {
    opacity: 1;
    right: 8px;
}

.param-box:hover {
    transform: scale(1.15) rotate(0deg) !important;
    background: var(--purple);
    color: var(--white);
    z-index: 10;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.param-n {
    font-size: 18px;
    font-weight: 900;
    background: var(--black);
    color: var(--white);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.param-box:hover .param-n {
    background: var(--white);
    color: var(--black);
}

.param-box span:last-child {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Scoring Brutalist Grid */
.scoring-brutal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.score-column {
    border: 3px solid var(--white);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s;
}

.score-column:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
}

.score-mega-label {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.score-mega-bar {
    background: rgba(255, 255, 255, 0.2);
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    font-size: 16px;
    font-weight: 900;
    transition: width 1s ease;
}

.bar-fill.purple {
    background: var(--purple);
}

.bar-fill.red {
    background: var(--red);
}

.bar-fill.cyan {
    background: var(--cyan);
}

/* Terminal Chat */
.terminal-chat {
    max-width: 700px;
    background: #1a1a1a;
    border: 3px solid var(--white);
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Courier New', monospace;
}

.terminal-header {
    background: var(--white);
    color: var(--black);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 900;
}

.terminal-body {
    padding: 24px;
}

.terminal-line {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.prompt {
    color: var(--cyan);
    font-weight: 900;
    margin-right: 8px;
}

.terminal-line.ai {
    color: var(--purple);
}

.terminal-cursor {
    display: inline-block;
    background: var(--white);
    width: 10px;
    height: 16px;
    animation: blink 1s infinite;
}

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

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    color: var(--black);
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 50px;
    border: 5px solid var(--black);
    border-radius: 16px;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--purple);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.modal-body {
    font-size: 16px;
    line-height: 1.8;
}

.modal-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.modal-body ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: 900;
    font-size: 18px;
}

.modal-body ul li:last-child {
    border-bottom: none;
}

/* Success Modal */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(15px);
}

.success-modal-overlay.active {
    display: flex;
    animation: fadeIn 0.4s ease;
}

.success-modal-content {
    background: var(--white);
    color: var(--black);
    max-width: 550px;
    width: 90%;
    padding: 60px 50px;
    border: 5px solid var(--black);
    border-radius: 16px;
    text-align: center;
    position: relative;
    animation: slideUpBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUpBounce {
    from {
        transform: translateY(100px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: 900;
    margin: 0 auto 30px;
    border: 5px solid var(--black);
    animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s backwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0) rotate(-180deg);
    }
    to {
        transform: scale(1) rotate(0deg);
    }
}

.success-title {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
    animation: fadeInUp 0.5s ease 0.3s backwards;
}

.success-message {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 700;
    animation: fadeInUp 0.5s ease 0.4s backwards;
}

.success-submessage {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 40px;
    animation: fadeInUp 0.5s ease 0.5s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-btn {
    padding: 18px 40px;
    background: var(--purple);
    color: var(--white);
    border: 3px solid var(--black);
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    animation: fadeInUp 0.5s ease 0.6s backwards;
}

.success-btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 var(--black);
}

.success-btn:active {
    transform: translate(0, 0);
    box-shadow: none;
}

.score-box {
    margin-bottom: 24px;
}

.score-label {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.score-bar {
    width: 100%;
    height: 30px;
    background: var(--white);
    position: relative;
    border: 2px solid var(--white);
}

.score-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--score);
    background: var(--purple);
    transition: width 1s ease;
}

.score-bar.red::after {
    background: var(--red);
}

.score-bar.cyan::after {
    background: var(--cyan);
}

.chat-brutal {
    margin-top: 40px;
    border: 2px solid var(--white);
    border-radius: 8px;
    padding: 20px;
}

.chat-line {
    font-size: 14px;
    margin-bottom: 12px;
    font-family: 'Courier New', monospace;
}

.chat-line.ai {
    color: var(--cyan);
}

/* Wallet Section */
.wallet-section {
    padding: 80px 40px;
}

.container-brutal {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 50px;
}

.section-header-brutal {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.section-header-brutal h2 {
    font-size: 80px;
    margin-top: 40px;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
}

.badge-brutal {
    background: var(--black);
    color: var(--white);
    margin-top: 30px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    border-radius: 8px;
}

.wallet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wallet-card {
    border: 3px solid var(--black);
    border-radius: 12px;
    padding: 30px;
    background: var(--white);
    transition: all 0.2s;
}

.wallet-card:hover {
    transform: rotate(-1deg);
}

.wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.wallet-icon {
    font-size: 32px;
    font-weight: 900;
}

.wallet-status {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    background: var(--black);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
}

.wallet-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Value Stacked */
.value-stacked {
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 3px solid var(--black);
    border-radius: 0;
}

.value-item:last-child {
    border-bottom: none;
}

.value-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--purple);
    min-width: 80px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.value-item p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

/* Team Brutal */
.team-brutal {
    padding: 80px 40px;
    background: var(--purple);
    color: var(--white);
}

.section-title-brutal {
    font-size: 80px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.team-grid-brutal {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card-brutal {
    border: 3px solid var(--white);
    border-radius: 12px;
    background: var(--white);
    color: var(--black);
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 316px;
    background: var(--gray);
    background-size: cover;
    background-position: top;
}

.team-info {
    padding: 20px;
}

.team-info h4 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 6px;
}

.team-info span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Beta Form */
.beta-experimental {
    padding: 100px 40px;
    background: var(--black);
    color: var(--white);
}

.form-container-brutal {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.form-title-brutal {
    font-size: 64px;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
}

.form-brutal {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-brutal input {
    padding: 16px;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
}

.form-brutal input::placeholder {
    color: var(--gray);
}

.form-brutal input:focus {
    outline: none;
    background: var(--white);
    color: var(--black);
}

.submit-brutal {
    padding: 20px;
    background: var(--white);
    color: var(--black);
    border: none;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.1s;
}

.submit-brutal:hover {
    background: var(--purple);
    color: var(--white);
}

.form-note-brutal {
    grid-column: 2;
    font-size: 11px;
    letter-spacing: 1px;
    margin-top: -8px;
}

/* Stats Ticker */
.stats-ticker {
    background: var(--white);
    border-top: 3px solid var(--black);
    border-bottom: 3px solid var(--black);
    padding: 20px 0;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 60px;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Investors Chaos */
.investors-chaos {
    padding: 100px 40px;
    position: relative;
}

.investor-label {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 60px;
}

.investors-scatter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.investors-scatter a {
    font-size: 20px;
    font-weight: 900;
    padding: 20px 28px;
    border: 3px solid var(--black);
    background: var(--white);
    color: var(--black);
    white-space: nowrap;
    text-align: center;
    border-radius: 12px;
    box-shadow: 6px 6px 0 var(--black);
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

.investors-scatter a:nth-child(1) {
    transform: rotate(-3deg);
}

.investors-scatter a:nth-child(2) {
    transform: rotate(2deg);
}

.investors-scatter a:nth-child(3) {
    transform: rotate(-1deg);
}

.investors-scatter a:nth-child(4) {
    transform: rotate(3deg);
}

.investors-scatter a:nth-child(5) {
    transform: rotate(-2deg);
}

.investors-scatter a:nth-child(6) {
    transform: rotate(1deg);
}

.investors-scatter a:hover {
    transform: rotate(0deg) scale(1.05);
    background: var(--purple);
    color: var(--white);
    box-shadow: 10px 10px 0 var(--black);
}


/* Footer */
.footer-brutal {
    background: var(--black);
    color: var(--white);
    padding: 60px 40px 40px;
    text-align: center;
}

.footer-links-brutal {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links-brutal a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    transition: color 0.2s;
}

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

.footer-contact-brutal {
    margin-bottom: 30px;
}

.footer-contact-brutal p {
    font-size: 12px;
    margin-bottom: 6px;
}

.footer-copy {
    font-size: 11px;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .floating-nav {
        right: 30px;
        gap: 15px;
    }

    .nav-item {
        padding: 16px 24px;
        font-size: 12px;
    }

    .nav-item:nth-child(2) {
        transform: translateX(20px) rotate(1deg);
    }

    .nav-item:nth-child(3) {
        transform: translateX(40px) rotate(-1deg);
    }

    .nav-item:nth-child(4) {
        transform: translateX(60px) rotate(2deg);
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hero-block.block-1 {
        grid-column: 1 / -1;
    }

    .glitch {
        font-size: clamp(60px, 10vw, 100px);
    }

    .benefits-chaos {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-mega,
    .benefit-side {
        transform: rotate(-1deg);
    }

    .scoring-brutal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .investors-scatter {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .team-grid-brutal {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .floating-nav {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        transform: none;
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
    }

    .nav-item {
        padding: 12px 16px;
        font-size: 10px;
        letter-spacing: 1px;
        flex: 1;
        text-align: center;
        box-shadow: 3px 3px 0 var(--black);
    }

    .nav-item:nth-child(1),
    .nav-item:nth-child(2),
    .nav-item:nth-child(3),
    .nav-item:nth-child(4) {
        transform: rotate(0deg);
    }

    .nav-item:hover,
    .nav-item.active {
        transform: translateY(-4px);
    }

    .hero-chaos {
        padding: 60px 20px 100px;
        min-height: auto;
    }

    .glitch {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-block {
        padding: 24px;
    }

    .hero-block::after {
        bottom: -4px;
        right: -4px;
    }

    .rotating-text {
        font-size: 24px;
    }

    .diagonal-section {
        padding: 80px 20px;
    }

    .chaos-header {
        flex-direction: column;
        align-items: flex-end;
        gap: 20px;
        margin-bottom: 40px;
    }

    .stamp-title {
        font-size: 56px;
    }

    .floating-badge {
        position: static;
        transform: rotate(-2deg);
    }

    .benefits-chaos {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-mega,
    .benefit-side {
        padding: 24px;
        transform: rotate(0deg);
    }

    .benefit-stamp {
        font-size: 40px;
    }

    .benefit-content-mega h3 {
        font-size: 28px;
    }

    .benefit-side h3 {
        font-size: 24px;
    }

    .benefit-tags {
        flex-wrap: wrap;
        gap: 8px;
    }

    .params-scatter {
        height: auto;
        padding: 20px 0;
    }

    .scatter-title {
        font-size: 14px;
        margin-bottom: 20px;
        text-align: center;
    }

    .param-box {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: rotate(0deg) !important;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .param-box:hover {
        transform: translateX(8px) !important;
    }

    .scoring-brutal-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .score-mega-label {
        font-size: 16px;
    }

    .wallet-section {
        padding: 60px 20px;
    }

    .section-header-brutal {
        flex-direction: column;
        align-items: flex-end;
        gap: 16px;
        margin-bottom: 30px;
    }

    .section-header-brutal h2 {
        margin-top: 40px;
        font-size: 48px;
    }

    .wallet-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-stacked {
        padding: 60px 20px;
    }

    .value-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px;
    }

    .value-num {
        font-size: 32px;
    }

    .value-item h3 {
        font-size: 18px;
    }

    .team-brutal {
        padding: 60px 20px;
    }

    .section-title-brutal {
        font-size: 56px;
        margin-bottom: 40px;
    }

    .team-grid-brutal {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-photo {
        height: 316px;
    }

    .beta-experimental {
        padding: 60px 20px;
    }

    .form-container-brutal {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 24px;
    }

    .form-title-brutal {
        font-size: 30px;
        text-align: center;
    }

    .form-brutal input {
        padding: 16px;
        font-size: 14px;
    }

    .submit-brutal {
        padding: 18px;
        font-size: 14px;
    }

    .stats-ticker {
        padding: 40px 0;
    }

    .ticker-content span {
        font-size: 14px;
        padding: 0 30px;
    }

    .investors-chaos {
        padding: 60px 20px;
    }

    .investors-scatter {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .investors-scatter a {
        font-size: 16px;
        padding: 16px 20px;
    }

    .investors-scatter a:nth-child(odd) {
        transform: rotate(-2deg);
    }

    .investors-scatter a:nth-child(even) {
        transform: rotate(2deg);
    }

    .footer-brutal {
        padding: 40px 20px;
    }

    .footer-links-brutal {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .modal-content {
        width: 95%;
        max-width: none;
        padding: 40px 24px;
        margin: 20px;
    }

    .modal-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .modal-body {
        font-size: 14px;
    }
}
.scoring-title {
    font-size: 50px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 40px;
    text-align: center;
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .nav-item {
        padding: 10px 8px;
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .glitch {
        font-size: 32px;
    }

    .hero-block {
        padding: 20px;
    }

    .label {
        font-size: 10px;
        padding: 4px 8px;
    }

    .hero-block p {
        font-size: 14px;
    }

    .rotating-text {
        font-size: 20px;
    }

    .brutal-btn {
        padding: 16px;
        font-size: 14px;
    }

    .stamp-title {
        font-size: 40px;
    }

    .benefit-content-mega h3 {
        font-size: 24px;
    }

    .benefit-side h3 {
        font-size: 20px;
    }

    .param-box {
        padding: 12px 16px;
    }

    .param-n {
        font-size: 14px;
        padding: 6px 10px;
    }

    .section-header-brutal h2 {
        margin-top: 40px;
        font-size: 40px;
    }

    .value-item h3 {
        font-size: 16px;
    }

    .section-title-brutal {
        font-size: 40px;
    }

    .form-title-brutal {
        font-size: 30px;
    }

    .investors-scatter a {
        font-size: 14px;
        padding: 12px 16px;
    }

    .param-box {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin-bottom: 12px;
    }

    .scatter-title {
        position: relative;
        top: auto;
        margin-bottom: 20px;
        font-size: 24px;
    }

    .scoring-brutal-grid {
        grid-template-columns: 1fr;
    }

    .floating-nav {
        gap: 8px;
    }

    .nav-item {
        padding: 10px 16px;
        font-size: 10px;
    }

    .form-container-brutal {
        gap: 20px;
    }

    .form-title-brutal {
        font-size: 30px;
    }

    .terminal-chat {
        font-size: 12px;
    }
}
