/* Apistogramma landing page — ORA brand */
:root {
    --ora-blue: #004B87;
    --ora-teal: #00838F;
    --ora-light: #f5f7fa;
    --ora-border: #dde1e6;
    --ora-text: #1a1a2e;
    --ora-muted: #697077;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--ora-text);
    background: var(--ora-light);
    line-height: 1.6;
}

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 24px;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 3px solid var(--ora-blue);
}

header h1 {
    font-size: 2.2em;
    color: var(--ora-blue);
    margin-bottom: 4px;
}

.subtitle {
    font-size: 1.1em;
    color: var(--ora-muted);
}

section {
    background: #fff;
    border: 1px solid var(--ora-border);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.3em;
    color: var(--ora-blue);
    margin-bottom: 12px;
}

ol, ul { padding-left: 24px; }
li { margin-bottom: 6px; }

pre {
    background: #1a1a2e;
    color: #e8e8e8;
    padding: 16px;
    border-radius: 6px;
    overflow-x: auto;
    font-size: 0.9em;
    line-height: 1.5;
    margin-top: 8px;
}

code {
    font-family: "SF Mono", "Fira Code", "Consolas", monospace;
    font-size: 0.9em;
}

p code {
    background: #edf0f4;
    padding: 2px 6px;
    border-radius: 3px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

th, td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid var(--ora-border);
}

th {
    background: var(--ora-light);
    font-weight: 600;
    font-size: 0.9em;
    color: var(--ora-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: 700;
    font-family: monospace;
}

.method.get { background: #e3f2fd; color: #1565c0; }
.method.post { background: #e8f5e9; color: #2e7d32; }

a { color: var(--ora-teal); text-decoration: none; }
a:hover { text-decoration: underline; }

footer {
    text-align: center;
    padding-top: 24px;
    color: var(--ora-muted);
    font-size: 0.9em;
}
