:root {
    --bg-canvas: #E5E5E5; /* Light grey desktop background */
    --bg-sheet: #FDFDFD; /* Slightly warm white for "paper" */
    
    --ink-primary: #111111;
    --ink-secondary: #666666;
    
    --accent-blue: #0050FF; /* Blueprint Blue */
    --accent-orange: #F38020; /* Markup Orange */
    --accent-highlight: #FFF100; /* Highlighter Yellow */
    
    --line-color: #D0D0D0;
    
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --toolbar-height: 50px;
    --status-height: 30px;
}

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

body {
    background-color: var(--bg-canvas);
    color: var(--ink-primary);
    font-family: var(--font-sans);
    line-height: 1.5;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* --- Toolbar (Top) --- */
.toolbar {
    height: var(--toolbar-height);
    background: #FFF;
    border-bottom: 1px solid var(--line-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    font-family: var(--font-mono);
    font-size: 1.0rem;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tool-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.brand {
    font-weight: 700;
    color: var(--ink-primary);
    text-decoration: none;
}
.brand:hover { color: var(--accent-blue); }
.divider { color: var(--line-color); }
.context { color: var(--ink-secondary); }

/* Context Dropdown */
.context-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
}

.dropdown-toggle:hover {
    color: var(--accent-blue);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.context-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFF;
    border: 1px solid var(--line-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 200;
}

.context-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--ink-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    border-bottom: 1px solid #F0F0F0;
    transition: all 0.2s;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #F8F8F8;
    color: var(--accent-blue);
}

.dropdown-item.active {
    color: var(--accent-blue);
    font-weight: 600;
}

.dropdown-item.active::before {
    content: '>';
    margin-right: 0.5rem;
}

.tool-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--ink-secondary);
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-blue);
    font-weight: 700;
}

.nav-link.action {
    color: var(--accent-orange);
    background: rgba(243, 128, 32, 0.1);
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-orange);
    border-radius: 2px;
    transition: all 0.2s;
}

.nav-link.action:hover {
    background: var(--accent-orange);
    color: #FFF;
}

/* --- Workspace (Main) --- */
.workspace {
    flex-grow: 1;
    overflow-y: auto;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    
    /* Dot Grid Background for the "Desk" */
    background-image: radial-gradient(#CCC 1px, transparent 1px);
    background-size: 20px 20px;
}

/* --- Sheets (Sections) --- */
.sheet {
    background: var(--bg-sheet);
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    position: relative;
    border: 1px solid #FFF;
}

/* Left Margin Notes Area */
.margin-notes {
    width: 150px;
    border-right: 1px solid #F0F0F0;
    padding: 2rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-blue);
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #FAFAFA;
    position: sticky;
    top: calc(var(--toolbar-height) + 1rem);
    align-self: flex-start;
    height: fit-content;
}

.note {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sheet Content */
.sheet-content {
    flex-grow: 1;
    padding: 3rem;
}

.center-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-contact .center-content > p {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink-primary);
    margin-bottom: 1rem;
}

/* Typography */
h1.headline {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 4rem;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 3rem;
    color: var(--ink-primary);
}

h2 {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--ink-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* Hero Elements */
.roadmap-viz {
    margin: 3rem 0;
    border-top: 1px dashed var(--line-color);
    border-bottom: 1px dashed var(--line-color);
    padding: 2rem 0;
    overflow: visible;
}

.timeline-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.label {
    font-family: var(--font-mono);
    font-size: 19px;
    font-weight: 700;
    fill: var(--ink-secondary);
}

.label-small {
    font-family: var(--font-mono);
    font-size: 15px;
    fill: var(--accent-blue);
}

.dot { fill: var(--bg-sheet); stroke: var(--ink-secondary); stroke-width: 2px; }
.dot.success { fill: var(--accent-blue); stroke: var(--accent-blue); }
.block-build { fill: var(--accent-orange); opacity: 0.1; stroke: var(--accent-orange); stroke-width: 1px; }

.lead {
    font-size: 1.5rem;
    font-weight: 500;
    max-width: 600px;
    color: var(--ink-primary);
    margin-bottom: 1rem;
}

.section-hero .lead {
    max-width: none;
    white-space: nowrap;
}

/* Playbook / Kanban */
.kanban-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.task-card {
    background: #FFF;
    border: 1px solid var(--line-color);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.task-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 80, 255, 0.12);
    border-color: var(--accent-blue);
    border-width: 2px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
}

.tag {
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: 700;
}

