/* ═══════════════════════════════════════════════════════════
   MOWCAST v2 — Tron/Linear Design System
   ═══════════════════════════════════════════════════════════ */


:root {
    --bg: #06080f;
    --surface: #0b0f1a;
    --border: rgba(0, 240, 255, 0.08);
    --border-hover: rgba(0, 240, 255, 0.25);
    --cyan: #00f0ff;
    --cyan-dim: rgba(0, 240, 255, 0.6);
    --cyan-glow: rgba(0, 240, 255, 0.15);
    --green: #00ff88;
    --amber: #ffb800;
    --red: #ff3366;
    --text: rgba(255, 255, 255, 0.9);
    --text-dim: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --font-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Grid background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Radial vignette */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, transparent 0%, var(--bg) 100%);
    pointer-events: none;
    z-index: 0;
}

main { position: relative; z-index: 1; padding-top: 36px; }

/* ═══ NAV ═══ */
.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    background: rgba(6, 8, 15, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
    max-width: none;
    margin: 0;
    border-radius: 0;
}

.logo {
    font-family: var(--font-display) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--cyan) !important;
    letter-spacing: 3px !important;
    text-shadow: 0 0 20px var(--cyan-glow) !important;
    text-decoration: none !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    color: var(--text-dim) !important;
    text-decoration: none;
    font-size: 13px !important;
    font-weight: 500;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    transition: all 0.2s;
    letter-spacing: 0.5px;
    background: none !important;
    border: none !important;
}

.nav-links a:hover {
    color: var(--cyan) !important;
    background: var(--cyan-glow) !important;
}

.nav-links .nav-cta {
    color: var(--bg) !important;
    background: var(--cyan) !important;
    font-weight: 600 !important;
    margin-left: 8px;
    font-size: 12px !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links .nav-cta:hover {
    background: white !important;
    box-shadow: 0 0 20px var(--cyan-glow);
}

/* ═══ HERO — SEARCH IS THE HERO ═══ */
.hero {
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 20px 24px;
    text-align: center;
    background: none;
    min-height: 0;
}

.hero h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.hero .tagline {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cyan-dim);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero .tagline::before,
.hero .tagline::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan-dim), transparent);
}

.hero .subtitle {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 8px;
    text-shadow: 0 0 40px var(--cyan-glow);
}

.hero .hero-sub {
    font-size: 16px;
    color: var(--text-dim);
    margin-bottom: 28px;
    font-weight: 400;
}

/* ═══ SEARCH ═══ */
.search-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px 24px;
}

.search-box {
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.search-box h2 { display: none; }

.input-group {
    display: flex;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group:focus-within {
    border-color: var(--cyan-dim);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.08), inset 0 0 30px rgba(0, 240, 255, 0.03);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 18px;
    color: white;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    outline: none;
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.input-group button,
#checkButton {
    background: var(--cyan);
    color: var(--bg);
    border: none;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-indent: 2px;
    min-width: 120px;
}

.input-group button:hover,
#checkButton:hover {
    background: white;
    box-shadow: 0 0 20px var(--cyan-glow);
}

#checkButton:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
}

.help-text {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
    text-align: center;
}

.help-text .hint-arrow {
    color: var(--green);
    font-weight: 700;
}

.help-text .svg-icon { display: none; }

/* ═══ LOADING ═══ */
.hidden { display: none !important; }

.loading {
    text-align: center;
    padding: 40px 20px;
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--cyan-dim);
    text-transform: uppercase;
    animation: loadPulse 1.5s ease-in-out infinite;
}

@keyframes loadPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.loading span {
    font-family: var(--font-mono) !important;
    font-size: 12px !important;
    color: var(--text-muted) !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
}

/* ═══ RESULTS CONTAINER ═══ */
.results-container {
    max-width: 680px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

/* ═══ RESULT CARD ═══ */
.score-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    backdrop-filter: none;
}

/* Specular top highlight */
.score-card::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan-dim), transparent);
}

