:root {
    --base03: #002b36;
    --base02: #073642;
    --base01: #586e75;
    --base0:  #839496;
    --base1:  #93a1a1;
    --cyan:   #2aa198;
    --blue:   #268bd2;
    --green:  #859900;
    --yellow: #b58900;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--base03);
    color: var(--base0);
    min-height: 100vh;
    line-height: 1.6;
}
.container { max-width: 720px; margin: 0 auto; padding: 0 20px 40px; }

/* Header */
.site-header {
    text-align: center;
    padding: 24px 20px 16px;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}
.header-icon { flex-shrink: 0; }
.header-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--base1);
    letter-spacing: -0.5px;
}
.header-tagline {
    font-size: 13px;
    color: var(--base01);
    margin-top: 6px;
}
.site-nav {
    display: flex;
    gap: 16px;
}
.site-nav a {
    color: var(--base01);
    text-decoration: none;
    font-size: 14px;
    padding: 2px 0;
}
.site-nav a:hover { color: var(--base0); }
.site-nav a.active {
    color: var(--cyan);
    border-bottom: 2px solid var(--cyan);
}

/* Sections */
.section { margin-bottom: 32px; }
.section h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--base1);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--base02);
}
.section p { font-size: 14px; margin-bottom: 10px; }
.section a { color: var(--cyan); text-decoration: none; }
.section a:hover { text-decoration: underline; }

/* Repeater card */
.repeater-card {
    background: var(--base02);
    border-radius: 8px;
    padding: 18px 22px;
    margin: 12px 0;
    border-left: 3px solid var(--cyan);
}
.repeater-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 10px;
}
.repeater-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}
@media (max-width: 480px) { .repeater-grid { grid-template-columns: 1fr; } }
.repeater-field { font-size: 13px; }
.repeater-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--base01);
}
.repeater-value {
    color: var(--base1);
    font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
    font-size: 14px;
}

/* Callout */
.callout {
    background: var(--base02);
    border-radius: 8px;
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 14px;
    border-left: 3px solid var(--green);
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: var(--base01);
    border-top: 1px solid var(--base02);
    margin-top: 20px;
}
.site-footer a { color: var(--base01); text-decoration: none; }
.site-footer a:hover { color: var(--base0); }
