/* ============================================
   CONSULT LANDING PAGE - Terminal Aesthetic
   ============================================ */

:root {
    --bg: #0a0a0a;
    --bg-dark: #050505;
    --bg-terminal: #0d1117;
    --fg: #f0f0f0;
    --fg-dim: #a0a0a0;
    --fg-muted: #707070;
    --green: #4ade80;
    --green-bright: #22c55e;
    --yellow: #fbbf24;
    --red: #f87171;
    --cyan: #22d3ee;
    --purple: #a78bfa;
    --accent: #4ade80;
    --border: #3f3f46;
    --border-bright: #52525b;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-mono);
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    font-size: 14px;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.terminal-window {
    background: var(--bg-terminal);
    border: 1px solid var(--border);
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    overflow: hidden;
}

.terminal-header {
    background: #1a1a1a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27ca40; }

.terminal-title {
    margin-left: 12px;
    color: var(--fg-dim);
    font-size: 13px;
}

.terminal-body {
    padding: 40px;
}

.hero h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 24px;
    line-height: 1.3;
}

.hero-subtitle {
    color: var(--fg);
    margin-bottom: 20px;
    font-size: 15px;
}

.hero-highlight {
    color: var(--fg-dim);
    margin-bottom: 32px;
    font-size: 15px;
}

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

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-mono);
    font-size: 14px;
    text-decoration: none;
    border: 1px solid;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--green);
    color: var(--bg);
    border-color: var(--green);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--bg);
    color: var(--green);
}

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

.btn-secondary:hover {
    border-color: var(--green);
    color: var(--green);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 80px 20px;
}

.section-dark {
    background: var(--bg-dark);
}

.section-title {
    font-size: 24px;
    color: var(--green);
    margin-bottom: 16px;
    font-weight: 600;
}

.section-title::before {
    content: '## ';
    color: var(--fg-dim);
}

.section-title a {
    color: inherit;
    text-decoration: none;
    position: relative;
}

.section-title a::after {
    content: ' #';
    opacity: 0;
    color: var(--fg-dim);
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.section-title a:hover::after {
    opacity: 1;
}

.section-title a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.section-intro {
    color: var(--fg-dim);
    margin-bottom: 32px;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg-dark);
    border-left: 2px solid var(--red);
}

.problem-icon {
    color: var(--red);
    font-size: 16px;
}

.problem-item p {
    color: var(--fg-dim);
}

.problem-summary {
    color: var(--fg);
    max-width: 700px;
}

/* ============================================
   WORKFLOW DIAGRAM
   ============================================ */

.workflow-container {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    max-width: 700px;
}

.workflow-header {
    text-align: center;
    color: var(--fg);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.workflow-step {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.workflow-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 28px;
    height: 28px;
    background: var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fg);
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    color: var(--fg);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.step-desc {
    color: var(--fg-dim);
    font-size: 13px;
    line-height: 1.5;
}

.step-quote {
    color: var(--green);
    font-size: 13px;
    margin-top: 6px;
    font-style: italic;
}

/* Agent boxes */
.agent-boxes {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.agent-box {
    padding: 10px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--cyan);
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
}

.agent-note {
    color: var(--fg-dim);
    font-size: 12px;
    line-height: 1.4;
    margin-left: 8px;
}

/* Outcomes */
.step-outcomes {
    margin-top: 10px;
}

.outcome {
    font-size: 13px;
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
}

.outcome::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--fg-dim);
}

.outcome.success {
    color: var(--fg-dim);
}

.outcome.success span {
    color: var(--green);
    font-weight: 500;
}

.outcome.iterate {
    color: var(--fg-dim);
}