.score-card.ready::before { background: linear-gradient(90deg, transparent, var(--green), transparent); }
.score-card.caution::before { background: linear-gradient(90deg, transparent, var(--amber), transparent); }
.score-card.skip::before { background: linear-gradient(90deg, transparent, var(--red), transparent); }

/* Result header */
.score-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.address-title {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.result-time {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
}

/* ═══ STATUS PILL ═══ */
.score-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.score-badge.ready {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.25);
    color: var(--green);
}

.score-badge.caution {
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.25);
    color: var(--amber);
}

.score-badge.marginal {
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.25);
    color: var(--amber);
}

.score-badge.skip {
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.25);
    color: var(--red);
}

/* Score guidance text */
.score-guidance {
    font-size: 14px;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 16px;
}

/* ═══ WEATHER ALERTS ═══ */
.wx-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.wx-alert::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    pointer-events: none;
}

.wx-alert-warning {
    background: rgba(255, 184, 0, 0.06);
    border: 1px solid rgba(255, 184, 0, 0.25);
}
.wx-alert-warning::before { background: linear-gradient(90deg, rgba(255, 184, 0, 0.08), transparent 60%); }

.wx-alert-watch {
    background: rgba(255, 184, 0, 0.04);
    border: 1px solid rgba(255, 184, 0, 0.15);
}
.wx-alert-watch::before { background: linear-gradient(90deg, rgba(255, 184, 0, 0.05), transparent 60%); }

.wx-alert-severe {
    background: rgba(255, 51, 102, 0.06);
    border: 1px solid rgba(255, 51, 102, 0.3);
}
.wx-alert-severe::before { background: linear-gradient(90deg, rgba(255, 51, 102, 0.08), transparent 60%); }

.wx-alert-clear {
    background: rgba(0, 255, 136, 0.04);
    border: 1px solid rgba(0, 255, 136, 0.15);
}
.wx-alert-clear::before { background: linear-gradient(90deg, rgba(0, 255, 136, 0.06), transparent 60%); }

.wx-alert-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wx-alert-warning .wx-alert-icon,
.wx-alert-watch .wx-alert-icon { background: rgba(255, 184, 0, 0.15); }
.wx-alert-severe .wx-alert-icon { background: rgba(255, 51, 102, 0.15); animation: alertPulse 2s ease-in-out infinite; }
.wx-alert-clear .wx-alert-icon { background: rgba(0, 255, 136, 0.1); }

.wx-alert-icon svg {
    width: 16px; height: 16px;
    fill: none; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
}

.wx-alert-warning .wx-alert-icon svg,
.wx-alert-watch .wx-alert-icon svg { stroke: var(--amber); }
.wx-alert-severe .wx-alert-icon svg { stroke: var(--red); }
.wx-alert-clear .wx-alert-icon svg { stroke: var(--green); }

.wx-alert-content { flex: 1; position: relative; z-index: 1; }

.wx-alert-title {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 2px;
}

.wx-alert-warning .wx-alert-title,
.wx-alert-watch .wx-alert-title { color: var(--amber); }
.wx-alert-severe .wx-alert-title { color: var(--red); }
.wx-alert-clear .wx-alert-title { color: var(--green); }

.wx-alert-detail {
    font-size: 13px;
    color: var(--text);
    line-height: 1.3;
}

.wx-alert-detail strong { color: white; font-weight: 600; }

.wx-alert-when {
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    flex-shrink: 0;
    text-align: center;
    line-height: 1.3;
}

