:root {
    --bg: #050505;
    --text: #ffffff;
    --accent: #FFB800; /* Honey Gold */
    --accent-glow: rgba(255, 184, 0, 0.4);
    --lima: #D2FF00; /* Neon Lima */
    --subtext: #888888;
    --border: rgba(255, 255, 255, 0.05);
    --transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.4;
    scroll-behavior: smooth;
}

#hive-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

.logo {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
}

.accent { color: var(--accent); }

.nav-links a {
    color: var(--text);
    text-decoration: none;
    margin-left: 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    transition: var(--transition);
}

.nav-links a:hover { opacity: 1; color: var(--accent); }

header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.hero-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--accent);
    margin-bottom: 20px;
}

h1.manifesto-text {
    font-size: clamp(40px, 10vw, 100px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -6px;
    margin-bottom: 40px;
}

.stroke {
    -webkit-text-stroke: 1px var(--text);
    color: transparent;
}

.hero-desc {
    font-size: 18px;
    max-width: 600px;
    color: var(--subtext);
}

section {
    padding: 150px 0;
}

.section-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--subtext);
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
    display: inline-block;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.color-card {
    border: 1px solid var(--border);
    padding: 20px;
    transition: var(--transition);
}

.color-card:hover { border-color: var(--accent); }

.swatch {
    height: 200px;
    margin-bottom: 20px;
}

.info h3 { font-size: 18px; margin-bottom: 5px; font-weight: 900; }
.info p { font-family: 'Fira Code', monospace; color: var(--subtext); font-size: 14px; }

.glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(40px);
    padding: 100px;
    border: 1px solid var(--border);
    text-align: center;
}

.hex-visual { margin: 60px 0; }

.eco-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.eco-node {
    font-family: 'Fira Code', monospace;
    font-size: 18px;
    padding: 20px 40px;
    border: 1px solid var(--accent);
    color: var(--text);
    background: rgba(255, 184, 0, 0.05);
}

.line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

/* 📱 Simulator Styles */
.simulator-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 40px;
}

.phone-frame {
    width: 350px;
    height: 600px;
    background: #000;
    border: 8px solid #1a1a1a;
    border-radius: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}

.phone-header {
    background: #111;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    margin-bottom: 10px;
    opacity: 0.5;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 35px;
    height: 35px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
}

.details h3 { font-size: 14px; margin: 0; }
.details p { font-size: 10px; color: var(--lima); margin: 0; }

.chat-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #0a0a0a;
}

.msg {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 13px;
    line-height: 1.4;
}

.msg.user {
    align-self: flex-end;
    background: var(--accent);
    color: #000;
    border-bottom-right-radius: 2px;
}

.msg.bot {
    align-self: flex-start;
    background: #222;
    border-bottom-left-radius: 2px;
}

/* 🎙️ Audio Message Style */
.msg.audio {
    background: #1a1a1a;
    border-left: 3px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
}

.audio-icon { font-size: 20px; }
.audio-waves {
    flex: 1;
    height: 15px;
    background: repeating-linear-gradient(90deg, var(--accent) 0 2px, transparent 2px 4px);
    opacity: 0.5;
}

/* 💰 Budget Card Style */
.budget-card {
    background: #fff;
    color: #000;
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    align-self: flex-start;
    max-width: 90%;
}

.budget-header {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #666;
}

.budget-body h4 { font-size: 14px; margin-bottom: 5px; }
.budget-body p { font-size: 12px; color: #444; margin-bottom: 10px; line-height: 1.2; }
.budget-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 15px;
}

.btn-approve {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-approve:hover { background: var(--lima); color: #000; }

.msg.system {
    align-self: center;
    background: transparent;
    color: var(--subtext);
    font-family: 'Fira Code', monospace;
    font-size: 10px;
    text-align: center;
    max-width: 100%;
}

.phone-footer {
    padding: 20px;
    background: #111;
    display: flex;
    gap: 10px;
}

.phone-footer input {
    flex: 1;
    background: #222;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
}

.phone-footer button {
    background: var(--accent);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sim-info h3 { font-size: 32px; margin-bottom: 20px; font-weight: 900; }
.sim-info p { font-size: 18px; color: var(--subtext); margin-bottom: 30px; }

.sim-commands {
    list-style: none;
}

.sim-commands li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 16px;
}

.sim-commands li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.sim-commands strong { color: var(--accent); font-family: 'Fira Code', monospace; }

@media (max-width: 900px) {
    .simulator-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .phone-frame { margin: 0 auto; }
}

footer {
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--subtext);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
