.ops-main {
    background: var(--ops-bg);
    min-height: 100vh;
    padding: 0;
}
.unlock-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 20px 10px;
}
.unlock-hero.hidden {
    display: none;
}
.unlock-container {
    max-width: 600px;
    text-align: center;
    background: var(--ops-surface);
    border-radius: var(--tile-radius);
    padding: 40px 30px;
    box-shadow: var(--tile-shadow);
    border: 1px solid var(--ops-border);
}
.unlock-icon-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ops-surface-alt) 0%, var(--ops-border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    border: 3px solid var(--ops-border);
}
.unlock-icon-ring i {
    font-size: 2.5rem;
    color: var(--ops-text-muted);
}
.unlock-title {
    font-size: 2rem;
    color: var(--ops-text);
    margin: 0 0 20px 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.unlock-description {
    font-size: 1.1rem;
    color: var(--ops-text-muted);
    line-height: 1.7;
    margin: 0 0 35px 0;
}
.unlock-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.unlock-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.unlock-feature i {
    font-size: 1.5rem;
    color: var(--ops-accent);
}
.unlock-feature span {
    font-size: 0.85rem;
    color: var(--ops-text-muted);
    font-weight: 600;
}
.unlock-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--ops-surface-alt);
    border-radius: var(--radius-full);
    border: 2px dashed var(--ops-accent);
}
.unlock-cta i {
    color: var(--ops-accent);
    font-size: 1.2rem;
    animation: bounce-up 1.5s ease-in-out infinite;
}
.unlock-cta span {
    font-size: 0.95rem;
    color: var(--ops-text);
    font-weight: 600;
}
@keyframes bounce-up {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.unlock-highlight {
    display: block;
    color: var(--ops-accent);
    font-weight: 700;
    margin-bottom: 8px;
}
.flight-deck {
    display: none;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}
.flight-deck.active {
    display: block;
}
.deck-header {
    text-align: center;
    margin-bottom: 30px;
}
.deck-title-group {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.deck-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}
.deck-title i {
    color: var(--ops-accent);
}
.deck-subtitle {
    display: block;
    width: 100%;
    max-width: 850px;
    margin: 15px auto 20px auto;
    font-size: 1.15rem;
    line-height: 1.6;
    text-wrap: balance;
    color: var(--text-secondary);
}
.settings-drawer {
    background: var(--ops-text);
    border-radius: var(--tile-radius);
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    z-index: 100;
}
.settings-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: var(--ops-accent);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}
.settings-toggle:hover {
    background: rgba(255,255,255,0.05);
}
.settings-toggle span {
    flex: 1;
    text-align: left;
    margin-left: 12px;
}
.settings-chevron {
    transition: transform 0.3s ease;
}
.settings-toggle[aria-expanded="true"] .settings-chevron {
    transform: rotate(180deg);
}
.settings-panel {
    display: none;
    padding: 0 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.settings-panel.active {
    display: block;
}
.settings-loading input,
.settings-loading select {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding-top: 20px;
}
.setting-control {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.setting-control label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.setting-control input[type="range"] {
    width: 100%;
    accent-color: var(--ops-accent);
    height: 6px;
    border-radius: 3px;
}
.setting-control select {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    cursor: pointer;
}
.setting-control select:focus {
    border-color: var(--ops-accent);
    outline: none;
}
.setting-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}
.setting-current {
    color: var(--ops-accent);
    font-weight: 700;
}
.setting-default {
    color: rgba(255,255,255,0.4);
}
.setting-hint {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 4px 0 0 0;
    display: block;
}
.setting-effective {
    font-size: 0.75rem;
    color: var(--ops-accent);
    font-weight: 700;
    margin: 6px 0 0 0;
    display: block;
    min-height: 1em;
}
.season-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.chapter-time {
    font-size: 0.8rem;
    color: var(--ops-text-light);
    margin-left: auto;
    font-weight: 600;
}
.bento-grid {
    display: grid;
    gap: 20px;
}
.bento-dawn { grid-template-columns: 1fr; }
.bento-day { grid-template-columns: repeat(2, 1fr); }
.bento-dusk { grid-template-columns: 1fr; }
.bento-alerts { grid-template-columns: repeat(2, 1fr); }
.bento-tile {
    background: var(--ops-surface);
    border-radius: var(--tile-radius);
    box-shadow: var(--tile-shadow);
    border: 1px solid var(--ops-border);
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    min-height: 220px;
}
.bento-tile:hover {
    box-shadow: var(--tile-shadow-hover);
    transform: translateY(-2px);
}
.bento-tile:focus {
    outline: 3px solid var(--ops-accent);
    outline-offset: 2px;
}
.tile-front {
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}
.tile-back {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.3s ease;
    padding: 0 24px;
    background: var(--ops-text);
    color: white;
    border-radius: 0 0 var(--tile-radius) var(--tile-radius);
}
.bento-tile.expanded .tile-back {
    max-height: 800px;
    padding: 24px;
}
.bento-tile.expanded {
    transform: none;
    grid-column: 1 / -1;
}
.bento-tile.expanded:hover {
    transform: none;
}
.tile-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}
.tile-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    background: var(--ops-surface-alt);
    color: var(--ops-text-muted);
    border: 1px solid var(--ops-border);
}
.tile-icon-compass {
    background: rgba(244, 180, 26, 0.1);
    color: var(--ops-accent);
    border-color: rgba(244, 180, 26, 0.3);
}
.tile-icon-foraging {
    background: rgba(230, 126, 34, 0.1);
    color: #e67e22;
    border-color: rgba(230, 126, 34, 0.3);
}
.tile-icon-inspection {
    background: rgba(46, 125, 50, 0.1);
    color: var(--status-optimal);
    border-color: rgba(46, 125, 50, 0.3);
}
.tile-icon-curing {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border-color: rgba(39, 174, 96, 0.3);
}
.tile-icon-swarm {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
    border-color: rgba(155, 89, 182, 0.3);
}
.tile-icon-robbing {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.3);
}
.tile-meta {
    flex: 1;
}
.tile-question {
    display: block;
    font-size: 0.85rem;
    color: var(--ops-text-muted);
    font-style: normal;
    font-weight: 600;
    margin-bottom: 6px;
    opacity: 1;
}
.tile-name {
    font-size: 1.1rem;
    color: var(--ops-text);
    margin: 0;
    font-weight: 700;
}
.tile-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tile-status {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--status-neutral);
    margin-bottom: 4px;
}
.tile-substatus {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ops-text-muted);
    margin-bottom: 12px;
}
.tile-impact {
    font-size: 0.9rem;
    color: var(--ops-text-muted);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.tile-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--ops-border);
}
.tile-tip {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ops-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.tile-expand-hint {
    font-size: 0.75rem;
    color: var(--ops-text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}
.tile-science-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.tile-science-header i {
    font-size: 1.2rem;
    color: var(--ops-accent);
}
.tile-science-header span {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tile-science-body {
    flex: 1;
    overflow-y: auto;
}
.tile-science-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin: 0 0 16px 0;
}
.tile-science-body p:last-child {
    margin-bottom: 0;
}
.tile-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    margin-top: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}
.tile-close-btn:hover {
    background: rgba(255,255,255,0.2);
}
.chapter-alerts .bento-tile {
    opacity: 0.7;
    transition: opacity 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.chapter-alerts .bento-tile.expanded {
    opacity: 1;
}
.chapter-alerts .bento-tile.alert-elevated {
    opacity: 1;
    border-color: var(--status-warning);
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.15);
}
.chapter-alerts .bento-tile.alert-high {
    opacity: 1;
    border-color: var(--status-danger);
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.2);
}
.storyboard {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.story-chapter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.chapter-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.chapter-icon {
    font-size: 1.3rem;
}
.chapter-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ops-text);
    margin: 0;
}
.action-plan {
    background: var(--ops-surface);
    border-radius: var(--tile-radius);
    box-shadow: var(--tile-shadow);
    border: 1px solid var(--ops-border);
    padding: 24px;
    margin-bottom: 30px;
}
.action-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.action-header i {
    font-size: 1.3rem;
    color: var(--ops-accent);
}
.action-header h2 {
    font-size: 1.1rem;
    color: var(--ops-text);
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
}
.action-content {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--ops-text-muted);
}
.nav-kp-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(244,180,26,0.15);
    color: var(--honey-gold);
    border: 1px solid rgba(244,180,26,0.3);
    white-space: nowrap;
}
.podcast-container {
    max-width: 800px;
    margin: 10px auto;
    padding: 0 15px;
}
.podcast-card {
    background: var(--ops-surface);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: var(--shadow-sm);
}
.podcast-header {
    margin-bottom: 8px;
}
.podcast-title {
    font-size: 0.95rem;
    color: var(--earth-brown);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.podcast-description {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.35;
    margin-bottom: 0;
}
.podcast-player-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}
.spotify-wrapper {
    flex: 1;
    min-width: 0;
}
.transcript-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    text-decoration: none;
    color: var(--forest-green);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.transcript-download-btn:hover {
    background: var(--bg-cream-warm);
    border-color: var(--forest-green);
}
@media (max-width: 600px) {
    .podcast-player-row {
        flex-direction: column;
        align-items: stretch;
    }
}
@media (max-width: 1024px) {
    .bento-day {
        grid-template-columns: 1fr;
    }
    .bento-alerts {
        grid-template-columns: 1fr;
    }
}
.score-hub {
    margin: 16px -24px 0 -24px;
    padding: 16px 24px;
    border-top: 1px solid var(--ops-border);
}
.score-hub-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.score-hub-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2.5px solid var(--score-color, var(--honey-gold));
    box-shadow: 0 0 0 4px var(--score-glow, rgba(244,180,26,0.12));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--ops-surface);
    flex-shrink: 0;
}
.score-hub-value {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    color: var(--score-color, var(--honey-gold));
}
.score-hub-scale {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--ops-text-muted);
    margin-top: 1px;
}
.score-hub-context {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.score-hub-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--score-color, var(--honey-gold));
    line-height: 1;
}
.score-hub-summary {
    font-size: 0.84rem;
    color: var(--ops-text);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.score-hub-meta {
    font-size: 0.74rem;
    color: var(--ops-text-muted);
    line-height: 1.3;
}
.score-hub-tray {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.score-hub-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 7px 10px;
    min-height: 36px;
    background: transparent;
    border: 1px solid var(--ops-border);
    border-radius: var(--radius-md);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ops-text-muted);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.score-hub-action:hover {
    background: var(--ops-surface-alt);
    border-color: var(--ops-text-muted);
    color: var(--ops-text);
}
.score-hub-action i {
    font-size: 0.9rem;
    flex-shrink: 0;
}
.score-hub-reddit:hover {
    border-color: #ff4500;
    color: #ff4500;
    background: rgba(255,69,0,0.04);
}
.scientific-basis {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}
.scientific-basis h2 {
    font-size: 1.3rem;
    color: var(--earth-brown);
    margin-bottom: 10px;
    border-bottom: 3px solid var(--honey-gold);
    padding-bottom: 10px;
}
.scientific-basis > p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-secondary);
}
.reference-list {
    display: grid;
    gap: 0;
    border: 1px solid #e2ddd6;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.reference-list dt {
    background: #f8f4ee;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--earth-brown);
    border-bottom: 1px solid #e2ddd6;
}
.reference-list dd {
    padding: 14px 16px;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-secondary);
    border-bottom: 1px solid #e2ddd6;
}
.reference-list dd:last-child {
    border-bottom: none;
}
.action-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.action-item {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    line-height: 1.7;
    border-left: 4px solid transparent;
}
.action-item-priority {
    background: rgba(211,47,47,0.06);
    border-left-color: #d32f2f;
    color: var(--text-primary);
}
.action-item-secondary {
    background: rgba(244,180,26,0.07);
    border-left-color: var(--honey-gold);
    color: var(--text-primary);
}
.action-section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #5d4037;
    font-weight: 700;
    margin: 0 0 8px 0;
    padding-top: 12px;
}
.action-clear {
    color: var(--text-secondary);
    line-height: 1.7;
}
.breed-hint-link {
    color: var(--ops-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    font-weight: 700;
}
.breed-hint-link:hover {
    color: #ffd700;
}
.breed-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.breed-modal-overlay.active {
    opacity: 1;
}
.breed-modal {
    background: #fff;
    border-radius: 16px 16px 0 0;
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.25s ease;
    padding-bottom: env(safe-area-inset-bottom);
}
.breed-modal-overlay.active .breed-modal {
    transform: translateY(0);
}
.breed-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 12px 20px;
    border-bottom: 1px solid #e2ddd6;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}
.breed-modal-header h3 {
    font-size: 1.1rem;
    color: var(--earth-brown);
    margin: 0;
}
.breed-modal-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0ebe3;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--earth-brown);
}
.breed-modal-body {
    display: grid;
    gap: 0;
    padding: 0;
}
.breed-modal-body dt {
    background: #f8f4ee;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--earth-brown);
    border-bottom: 1px solid #e2ddd6;
}
.breed-modal-body dd {
    padding: 12px 20px;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-secondary);
    border-bottom: 1px solid #e2ddd6;
}
.install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1b3022;
    color: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    z-index: 999;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
}
.install-banner p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    min-width: 200px;
}
.install-dismiss-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    cursor: pointer;
    min-height: 44px;
}
.install-accept-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    min-height: 44px;
    background: var(--honey-gold);
    color: #1b3022;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}