.tag-cpo { background: rgba(0, 80, 255, 0.1); color: var(--accent-blue); }
.tag-sprint { background: rgba(243, 128, 32, 0.1); color: var(--accent-orange); }
.tag-adv { background: #EEE; color: var(--ink-secondary); }
.tag-install { background: rgba(0, 180, 80, 0.1); color: #00A050; }
.tag-retainer { background: rgba(100, 100, 180, 0.1); color: #6464B4; }

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.checklist {
    list-style: none;
    font-size: 0.9rem;
    color: var(--ink-secondary);
}

.checklist li {
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 10px;
    height: 10px;
    border: 2px solid var(--accent-blue);
    border-radius: 2px;
    opacity: 0.5;
    transition: all 0.2s;
}

.checklist li:hover::before {
    opacity: 1;
    background: rgba(0, 80, 255, 0.1);
}

.card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #F0F0F0;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--ink-secondary);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.card-footer .guarantee {
    color: #00A050;
    font-weight: 600;
}

.section-intro {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--ink-secondary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.protocol-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--line-color);
}

.protocol-footer .lead {
    color: #00A050;
}

.other-options {
    margin-top: 1rem;
    text-align: right;
}

.other-options a {
    color: var(--ink-secondary);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.other-options a:hover {
    color: var(--accent-blue);
}

/* Memo / Proof */
.memo-container {
    border: 1px solid var(--ink-primary);
    padding: 2rem;
    background: #FFF;
    position: relative;
    margin-bottom: 3rem;
}

.memo-header {
    border-bottom: 2px solid var(--ink-primary);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.memo-meta { margin-bottom: 0.25rem; }
.memo-meta span { font-weight: 700; display: inline-block; width: 60px; }

.memo-body {
    font-size: 1.0rem;
    line-height: 1.6;
    font-style: italic;
}

.highlight {
    background: var(--accent-highlight);
    padding: 0 4px;
    font-weight: 600;
    font-size: 1.25rem; /* Larger lead-in size */
    font-style: normal; /* Keep highlight upright */
}

.memo-stamp {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    border: 3px double var(--accent-blue);
    color: var(--accent-blue);
    padding: 0.5rem 1rem;
    font-family: var(--font-mono);
    font-weight: 700;
    transform: rotate(-10deg);
    opacity: 0.8;
    text-decoration: none; /* Reset link underline */
    cursor: pointer;
    transition: all 0.2s;
}

.memo-stamp:hover {
    opacity: 1;
    transform: rotate(-5deg) scale(1.05);
    background: rgba(0, 80, 255, 0.05);
}

/* History List */
.history-item {
    display: flex;
    border-bottom: 1px solid var(--line-color);
    padding: 1rem 0;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.year { width: 60px; color: var(--ink-secondary); }
.role { width: 150px; font-weight: 700; }
.project {
    width: 200px;
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 1rem;
}
.detail {
    color: var(--ink-secondary);
    background: rgba(0, 180, 80, 0.1);
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 0.75rem;
}

/* Comms / Podcast */
.comms-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.podcast-module {
    background: #0A0A0A; /* Dark theme for the 'device' */
    color: #FFF;
    border-radius: 4px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.podcast-module::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 1px,
        transparent 1px,
        transparent 4px
    );
    pointer-events: none;
}

.module-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: #888;
}

.signal-dot {
    width: 8px;
    height: 8px;
    background: #FF0000;
    border-radius: 50%;
    animation: blink 2s infinite;
}

.ep-title {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFF;
    line-height: 1.2;
}

.ep-desc {
    color: #AAA;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listen-btn {
    display: inline-block;
    border: 1px solid #FFF;
    color: #FFF;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.2s;
    align-self: flex-start;
}

.listen-btn:hover {
    background: #FFF;
    color: #000;
}

.channel-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.channel-card {
    border: 1px solid var(--line-color);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s;
    background: #FFF;
}

.channel-card:hover {
    border-color: var(--accent-blue);
    transform: translateX(5px);
    box-shadow: -5px 5px 0 rgba(0,0,0,0.05);
}

.chan-name { font-weight: 700; color: var(--ink-primary); font-size: 0.9rem; }
.chan-id { font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-secondary); }
.chan-status { 
    font-family: var(--font-mono); 
    font-size: 0.65rem; 
    padding: 2px 6px; 
    background: #F0F0F0; 
    color: var(--ink-secondary); 
    border-radius: 2px; 
}

/* Contact */
.signature-block {
    margin-top: 3rem;
    text-align: center;
}

.sign-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    background: var(--accent-blue);
    color: #FFF;
    border: 2px solid var(--accent-blue);
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.sign-button:hover {
    background: #FFF;
    color: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 80, 255, 0.2);
}

.x-mark {
    font-family: cursive; /* Or something scripty */
    color: var(--ink-secondary);
}