/* ============================================
   WHY THIS WORKS
   ============================================ */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.why-item {
    padding: 24px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.why-item h3 {
    color: var(--cyan);
    font-size: 15px;
    margin-bottom: 12px;
}

.why-item p {
    color: var(--fg-dim);
    font-size: 13px;
    line-height: 1.6;
}

/* ============================================
   CONSENSUS MATH
   ============================================ */

.code-block {
    font-size: 13px;
    line-height: 1.5;
    background: var(--bg-terminal);
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow-x: auto;
    white-space: pre;
}

.code-block .dim { color: var(--fg-dim); }
.code-block .green { color: var(--green); }
.code-block .yellow { color: var(--yellow); }
.code-block .red { color: var(--red); }
.code-block .prompt { color: var(--green); }

.math-example {
    margin-bottom: 32px;
}

.verdicts {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.verdict {
    display: flex;
    align-items: center;
    gap: 8px;
}

.verdict-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
}

.verdict-icon.green { color: var(--green); }
.verdict-icon.yellow { color: var(--yellow); }
.verdict-icon.red { color: var(--red); }

.verdict-label {
    font-weight: 600;
}

.verdict-desc {
    color: var(--fg-dim);
}

.scoring-breakdown {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.scoring-breakdown h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--fg-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
}

.scoring-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scoring-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-num {
    width: 28px;
    height: 28px;
    background: rgba(34, 211, 238, 0.15);
    color: var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.step-detail strong {
    color: var(--fg);
    font-size: 15px;
}

.dim-list {
    color: var(--fg-dim);
    font-size: 13px;
}

/* ============================================
   TUI SHOWCASE
   ============================================ */

.tui-showcase {
    margin-bottom: 32px;
}

/* Layout */
.tui-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.5;
}

/* Sidebar */
.tui-sidebar {
    background: var(--bg-dark);
    padding: 16px;
    border-right: 1px solid var(--border);
}

.tui-section-header {
    color: var(--green);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.tui-label {
    color: var(--fg);
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 4px;
    font-size: 11px;
    letter-spacing: 0.3px;
}

.tui-value {
    color: var(--cyan);
    font-size: 13px;
}

.tui-hint {
    color: var(--fg-dim);
    font-size: 12px;
}

.tui-file {
    color: var(--purple);
    font-size: 13px;
}

.tui-keys {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    color: var(--fg-dim);
    font-size: 11px;
    line-height: 1.8;
}

.tui-keys span {
    color: var(--yellow);
    font-weight: 500;
}

/* Main panel */
.tui-main {
    padding: 16px 20px;
}

.tui-title {
    color: var(--fg);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Phases */
.tui-phase {
    margin-bottom: 16px;
}

.tui-phase.pending {
    color: var(--fg-dim);
    margin-bottom: 4px;
    font-size: 12px;
}

.tui-phase-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.tui-bullet {
    font-size: 10px;
}

.tui-bullet.complete { color: var(--green); }
.tui-bullet.progress { color: var(--yellow); }

.tui-phase-name {
    color: var(--fg);
    font-weight: 500;
}

.tui-status {
    margin-left: auto;
    font-size: 11px;
    font-weight: 500;
}

.tui-status.complete { color: var(--green); }
.tui-status.progress { color: var(--yellow); }

/* Agent cards */
.tui-agent {
    padding-left: 18px;
    margin-bottom: 2px;
}

.tui-agent-name {
    color: var(--cyan);
}

.tui-done {
    color: var(--green);
    margin-left: 8px;
    font-size: 12px;
}

.tui-response {
    padding-left: 18px;
    color: var(--fg-dim);
    font-size: 12px;
    margin-bottom: 8px;
}

/* Reviews */
.tui-review {
    padding-left: 18px;
    margin-bottom: 4px;
    color: var(--fg-dim);
}

.tui-approve { color: var(--green); font-weight: 500; }
.tui-concerns { color: var(--yellow); font-weight: 500; }
.tui-object { color: var(--red); font-weight: 500; }

/* Activity log */
.tui-log {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.tui-log-header {
    color: var(--green);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.tui-log-line {
    font-size: 12px;
    color: var(--fg-dim);
    margin-bottom: 2px;
}

.tui-time {
    color: var(--fg-muted);
    margin-right: 8px;
}

/* Input */
.tui-input {
    margin-top: 16px;
    padding: 12px;
    background: var(--bg-dark);
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tui-send {
    color: var(--cyan);
    font-weight: 500;
}

/* Feature cards */
.tui-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
}

.tui-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.tui-feature-key {
    display: inline-block;
    min-width: 36px;
    padding: 4px 8px;
    background: var(--border);
    border-radius: 3px;
    font-weight: 600;
    color: var(--yellow);
    text-align: center;
    font-size: 12px;
}

.tui-feature-desc {
    color: var(--fg-dim);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .tui-layout {
        grid-template-columns: 1fr;
    }

    .tui-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

/* ============================================
   CAPABILITIES SECTION
   ============================================ */

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
}

.capability {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
}

.capability-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.capability-icon {
    font-size: 20px;
    line-height: 1;
}

.capability-header h3 {
    color: var(--fg);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.capability p {
    color: var(--fg-dim);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 14px 0;
}

.capability code {
    background: var(--bg-dark);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    color: var(--cyan);
}

.capability-usage {
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.capability-usage code {
    background: none;
    padding: 0;
    color: var(--fg-muted);
    font-size: 12px;
}

/* ============================================
   CLI EXAMPLES
   ============================================ */

.examples-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.example-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.example-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #1a1a1a;
    border-bottom: 1px solid var(--border);
}

.example-label {
    color: var(--fg);
    font-size: 14px;
    font-weight: 500;
}

.example-agents {
    color: var(--fg-dim);
    font-size: 12px;
}

.example-item .code-block {
    border: none;
    border-radius: 0;
    margin: 0;
    overflow-x: auto;
}

/* ============================================
   EXPERTS SECTION
   ============================================ */

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin-bottom: 48px;
}

.expert {
    padding: 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.expert-name {
    display: block;
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 4px;
}

.expert-focus {
    color: var(--fg-dim);
    font-size: 12px;
}

.expert-sets h3 {
    color: var(--fg);
    font-size: 16px;
    margin-bottom: 8px;
}

.sets-intro {
    color: var(--fg-dim);
    font-size: 13px;
    margin-bottom: 20px;
}

.sets-intro code {
    background: var(--bg-dark);
    padding: 2px 6px;
    border-radius: 3px;
    color: var(--cyan);
    font-size: 12px;
}

.sets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.set-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
}

.set-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.set-name {
    color: var(--yellow);
    font-weight: 600;
    font-size: 14px;
}

.set-desc {
    color: var(--fg-dim);
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.set-agents {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.agent-tag {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    color: var(--cyan);
}

.set-tier {
    padding: 3px 10px;
    background: var(--cyan);
    border-radius: 3px;
    font-size: 11px;
    color: var(--bg);
    font-weight: 500;
}

.set-tier.free {
    background: var(--border);
    color: var(--fg-dim);
}

/* ============================================
   SECURITY SECTION
   ============================================ */

.security-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
}

.security-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px;
}

.security-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.security-icon {
    color: var(--green);
    font-size: 10px;
    margin-top: 5px;
}

.security-header h3 {
    color: var(--fg);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.security-detail p {
    color: var(--fg-dim);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.security-detail p:last-child {
    margin-bottom: 0;
}

.security-detail code {
    background: var(--bg-dark);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    color: var(--cyan);
}

.security-verify {
    color: var(--fg-muted) !important;
    font-size: 12px !important;
    border-top: 1px solid var(--border);
    padding-top: 10px;
    margin-top: 12px !important;
}

/* ============================================
   WHEN TO USE SECTION (Decision Flow)
   ============================================ */

.decision-flow {
    max-width: 600px;
    margin: 0 auto 48px;
    position: relative;
}

.flow-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.flow-number {
    width: 32px;
    height: 32px;
    background: var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--fg);
    flex-shrink: 0;
}

.flow-content {
    flex: 1;
    padding-bottom: 8px;
}

.flow-question {
    font-size: 14px;
    color: var(--fg);
    margin-bottom: 12px;
    line-height: 1.5;
}

.flow-answer {
    font-size: 13px;
    padding: 6px 0;
}

.flow-answer.yes {
    color: var(--green);
}

.flow-answer.no {
    color: var(--fg-dim);
}

.flow-verdict {
    font-weight: 400;
}

.flow-verdict.use {
    color: var(--green);
}

.flow-verdict.skip {
    color: var(--fg-dim);
}

.flow-continue {
    color: var(--fg-muted);
}

.flow-connector {
    width: 2px;
    height: 24px;
    background: var(--border);
    margin-left: 15px;
    margin-bottom: 8px;
}

/* Example Cards */
.examples-title {
    text-align: center;
    font-size: 16px;
    color: var(--fg);
    margin-bottom: 12px;
}

.examples-intro {
    text-align: center;
    font-size: 14px;
    color: var(--fg-dim);
    margin-bottom: 32px;
}

.example-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.example-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px;
}

.example-card.use {
    border-left: 3px solid var(--green);
}

.example-card.skip {
    border-left: 3px solid var(--border);
    opacity: 0.7;
}

.example-card-header {
    margin-bottom: 12px;
}

.example-badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 3px;
}

.example-badge.use {
    background: var(--green);
    color: var(--bg);
}

.example-badge.skip {
    background: var(--border);
    color: var(--fg-dim);
}

.example-section {
    margin-bottom: 16px;
}

.example-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fg-muted);
    margin-bottom: 8px;
}

.example-query {
    font-size: 13px;
    color: var(--fg);
    background: var(--bg-dark);
    padding: 10px 12px;
    border-radius: 4px;
    line-height: 1.5;
}

.example-conflicts {
    margin-bottom: 12px;
}

.conflict {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 6px 0;
}

.conflict-agent {
    font-size: 11px;
    font-weight: 600;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    flex-shrink: 0;
    width: 60px;
}

.conflict-says {
    font-size: 13px;
    color: var(--fg);
}

.conflict-catches {
    font-size: 13px;
    color: var(--yellow);
}

.example-insight {
    font-size: 12px;
    color: var(--fg-dim);
    border-top: 1px solid var(--border);
    padding-top: 12px;
    line-height: 1.5;
}

.example-reason {
    font-size: 13px;
    color: var(--fg-dim);
    line-height: 1.5;
}

.example-reason code {
    background: var(--bg-dark);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    color: var(--cyan);
}

/* Skip Section - Contained chips */
.skip-section {
    margin-top: 48px;
    text-align: center;
}

.skip-header {
    font-size: 12px;
    color: var(--fg-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.skip-chips {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.skip-chip {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 12px 16px;
    text-align: left;
    min-width: 200px;
}

.skip-type {
    display: block;
    font-size: 12px;
    color: var(--fg-dim);
    margin-bottom: 4px;
}

.skip-example {
    font-size: 11px;
    color: var(--fg-muted);
}

@media (max-width: 768px) {
    .example-cards {
        grid-template-columns: 1fr;
    }

    .skip-item {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .conflict {
        flex-direction: column;
        gap: 2px;
    }

    .conflict-agent {
        width: auto;
    }

    .conflict-vs {
        padding-left: 0;
    }
}

/* ============================================
   LIMITATIONS SECTION
   ============================================ */

.limitations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.limitation {
    padding: 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.limitation-icon {
    display: block;
    color: var(--yellow);
    font-size: 20px;
    margin-bottom: 12px;
}

.limitation h3 {
    color: var(--fg);
    font-size: 15px;
    margin-bottom: 8px;
}

.limitation p {
    color: var(--fg-dim);
    font-size: 13px;
}

.limitation a {
    color: var(--cyan);
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 280px);
    gap: 20px;
    justify-content: center;
}

.pricing-card {
    padding: 24px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
}

.pricing-card.featured {
    border-color: var(--green);
    position: relative;
}

.pricing-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--bg);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 3px;
}

.pricing-tier {
    font-size: 18px;
    color: var(--fg);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 16px;
}

.pricing-period {
    font-size: 14px;
    color: var(--fg-dim);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    text-align: left;
}

.pricing-features li {
    padding: 6px 0;
    color: var(--fg-dim);
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.pricing-features li::before {
    content: '✓ ';
    color: var(--green);
}

.pricing-card .btn,
.pricing-card button.btn {
    width: 100%;
    cursor: pointer;
}

.pricing-savings {
    font-size: 12px;
    color: var(--green);
    margin-top: -8px;
    margin-bottom: 16px;
    font-weight: 500;
}

/* ============================================
   INSTALLATION SECTION
   ============================================ */

.install-steps {
    margin-bottom: 24px;
}

.install-note {
    color: var(--fg-dim);
    font-size: 13px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 48px 20px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand .logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
}

.footer-brand p {
    color: var(--fg-dim);
    margin-top: 8px;
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--fg-dim);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-credits {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-credits p {
    color: var(--fg-dim);
    font-size: 12px;
}

.footer-credits a {
    color: var(--cyan);
    text-decoration: none;
}

.copyright {
    color: var(--fg-dim);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 22px;
    }

    .terminal-body {
        padding: 24px;
    }

    .section {
        padding: 48px 16px;
    }

    .section-title {
        font-size: 20px;
    }

    .example-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .ascii-art {
        font-size: 10px;
        padding: 16px;
    }

    .code-block {
        font-size: 11px;
        padding: 16px;
    }

    .verdicts {
        flex-direction: column;
        gap: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 18px;
    }

    .hero-subtitle,
    .hero-highlight {
        font-size: 13px;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

}

/* ============================================
   CURSOR BLINK (optional flair)
   ============================================ */

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

.cursor {
    display: inline-block;
    width: 10px;
    height: 18px;
    background: var(--green);
    animation: blink 1s infinite;
    vertical-align: middle;
    margin-left: 2px;
}