.install-accept-btn:hover {
    background: #e0a517;
}
@media (max-width: 480px) {
    .score-hub-summary {
        white-space: normal;
    }
    .breed-modal {
        max-height: 90vh;
    }
    .install-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .install-banner p {
        min-width: unset;
    }
}
@media (min-width: 768px) {
    .breed-modal {
        border-radius: 16px;
        margin: auto;
        align-self: center;
    }
    .breed-modal-overlay {
        align-items: center;
    }
}
.affiliate-section {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}
.affiliate-heading {
    font-size: 1.3rem;
    color: var(--earth-brown);
    margin-bottom: 10px;
    border-bottom: 3px solid var(--honey-gold);
    padding-bottom: 10px;
}
.affiliate-intro {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px;
    color: var(--text-secondary);
}
.affiliate-intro a {
    color: var(--earth-brown);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.affiliate-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--ops-surface);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.affiliate-card-gold {
    border-left: 4px solid var(--honey-gold);
}
.affiliate-card-green {
    border-left: 4px solid var(--forest-green);
}
.affiliate-card-purple {
    border-left: 4px solid #7c3aed;
}
.affiliate-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}
.affiliate-cta-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.88rem;
    font-weight: 600;
}
.affiliate-cta-gold {
    color: var(--honey-gold);
}
.affiliate-cta-green {
    color: var(--forest-green);
}
.affiliate-cta-purple {
    color: #7c3aed;
}
.affiliate-disclosure {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 20px;
    line-height: 1.6;
}
.affiliate-disclosure-link {
    color: var(--text-muted);
    text-decoration: underline;
}
.apiary-tools-nav {
    max-width: 900px;
    margin: 0 auto 48px auto;
    padding: 0 20px;
}
.apiary-tools-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
.apiary-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}
.apiary-tool-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e2ddd6;
    border-radius: 8px;
    text-decoration: none;
    color: #1b3022;
    font-weight: 600;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.apiary-tool-link:hover {
    border-color: var(--honey-gold);
    box-shadow: 0 2px 8px rgba(244,180,26,0.15);
}
.apiary-tool-current {
    background: #fdfbf7;
    border-color: var(--honey-gold);
    cursor: default;
}
.apiary-tool-icon {
    font-size: 1.4rem;
    color: var(--honey-gold);
}
.action-plan.flash {
    box-shadow: 0 8px 32px rgba(244, 180, 26, 0.3);
    transform: translateY(-2px);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