.sign-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--ink-secondary);
    margin-top: 1rem;
    letter-spacing: 0.02em;
}

/* --- Status Bar (Bottom) --- */
.status-bar {
    height: var(--status-height);
    background: linear-gradient(90deg, #F0F0F0 0%, #E8E8E8 50%, #F0F0F0 100%);
    border-top: 1px solid #DDD;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--ink-secondary);
    z-index: 100;
    position: relative;
}

.status-bar::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #00C853;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 200, 83, 0.5);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(0, 200, 83, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 12px rgba(0, 200, 83, 0.8); }
}

.status-left { display: flex; gap: 1.5rem; margin-left: 1.5rem; }

.status-right { 
    display: flex; 
    gap: 2rem; 
    align-items: center; 
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--ink-secondary);
    transition: color 0.2s;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Hero Timeline Animation */
.timeline-svg .block-build {
    animation: pulse-block 3s ease-in-out infinite;
}

@keyframes pulse-block {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.25; }
}

.timeline-svg .dot.success {
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.label-small {
    animation: glow-text 3s ease-in-out infinite;
}

@keyframes glow-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Scroll Fade-in Animations */
.sheet {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sheet.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for cards */
.task-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out, box-shadow 0.2s, border-color 0.2s;
}

.sheet.visible .task-card:nth-child(1) { transition-delay: 0.1s; }
.sheet.visible .task-card:nth-child(2) { transition-delay: 0.2s; }
.sheet.visible .task-card:nth-child(3) { transition-delay: 0.3s; }

.sheet.visible .task-card {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--ink-primary);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: var(--toolbar-height);
    left: 0;
    right: 0;
    background: #FFF;
    border-bottom: 1px solid var(--line-color);
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 150;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #F0F0F0;
    display: block;
}

.mobile-nav-divider {
    height: 1px;
    background: var(--line-color);
    margin: 0.5rem 0;
}

/* Featured card style for modules page */
.task-card.featured {
    border: 2px solid var(--accent-blue);
    position: relative;
}

.task-card.featured::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: -10px;
    right: 1rem;
    background: var(--accent-blue);
    color: #FFF;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 2px;
}

.card-link {
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #F0F0F0;
    text-align: center;
    color: var(--accent-blue);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    transition: all 0.2s;
}

.card-link:hover {
    color: var(--accent-orange);
}

/* --- New Conversion-Optimized Styles --- */

/* Header tagline */
.tagline {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--ink-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Filled nav CTA button */
.nav-cta {
    background: var(--accent-orange);
    color: white;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: #E06010;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 128, 32, 0.3);
}

/* Social proof bar */
.social-proof-bar {
    background: #f8f8f8;
    padding: 1rem 1.5rem;
    font-style: italic;
    text-align: center;
    margin-bottom: 2.5rem;
    border-left: 3px solid var(--accent-blue);
    font-size: 1.1rem;
    color: var(--ink-secondary);
}

/* Hero CTA */
.hero-cta {
    text-align: center;
    margin: 2.5rem 0;
}

.hero-button {
    display: inline-block;
    background: var(--accent-blue);
    color: white;
    padding: 1.25rem 3rem;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}

.hero-button:hover {
    background: #0040DD;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 80, 255, 0.3);
}

.hero-subtext {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--ink-secondary);
    font-family: var(--font-mono);
}

/* Trust bar */
.trust-bar {
    text-align: center;
    padding: 1.25rem 0;
    margin-top: 1rem;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--ink-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Final CTA differentiated background */
.final-cta {
    background: #f5f5f5 !important;
}

.final-cta .sign-button {
    padding: 1.5rem 4rem;
    font-size: 1.1rem;
}

/* Mobile */
@media (max-width: 768px) {
    .workspace { padding: 1rem; gap: 2rem; }
    .sheet { flex-direction: column; }
    .margin-notes {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #F0F0F0;
        flex-direction: row;
        padding: 0.5rem 1rem;
        justify-content: space-between;
        position: static;
    }
    .sheet-content { padding: 2rem 1.5rem; }
    .kanban-board { grid-template-columns: 1fr; }
    .history-item { flex-direction: column; gap: 0.25rem; }
    .year, .role, .project { width: auto; }
    h1.headline { font-size: 2.5rem; }

    .toolbar { padding: 0 1rem; }
    .tagline, .divider { display: none; }

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .social-proof-bar {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .hero-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .trust-bar {
        font-size: 0.7rem;
        letter-spacing: 0.05em;
    }

    .final-cta .sign-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .comms-grid { grid-template-columns: 1fr; }

    .section-hero .lead { white-space: normal; }

    .status-bar::before { display: none; }
    .status-left { margin-left: 0; }
}