/* Hero Section */
.hero {
    padding: 5rem 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(26, 26, 26, 0.2), rgba(44, 62, 80, 0.3)),
                url('https://sfassets.sfo3.cdn.digitaloceanspaces.com/deerroad.webp') center 67.5%/cover no-repeat;
    color: var(--text-on-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 2rem;
    color: #f5f5f5;
    font-weight: 400;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero .hero-credit {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
    font-size: 0.65rem;
    max-width: none;
    opacity: 0.5;
    margin: 0;
}

.hero .hero-credit a {
    color: inherit;
}

/* Mission */
.mission-text {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
    color: var(--secondary);
}

/* Section lede (subhead under section title) */
.section-lede {
    max-width: 720px;
    margin: 1.25rem auto 0;
    color: var(--secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Current Actions — card grid */
.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

.action-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--accent);
}

.action-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.action-jurisdiction {
    color: var(--text-light);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.action-status {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}

.status-filed {
    background: rgba(26, 188, 156, 0.15);
    color: var(--accent-dark);
}

.status-progress {
    background: rgba(127, 140, 141, 0.18);
    color: var(--text-light);
}

.action-card h3 {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.action-card p {
    color: var(--secondary);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.action-position {
    color: var(--text-main) !important;
    border-left: 3px solid var(--accent);
    padding-left: 0.75rem;
    font-style: italic;
}

.action-cta {
    margin-top: auto;
    padding-top: 0.75rem;
}

.action-soon {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

/* Impact Tabs */
.impact-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--border-light);
    background: var(--white);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--secondary);
    font-size: 0.85rem;
}

.tab-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.tab-btn.active {
    background: var(--accent);
    color: var(--text-on-dark);
    border-color: var(--accent);
}

#impact-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px var(--shadow-subtle);
}

.tab-panel h3 {
    font-size: 1.4rem;
}

.tab-panel-heading {
    color: var(--accent);
    margin-bottom: 1rem;
}

.tab-panel p {
    font-size: 0.95rem;
}

.tab-panel {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.impact-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.impact-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.impact-value {
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Regulatory Timeline */
.reg-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.reg-timeline {
    position: relative;
    padding-left: 2rem;
}

.reg-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(26, 188, 156, 0.2));
}

.reg-item {
    position: relative;
    margin-bottom: 2rem;
}

.reg-item:last-child {
    margin-bottom: 0;
}

.reg-marker {
    position: absolute;
    left: -2rem;
    top: 2.5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--accent);
}

.reg-year {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.reg-content h4 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.reg-content p {
    font-size: 0.92rem;
    color: var(--secondary);
    line-height: 1.6;
}

.reg-callout {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.reg-callout h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.reg-callout p {
    font-size: 0.92rem;
    color: var(--secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .impact-tabs { flex-direction: column; align-items: center; }
    .impact-grid { grid-template-columns: 1fr; gap: 0.5rem; }
    .impact-label { margin-top: 0.5rem; }
}
