@import './tokens.css';

:root {
    --bg-color: var(--rf-onyx);
    --bg-lighter: var(--rf-onyx-light);
    --bg-darker: var(--rf-onyx-dark);
    --text-primary: var(--rf-linen);
    --text-secondary: var(--rf-linen-dark);
    --accent-color: var(--rf-electric-indigo);
    --accent-hover: var(--rf-electric-indigo-hover);
    --accent-light: rgba(139, 92, 246, 0.1);
    --border-color: var(--rf-linen-dark);
    --container-width: 1200px;
    --font-main: var(--rf-font-main);
    --font-heading: var(--rf-font-heading);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.section {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, #c084fc 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

.btn-outline {
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    background-color: var(--accent-light);
}

.btn-ghost {
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-text {
    display: flex;
    align-items: center;
}

.logo-accent {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-link {
    color: var(--text-secondary);
    transition: var(--transition);
}

.lang-link:hover {
    color: var(--text-primary);
}

.lang-link.active {
    color: var(--accent-color);
}

.lang-switcher .divider {
    color: rgba(255, 255, 255, 0.2);
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Hero */
.hero {
    position: relative;
    padding: 180px 0 120px;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

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

/* Section Common */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* About Section */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Visual Card */
.visual-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.visual-header {
    background: #27272a;
    padding: 0.75rem 1rem 1rem 1rem;
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dot:hover {
    opacity: 0.8;
}

.dot:active {
    transform: scale(0.9);
}

.dot::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.dot.red::before { background: #ef4444; }
.dot.yellow::before { background: #f59e0b; }
.dot.green::before { background: #10b981; }

.visual-body {
    flex: 1;
    padding: 2rem;
    font-family: 'Courier New', Courier, monospace;
    visibility: visible;
}

.code-keyword { color: #c084fc; }
.code-variable { color: #60a5fa; }
.code-property { color: #818cf8; }
.code-string { color: #34d399; }

/* Ecosystem Cards */
.card {
    background: var(--bg-lighter);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: left;
}

.card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.card i {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    width: 32px;
    height: 32px;
}

.card h3 {
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* TorkTool Pitch */
.torktool-pitch {
    position: relative;
    overflow: hidden;
}

.pitch-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.badge-accent {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(109, 40, 217, 0.1);
    border: 1px solid rgba(109, 40, 217, 0.2);
    border-radius: 100px;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-subtitle-left {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.pitch-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.benefit-item i {
    color: var(--accent-color);
    width: 24px;
    height: 24px;
}

.pitch-trust {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--rf-emerald-green);
    width: 16px;
    height: 16px;
}

.pitch-actions {
    display: flex;
    gap: 1.5rem;
}

/* TorkTool Mockup */
.torktool-mockup {
    background: #121212;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.mockup-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.mockup-header {
    background: #1a1a1a;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-search {
    background: #0a0a0a;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.mockup-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.mockup-sidebar {
    width: 60px;
    background: #161616;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1.5rem;
}

.mockup-nav-item {
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.mockup-nav-item.active {
    color: var(--accent-color);
}

.mockup-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mockup-tool-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.tool-header i {
    color: #ef4444; /* YouTube red */
}

.tool-input-mock {
    height: 36px;
    background: #0a0a0a;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.tool-btn-mock {
    height: 36px;
    background: var(--accent-color);
    border-radius: 8px;
    width: 100px;
}

.mockup-recent {
    display: flex;
    gap: 1rem;
}

.recent-item-mock {
    flex: 1;
    height: 80px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-agent-bar {
    background: var(--accent-color);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

/* NebWork Spotlight */
.nebwork-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: linear-gradient(135deg, #1c1c1c 0%, #1a1a1a 100%);
    padding: 4rem;
    border-radius: 32px;
    align-items: center;
}

.nebwork-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.badge-purple {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-color);
    color: white;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.nebwork-title {
    all: unset;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
}

.nebwork-title:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.nebwork-title:active {
    transform: translateY(0);
}

.nebwork-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.nebwork-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.nebwork-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.nebwork-features i {
    color: var(--accent-color);
    width: 18px;
    height: 18px;
}

/* Mockup UI */
.nebwork-preview {
    height: 360px;
    position: relative;
}

.nebwork-ui-mockup {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
        linear-gradient(120deg, rgba(255, 180, 84, 0.16), rgba(107, 142, 255, 0.1)),
        #161821;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
    padding: 0.75rem;
    gap: 0.75rem;
    position: relative;
}

.nebwork-ui-mockup::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.35;
    pointer-events: none;
}

.ui-sidebar {
    width: 92px;
    background: rgba(17, 20, 30, 0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 0.7rem 0.55rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}

.ui-back-button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    position: relative;
}

.ui-back-button::before {
    content: '<';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 700;
}

.ui-sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ui-side-pill {
    min-height: 34px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.72);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0 0.25rem;
    text-align: center;
    line-height: 1.1;
}

.ui-side-pill.is-active {
    background: linear-gradient(180deg, #f3f0e7, #cbc7bf);
    color: #1b1b1f;
    box-shadow: inset 0 0 0 2px rgba(27,27,31,0.8);
}

.ui-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.ui-topbar {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 0.65rem;
    align-items: start;
}

.ui-brand-block,
.ui-search-card,
.ui-hero-card,
.ui-board-shell {
    background: rgba(28, 31, 43, 0.76);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.ui-brand-block {
    padding: 0.75rem 0.9rem;
    border-radius: 18px;
}

.ui-kicker,
.ui-board-kicker {
    display: inline-block;
    font-size: 0.56rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.ui-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.35rem;
}

.ui-title-row h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1;
    color: #f4efe5;
}

.ui-lock-pill,
.ui-outline-pill,
.ui-chip,
.ui-card-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
}

.ui-lock-pill {
    padding: 0.25rem 0.55rem;
    font-size: 0.6rem;
    color: #9ce0ce;
    background: rgba(79, 176, 150, 0.14);
    border: 1px solid rgba(79, 176, 150, 0.4);
}

.ui-search-card {
    padding: 0.75rem;
    border-radius: 18px;
}

.ui-search-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.76rem;
    margin-bottom: 0.45rem;
    color: #eee8dc;
}

.ui-search-input {
    min-height: 38px;
    border-radius: 12px;
    padding: 0.65rem 0.85rem;
    background: #24253b;
    color: rgba(255,255,255,0.48);
    font-weight: 500;
    font-size: 0.72rem;
}

.ui-hero-card {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 20px;
    background:
        radial-gradient(circle at top left, rgba(255, 170, 84, 0.14), transparent 45%),
        rgba(33, 36, 50, 0.76);
}

.ui-hero-copy h4 {
    margin-top: 0.35rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.45rem;
    line-height: 1;
    color: #f3eee4;
    max-width: 11ch;
}

.ui-hero-copy p {
    margin-top: 0.4rem;
    color: rgba(255,255,255,0.68);
    font-size: 0.74rem;
    max-width: 30ch;
}

.ui-hero-tag {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.75);
    font-size: 0.58rem;
    font-weight: 600;
}

.ui-chip-row,
.ui-badge-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.ui-chip-row {
    margin-top: 0.7rem;
}

.ui-badge-cluster {
    max-width: 160px;
    justify-content: flex-end;
    align-content: flex-start;
}

.ui-chip,
.ui-outline-pill {
    min-height: 30px;
    padding: 0.25rem 0.7rem;
    font-size: 0.64rem;
}

.ui-chip {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.84);
}

.ui-chip.is-warm {
    background: linear-gradient(135deg, #ffb04c, #ff7f6d);
    color: #1c1920;
    border: none;
}

.ui-outline-pill {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.78);
}



.ui-content {
    flex: 1;
    display: flex;
    min-height: 0;
}

.ui-board-shell {
    width: 100%;
    border-radius: 22px;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    background:
        linear-gradient(180deg, rgba(38,40,62,0.96), rgba(28,30,46,0.94));
}

.ui-board-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 0.75rem;
}

.ui-board-header h5 {
    margin-top: 0.2rem;
    font-size: 1.15rem;
    color: #f1ebdf;
}

.ui-board-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.82fr;
    gap: 0.65rem;
    min-height: 0;
}

.ui-card {
    min-height: 96px;
    border-radius: 16px;
    padding: 0.75rem;
    background: rgba(15, 18, 29, 0.82);
    border: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    overflow: hidden;
}

.ui-card strong {
    color: #f4efe5;
    font-size: 0.85rem;
}

.ui-card p {
    color: rgba(255,255,255,0.62);
    font-size: 0.7rem;
    line-height: 1.35;
}

.ui-card-status {
    width: fit-content;
    padding: 0.22rem 0.5rem;
    font-size: 0.56rem;
    background: rgba(77, 177, 139, 0.16);
    color: #99e2c9;
    border: 1px solid rgba(77, 177, 139, 0.3);
}

.ui-card-status.is-cyan {
    background: rgba(104, 177, 255, 0.15);
    color: #9ed6ff;
    border-color: rgba(104, 177, 255, 0.25);
}

.ui-card-status.is-gold {
    background: rgba(255, 186, 89, 0.14);
    color: #ffd69a;
    border-color: rgba(255, 186, 89, 0.22);
}

.ui-card-dots {
    margin-top: auto;
    display: flex;
    gap: 0.25rem;
}

.ui-card-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
}

.ui-vote-bars {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ui-vote-bars span {
    display: block;
    width: var(--w);
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffad4f, #ff7f6b);
}

.idea-card {
    transform: rotate(-1.2deg);
}

.hub-card {
    transform: translateY(0.3rem);
}

.vote-card {
    transform: rotate(1.3deg);
}

/* Philosophy */
.philosophy-card {
    padding: 2rem;
    border-left: 2px solid var(--accent-color);
    background: rgba(139, 92, 246, 0.03);
}

.philosophy-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.philosophy-card p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .section-grid, .nebwork-spotlight, .pitch-grid { grid-template-columns: 1fr; }
    .nebwork-preview { height: 340px; }
    .pitch-grid { gap: 3rem; }
    .torktool-mockup { height: 360px; }
    .ui-topbar,
    .ui-board-grid { grid-template-columns: 1fr; }
    .ui-badge-cluster { max-width: none; justify-content: flex-start; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding: 140px 0 80px; }
    .hero h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .nebwork-spotlight { padding: 2rem; }
    .pitch-trust { flex-direction: column; gap: 1rem; }
    .pitch-actions { flex-direction: column; }
    .nebwork-ui-mockup {
        flex-direction: column;
        padding: 0.85rem;
    }
    .ui-sidebar {
        width: 100%;
        flex-direction: row;
        align-items: center;
    }
    .ui-sidebar-stack {
        flex-direction: row;
        overflow-x: auto;
    }
    .ui-side-pill {
        min-width: 88px;
        padding: 0 0.75rem;
    }
    .ui-hero-card,
    .ui-board-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .ui-hero-copy h4 { font-size: 1.6rem; }
}