.wx-alert-warning .wx-alert-when,
.wx-alert-watch .wx-alert-when {
    background: rgba(255, 184, 0, 0.1);
    color: var(--amber);
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.wx-alert-severe .wx-alert-when {
    background: rgba(255, 51, 102, 0.1);
    color: var(--red);
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.wx-alert-clear .wx-alert-when {
    background: rgba(0, 255, 136, 0.06);
    color: var(--green);
    border: 1px solid rgba(0, 255, 136, 0.15);
}

.wx-alerts-container { margin-bottom: 16px; }

@keyframes alertPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ═══ MOWSCORE BAR ═══ */
.mowscore-bar-container { margin-bottom: 16px; }

.mowscore-bar-label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 6px;
}

.mowscore-bar-label span:first-child {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.mowscore-bar-value {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
}

.score-card.ready .mowscore-bar-value { color: var(--green); text-shadow: 0 0 12px rgba(0, 255, 136, 0.4); }
.score-card.caution .mowscore-bar-value { color: var(--amber); text-shadow: 0 0 12px rgba(255, 184, 0, 0.4); }
.score-card.marginal .mowscore-bar-value { color: var(--amber); text-shadow: 0 0 12px rgba(255, 184, 0, 0.4); }
.score-card.skip .mowscore-bar-value { color: var(--red); text-shadow: 0 0 12px rgba(255, 51, 102, 0.4); }

.mowscore-bar-wrapper {
    height: 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.mowscore-bar-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(255, 51, 102, 0.1) 0%,
        rgba(255, 184, 0, 0.1) 40%,
        rgba(0, 255, 136, 0.1) 70%,
        rgba(0, 255, 136, 0.15) 100%
    );
    border-radius: 5px;
}

.mowscore-bar-fill {
    height: 100%;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.mowscore-bar-fill.ready {
    background: linear-gradient(90deg, var(--amber), var(--green));
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
}

.mowscore-bar-fill.caution {
    background: linear-gradient(90deg, var(--red), var(--amber));
    box-shadow: 0 0 12px rgba(255, 184, 0, 0.4);
}

.mowscore-bar-fill.marginal {
    background: linear-gradient(90deg, var(--red), var(--amber));
    box-shadow: 0 0 12px rgba(255, 184, 0, 0.3);
}

.mowscore-bar-fill.skip {
    background: var(--red);
    box-shadow: 0 0 12px rgba(255, 51, 102, 0.4);
}

/* ═══ MICRO DATA BARS ═══ */
.data-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.data-bars-divider {
    padding-top: 6px;
    border-top: 1px solid var(--border);
}

.data-bars-label {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

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

.data-label {
    width: 70px;
    font-size: 10px;
    font-family: var(--font-mono);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: right;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.data-label .svg-icon {
    width: 11px; height: 11px;
    flex-shrink: 0;
    opacity: 0.7;
}

.data-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.data-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.data-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: inherit;
    filter: brightness(1.5);
    border-radius: 0 3px 3px 0;
}

.fill-green { background: var(--green); box-shadow: 0 0 8px rgba(0, 255, 136, 0.3); }
.fill-cyan { background: var(--cyan); box-shadow: 0 0 8px rgba(0, 240, 255, 0.3); }
.fill-amber { background: var(--amber); box-shadow: 0 0 8px rgba(255, 184, 0, 0.3); }
.fill-red { background: var(--red); box-shadow: 0 0 8px rgba(255, 51, 102, 0.3); }

.data-value {
    width: 56px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-align: left;
    flex-shrink: 0;
}

.val-green { color: var(--green); }
.val-cyan { color: var(--cyan); }
.val-amber { color: var(--amber); }
.val-red { color: var(--red); }

/* ═══ BEST MOWING WINDOW ═══ */
.mow-window {
    text-align: center;
    padding: 12px 16px;
    margin-bottom: 16px;
    background: rgba(0, 240, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.mow-window-label {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.mow-window-time {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan-glow);
    letter-spacing: 1px;
}

/* ═══ 12-HOUR FORECAST ═══ */
.hourly-forecast {
    margin-bottom: 16px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.hourly-forecast-label {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hourly-scroll {
    display: flex;
    gap: 10px;
    min-width: max-content;
}

.hourly-item {
    text-align: center;
    min-width: 56px;
}

.hourly-time {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
    font-family: var(--font-mono);
}

.hourly-icon {
    font-size: 20px;
    margin-bottom: 3px;
    line-height: 1;
}

.hourly-temp {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: white;
    margin-bottom: 2px;
}

.hourly-rain {
    width: 48px;
    margin: 0 auto;
}

.hourly-rain-label {
    font-size: 8px;
    font-weight: 700;
    color: rgba(33, 150, 243, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.hourly-rain-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.hourly-rain-fill {
    height: 100%;
    background: #2196F3;
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(33, 150, 243, 0.4);
}

.hourly-rain-pct {
    font-size: 9px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1px;
}

.hourly-wind {
    font-size: 10px;
    color: var(--amber);
    font-weight: 600;
}

/* ═══ 3-DAY OUTLOOK ═══ */
.outlook-section { margin-bottom: 16px; }

.outlook-label {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.outlook-grid {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.outlook-day {
    background: var(--surface);
    padding: 10px 14px;
}

.outlook-day-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.outlook-day-name {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text);
    text-transform: uppercase;
}

.outlook-status-badge {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.outlook-score {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    margin-left: auto;
    line-height: 1;
}

.outlook-mini-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
    overflow: hidden;
    margin: 6px 0 4px;
}

.outlook-mini-fill {
    height: 100%;
    border-radius: 2px;
}

.outlook-stats {
    display: flex;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 2px;
}

.outlook-timing {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--cyan-dim);
    margin-top: 3px;
}

.outlook-detail {
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.3;
}

/* ═══ LIVE RADAR ═══ */
.radar-section {
    margin-bottom: 16px;
}

.radar-toggle {
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--cyan);
    padding: 10px 16px;
    background: rgba(0, 240, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    list-style: none;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s;
}

.radar-toggle:hover {
    border-color: var(--cyan-dim);
    background: rgba(0, 240, 255, 0.08);
}

.radar-toggle .live-badge {
    font-size: 10px;
    background: rgba(255, 51, 102, 0.8);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
    animation: alertPulse 2s ease-in-out infinite;
}

details.radar-section summary { list-style: none; }
details.radar-section summary::-webkit-details-marker { display: none; }

.radar-iframe {
    margin-top: 8px;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--border);
}

.radar-iframe iframe {
    border: none;
    display: block;
}

/* ═══ AI SUMMARY ═══ */
.ai-summary {
    font-size: 13px;
    color: var(--text);
    padding: 10px 14px;
    background: rgba(0, 240, 255, 0.03);
    border-left: 2px solid var(--cyan-dim);
    border-radius: 0 6px 6px 0;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 16px;
}

.ai-summary strong {
    color: var(--cyan);
    font-style: normal;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 4px;
}


.ai-forecast {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 8px;
    font-style: italic;
}

.ai-message {
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--cyan);
    padding: 6px 0;
    border-top: 1px solid rgba(0,240,255,0.06);
    margin-top: 6px;
    font-style: normal;
}

.ai-tip {
    font-size: 11px;
    color: var(--text-muted);
    font-style: normal;
    margin-top: 6px;
    font-family: var(--font-mono);
}

.ai-tip span {
    color: var(--green);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-right: 6px;
}

/* ═══ 14-DAY SCHEDULE ═══ */
.full-schedule {
    margin-bottom: 16px;
}

.full-schedule summary {
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--cyan);
    padding: 10px 16px;
    background: rgba(0, 240, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    list-style: none;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s;
}

.full-schedule summary:hover {
    border-color: var(--cyan-dim);
    background: rgba(0, 240, 255, 0.08);
}

.full-schedule summary::-webkit-details-marker { display: none; }

.schedule-list {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.schedule-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    border-left: 3px solid var(--border);
    flex-wrap: wrap;
}

.schedule-row.ready {
    border-left-color: var(--green);
    background: rgba(0, 255, 136, 0.03);
}

.schedule-row.caution {
    border-left-color: var(--amber);
    background: rgba(255, 184, 0, 0.03);
}

.schedule-row.marginal {
    border-left-color: var(--amber);
    background: rgba(255, 184, 0, 0.02);
}

.schedule-row.skip {
    border-left-color: var(--red);
    background: rgba(255, 51, 102, 0.03);
}

.schedule-row .row-message {
    color: var(--text-dim);
}

.schedule-row.ready .row-message { color: var(--green); }
.schedule-row.caution .row-message { color: var(--amber); }
.schedule-row.marginal .row-message { color: var(--amber); }
.schedule-row.skip .row-message { color: var(--red); }

.schedule-row .row-score-text { color: white; }
.schedule-row.ready .row-score-text { color: var(--green); }
.schedule-row.caution .row-score-text { color: var(--amber); }
.schedule-row.marginal .row-score-text { color: var(--amber); }
.schedule-row.skip .row-score-text { color: var(--red); }

.row-date {
    width: 50px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.row-bar-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.row-bar-wrapper {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
    overflow: hidden;
}

.row-bar-fill {
    height: 100%;
    border-radius: 3px;
}

.row-bar-fill.ready { background: var(--green); box-shadow: 0 0 6px rgba(0, 255, 136, 0.3); }
.row-bar-fill.caution { background: var(--amber); box-shadow: 0 0 6px rgba(255, 184, 0, 0.3); }
.row-bar-fill.marginal { background: var(--amber); box-shadow: 0 0 6px rgba(255, 184, 0, 0.2); }
.row-bar-fill.skip { background: var(--red); box-shadow: 0 0 6px rgba(255, 51, 102, 0.3); }

.row-score-text {
    width: 36px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-align: right;
}

.row-message {
    width: 120px;
    font-size: 12px;
    color: var(--text-dim);
    flex-shrink: 0;
    font-weight: 500;
}

.row-temp {
    width: 80px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-align: right;
    flex-shrink: 0;
}

.row-temp small {
    display: block;
    margin-top: 2px;
}

.row-timing {
    width: 100%;
    order: 10;
    font-size: 12px;
    font-weight: 600;
    color: var(--cyan-dim);
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid var(--border);
}

/* ═══ CTA INLINE ═══ */
.cta-section {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px 20px;
    text-align: center;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.cta-section h3 {
    font-size: 15px;
    color: var(--text-dim);
    margin-bottom: 12px;
    font-weight: 400;
}

.cta-section h3 strong {
    color: white;
    font-weight: 600;
}

.cta-section .cta-button,
.cta-section a.cta-button {
    display: inline-block;
    padding: 10px 32px;
    background: transparent;
    border: 1px solid var(--cyan-dim);
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-section .cta-button:hover {
    background: var(--cyan);
    color: var(--bg);
    box-shadow: 0 0 30px var(--cyan-glow);
}

.cta-subtext {
    margin-top: 8px;
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
}

/* Section divider */
.section-divider {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-divider hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

/* ═══ USE CASES — FLAT GRID ═══ */
.use-cases-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px 20px 24px;
    background: none;
    border: none;
    box-shadow: none;
}

.use-cases-section h3 {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 16px;
    font-weight: 400;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.use-case-card {
    background: var(--surface);
    padding: 18px 16px;
    transition: all 0.2s;
    cursor: default;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.use-case-card:hover {
    background: rgba(0, 240, 255, 0.03);
}

.use-case-card h4 {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--cyan);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.use-case-card h4 .svg-icon {
    width: 14px; height: 14px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px var(--cyan-glow));
}

.use-case-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.4;
}

/* ═══ FOUNDERS — COMPACT CARD ═══ */
.founders-banner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 24px;
    background: none;
    border: none;
    box-shadow: none;
}

.founders-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 24px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.founders-content::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.4), transparent);
}

.founders-content h3 {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 400;
}

.founders-content p {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.founders-content .founders-sub {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.price {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--amber);
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.2);
    margin-bottom: 8px;
}

.founders-cta {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--amber);
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid rgba(255, 184, 0, 0.3);
    padding: 8px 20px;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s;
}

.founders-cta:hover {
    background: var(--amber);
    color: var(--bg);
}

.founders-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-top: 12px;
}

.founders-features span {
    font-size: 12px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 4px;
}

.founders-features span .svg-icon { color: var(--green); }

.founders-video {
    width: 200px;
    flex-shrink: 0;
}

.founders-video video {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border);
}

/* ═══ FOOTER ═══ */
footer {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-brand {
    margin-bottom: 10px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 3px;
    text-shadow: 0 0 20px var(--cyan-glow);
}

.footer-tagline {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.footer-features {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--text-dim);
    letter-spacing: 0.3px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.15);
    text-underline-offset: 3px;
    font-size: 12px;
    margin-right: 16px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--cyan); text-decoration-color: var(--cyan); }

.footer-links a .svg-icon { display: none; }

.footer-main {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    text-align: center;
    margin-top: 12px;
}

.footer-main a {
    color: var(--cyan-dim);
    text-decoration: underline;
    text-decoration-color: rgba(0,240,255,0.2);
    text-underline-offset: 3px;
}

.footer-secondary {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 4px;
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero { animation: fadeUp 0.6s ease-out; }
.search-container { animation: fadeUp 0.6s ease-out 0.05s both; }
.results-container { animation: fadeUp 0.6s ease-out 0.1s both; }
.cta-section { animation: fadeUp 0.6s ease-out 0.15s both; }
.use-cases-section { animation: fadeUp 0.6s ease-out 0.2s both; }
.founders-banner { animation: fadeUp 0.6s ease-out 0.25s both; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
    .hero .subtitle { font-size: 26px; }
    .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
    .founders-content { flex-direction: column; text-align: center; }
    .founders-video { width: 100%; }
    .founders-features { grid-template-columns: 1fr; text-align: left; }
    .founders-cta { width: 100%; text-align: center; }
    footer .footer-links { flex-direction: row; justify-content: center; gap: 0; }

    .nav-links a:not(.nav-cta) { display: none; }

    .score-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .wx-alert { flex-wrap: wrap; }
    .wx-alert-when { margin-left: auto; }

    .schedule-row { flex-wrap: wrap; }
    .row-message { width: 100%; order: 5; }
    .row-temp { width: auto; }
}

@media (max-width: 480px) {
    .hero { padding: 32px 16px 16px; }
    .hero .subtitle { font-size: 22px; }
    .use-cases-grid { grid-template-columns: 1fr; }
    #checkButton { padding: 14px 16px; min-width: 100px; font-size: 10px; letter-spacing: 1.5px; text-indent: 1.5px; }
    .search-container { padding: 0 16px 16px; }
    .score-card { padding: 16px; }

    .hourly-item { min-width: 50px; }
    .hourly-icon { font-size: 18px; }
}

/* ═══ ICON SYSTEM OVERRIDES ═══ */
/* Make existing SVG icons work with new design */
.svg-icon {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

/* Suppress old icon treatments */
.icon-pulse, .icon-holo, .icon-status, .icon-glass, .icon-neon {
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* Mobile nav compatibility */
.mobile-nav-overlay { z-index: 200; }

/* .good STATUS (70-84) — green like ready */
.score-card.good::before { background: linear-gradient(90deg, transparent, var(--green), transparent); }
.score-badge.good { color: var(--green); border-color: rgba(0,255,136,0.2); background: rgba(0,255,136,0.06); }
.score-card.good .mowscore-bar-value { color: var(--green); text-shadow: 0 0 12px rgba(0,255,136,0.4); }
.mowscore-bar-fill.good { background: linear-gradient(90deg, var(--green), rgba(0,255,136,0.6)); box-shadow: 0 0 8px rgba(0,255,136,0.3); }
.schedule-row.good { border-left: 2px solid rgba(0,255,136,0.15); }
.schedule-row.good .row-message { color: var(--green); }
.schedule-row.good .row-score-text { color: var(--green); }
.row-bar-fill.good { background: var(--green); box-shadow: 0 0 6px rgba(0,255,136,0.3); }
