:root {
    --navy-primary: #1e3a5f;
    --navy-dark: #0f172a;
    --navy-light: #334e68;
    --accent-blue: #2563eb;
    --gold-primary: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8941e;
}
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
        
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    height: 100%;
}
        
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    color: #111827;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    height: 100%;
    margin: 0;
}
        
/* Navbar */
.navbar-top {
    display: none;
}
        
.navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(30, 58, 95, 0.1);
    transition: all 0.3s ease;
}
        
.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
        
/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
    position: relative;
}
        
.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
        
.menu-toggle:hover span {
    background: var(--accent-blue);
}
        
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
        
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
        
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
        
/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(229, 231, 235, 1);
    flex-direction: column;
    padding: 24px 32px;
    gap: 16px;
    z-index: 50;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0s 0.3s, max-height 0.3s ease-out;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
}
        
.mobile-menu:not(.hidden) {
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0s 0s, max-height 0.3s ease-out;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    max-height: 500px;
}
        
.mobile-menu a {
    text-align: center;
    display: block;
    width: 100%;
    padding: 8px 0;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
        
.mobile-menu a:hover {
    color: #111827;
}
        
/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
    color: white;
    padding: 24px 0;
    margin-top: 0;
}

footer > div {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
}
        
@media (min-width: 768px) {
    footer {
        padding: 32px 0;
    }
    
    footer > div {
        flex-direction: row;
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    footer > div {
        padding: 0 48px;
    }
}
        
footer > div > div:first-child {
    display: flex;
    gap: 16px;
}

.footer-link {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
}

.footer-link svg {
    width: 20px;
    height: 20px;
}
        
.footer-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
        
        
.navbar-content {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
        
@media (min-width: 768px) {
    .navbar-content {
        padding: 32px 16px;
        padding-right: 32px;
    }
}
        
@media (min-width: 1024px) {
    .navbar-content {
        padding: 32px 24px;
        padding-right: 48px;
    }
}
        
.navbar-brand-section {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.navbar-brand-section:hover {
    transform: scale(1.02);
}
        
.navbar-logo-img {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand-section:hover .navbar-logo-img {
    transform: scale(1.1);
}
        
@media (min-width: 768px) {
    .navbar-logo-img {
        height: 40px;
    }
}
        
.navbar-brand-text {
    display: flex;
    flex-direction: column;
}
        
.navbar-brand-name {
    font-weight: 600;
    font-size: 1.125rem;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
        
@media (min-width: 768px) {
    .navbar-brand-name {
        font-size: 1.25rem;
    }
}
        
.navbar-brand-tagline {
    font-size: 0.8em;
    color: var(--navy-light);
    font-weight: 400;
}
        
.navbar-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .navbar-nav {
        gap: 40px;
    }
}
        
@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
}
        
.navbar-nav a {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
        
.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    transition: width 0.3s ease;
}
        
.navbar-nav a:hover {
    color: #111827;
}
        
.navbar-nav a:hover::after {
    width: 100%;
}
        
.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 48px;
    }
}
        
/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    padding: 80px 0 80px;
    margin-bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1505142468610-359e7d316be0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
        
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 58, 95, 0.82) 50%, rgba(15, 23, 42, 0.85) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 0;
}
        
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
        
.hero .container {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    text-align: center;
}

.hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    transform: translateY(-10px);
}

@media (min-width: 768px) {
    .hero-brand {
        gap: 20px;
        margin-bottom: 20px;
        transform: translateY(-16px);
    }
}

.hero-anchor-icon {
    font-size: 4rem;
    color: var(--gold-primary);
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (min-width: 768px) {
    .hero-anchor-icon {
        font-size: 5rem;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #d4a847 0%, #e0b85a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(212, 168, 71, 0.25);
    filter: drop-shadow(0 2px 4px rgba(212, 168, 71, 0.18));
    display: inline-block;
    position: relative;
    animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #d4a847 50%, transparent 100%);
    opacity: 0.55;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 0.3em;
        margin-top: 12px;
        margin-bottom: 24px;
    }
    
    .hero-title::after {
        width: 50%;
    }
}
        
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
        
.hero h1 {
    font-size: 1.8em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.2em;
    }
}
        
.hero p {
    font-size: 1.4em;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.15);
}
        
.hero-cta-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
        
.hero-cta {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #d4a847 0%, #e0b85a 100%);
    color: var(--navy-dark);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95em;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.3), 0 0 20px rgba(212, 168, 71, 0.18);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
        
.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
        
.hero-cta:hover::before {
    width: 300px;
    height: 300px;
}
        
.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.4), 0 0 30px rgba(212, 168, 71, 0.25);
    background: linear-gradient(135deg, #e0b85a 0%, #d4a847 100%);
}
        
.hero-cta-secondary {
    margin-left: 16px;
    position: relative;
    background: transparent;
    color: white;
    border: 2px solid #d4a847;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
        
.hero-cta-secondary:hover {
    background: rgba(212, 168, 71, 0.13);
    border-color: #e0b85a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(212, 168, 71, 0.25);
}
        
/* Section Styles */
.section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    padding: 40px 0;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
}

/* Offset for sticky header when jumping to How It Works */
.section#how-it-works {
    scroll-margin-top: 96px;
}

.section#how-it-works h2 {
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .section {
        padding: 64px 0;
    }
}
        
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 95, 0.2), transparent);
    margin: 0;
}
        
/* Vary section density for asymmetric feel */
.section-sparse {
    padding: 40px 0;
}

@media (min-width: 768px) {
    .section-sparse {
        padding: 64px 0;
    }
}

.section-dense {
    padding: 40px 0 56px;
}

@media (min-width: 768px) {
    .section-dense {
        padding: 64px 0 96px;
    }
}
        
.hard-hitting {
    font-size: 1.3em;
    color: #1e3a5f;
    font-weight: 500;
    margin-top: 32px;
    margin-bottom: 0;
    line-height: 1.4;
}
        
.section h2 {
    font-size: 2em;
    font-weight: 700;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 64px;
    margin-top: 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
    padding-bottom: 0.25em;
}
        
.section p {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 24px;
    line-height: 1.75;
    font-weight: 400;
}

@media (min-width: 768px) {
    .section p {
        font-size: 1.125rem;
    }
}
        
.section ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}
        
.section li {
    padding: 14px 0;
    padding-left: 24px;
    position: relative;
    color: #4a4a4a;
    font-size: 1.05em;
    line-height: 1.6;
}
        
.section li:before {
    content: "⚓";
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 400;
    font-size: 0.8em;
}
        
/* Unified Pipeline & Definition Section */
.pipeline-section {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 72px;
    align-items: start;
}
        
.pipeline-column {
    max-width: 720px;
    margin-top: 0;
    padding-top: 0;
}
        
.pipeline-intro {
    font-size: 0.85em;
    color: var(--navy-light);
    margin-bottom: 64px;
    margin-top: 0;
    line-height: 1.5;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
        
.pipeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    margin-top: 0;
    padding-top: 0;
    position: relative;
    padding-left: 0;
}
        
.pipeline-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 28px;
    align-items: start;
    padding: 32px 0;
    border-bottom: none;
}
        
.pipeline-step:last-child {
    border-bottom: none;
}
        
.pipeline-step-number {
    font-size: 0.7em;
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 6px;
    position: relative;
    padding-left: 20px;
}
        
.pipeline-step-number::before {
    content: "⚓";
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 0.9em;
}
        
.pipeline-step-number::after {
    display: none;
}
        
.pipeline-step-content h3 {
    font-size: 1em;
    font-weight: 700;
    color: var(--navy-dark);
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
        
.pipeline-step-content p {
    font-size: 0.9em;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}
        
.pipeline-step-micro-label {
    font-size: 0.7em;
    color: #6a6a6a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-top: 8px;
    display: block;
}
        
.definition-sidebar {
    padding-top: 0;
    border-left: 1px solid rgba(30, 58, 95, 0.1);
    padding-left: 52px;
    position: sticky;
    top: 100px;
}
        
.definition-sidebar h3 {
    font-size: 0.75em;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(30, 58, 95, 0.08);
}
        
.definition-sidebar h3:first-of-type {
    color: var(--navy-primary);
}

.definition-sidebar h3:first-of-type::before {
    content: "✓";
    display: inline-block;
    margin-right: 8px;
    color: var(--gold-primary);
    font-size: 1.1em;
    font-weight: 700;
}
        
.definition-sidebar h3:not(:first-child) {
    margin-top: 48px;
}

.definition-sidebar h3:last-of-type {
    color: #6a6a6a;
}

.definition-sidebar h3:last-of-type::before {
    content: "✕";
    display: inline-block;
    margin-right: 8px;
    color: #9a9a9a;
    font-size: 1em;
    font-weight: 400;
}
        
.definition-intro {
    font-size: 0.85em;
    color: #4a4a4a;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
}
        
.definition-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
        
.definition-list li {
    padding: 14px 16px;
    padding-left: 44px;
    position: relative;
    color: #374151;
    font-size: 0.9em;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(30, 58, 95, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
        
.definition-list li:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(30, 58, 95, 0.15);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
        
.definition-list li.is {
    border-left: 3px solid var(--gold-primary);
    background: linear-gradient(to right, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0.6) 8%);
}

.definition-list li.is:before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.1em;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    line-height: 1;
}
        
.definition-list li.is-not {
    border-left: 3px solid #d1d5db;
    background: linear-gradient(to right, rgba(156, 163, 175, 0.05) 0%, rgba(255, 255, 255, 0.6) 8%);
    opacity: 0.85;
}

.definition-list li.is-not:before {
    content: "—";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9a9a9a;
    font-weight: 400;
    font-size: 1.2em;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(156, 163, 175, 0.1);
    border-radius: 50%;
    line-height: 1;
}
        
/* Decisions Section */
.decisions-container {
    max-width: 100%;
}
        
.decisions-intro {
    font-size: 0.9em;
    color: #6a6a6a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    font-weight: 400;
}
        
.decisions-title {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .decisions-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .decisions-title {
        font-size: 3.75rem;
    }
}

.decisions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
}
        
.decision-card {
    padding: 0;
    border: 1px solid rgba(30, 58, 95, 0.08);
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    height: 100%;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    position: relative;
}

.decision-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
        
.decision-card-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}
        
.decision-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(212, 175, 55, 0.15);
    transform: translateY(-6px);
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
}

.decision-card:hover::before {
    opacity: 1;
}
        
.decision-card-title {
    color: var(--navy-dark);
    font-size: 0.85em;
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    padding: 36px 32px;
    border-top: 1px solid rgba(30, 58, 95, 0.08);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(250, 251, 252, 0.8) 100%);
    backdrop-filter: blur(10px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: center;
    flex-shrink: 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.decision-card:hover .decision-card-title {
    border-top-color: rgba(212, 175, 55, 0.2);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}
        
.decision-card-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}
        
.decision-state {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(30, 58, 95, 0.06);
    min-width: 0;
    flex: 1;
    position: relative;
}
        
.decision-state::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, rgba(30, 58, 95, 0.1) 50%, transparent 100%);
    z-index: 0;
    transition: all 0.3s ease;
}

.decision-card:hover .decision-state::before {
    background: linear-gradient(to bottom, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
    width: 2px;
    left: calc(50% - 0.5px);
}
        
.decision-state:last-child {
    border-bottom: none;
}
        
.decision-state-before {
    padding: 40px 32px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fafafa 100%);
    border-right: none;
    transition: all 0.4s ease;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}
        
.decision-card:hover .decision-state-before {
    opacity: 0.6;
}
        
.decision-state-after {
    padding: 40px 32px;
    background: linear-gradient(to bottom, #ffffff 0%, #fefefe 100%);
    border-left: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}
        
.anchor-label {
    font-size: 0.65em;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--navy-dark);
    font-weight: 700;
    margin-bottom: 24px;
    margin-top: 0;
    text-align: left;
    min-height: 18px;
    flex-shrink: 0;
    position: relative;
    padding: 5px 12px 5px 24px;
    background: rgba(30, 58, 95, 0.07);
    border-radius: 4px;
    transition: color 0.3s ease, background 0.3s ease;
}

.anchor-label::before {
    content: "⚓";
    position: absolute;
    left: 6px;
    font-size: 1em;
    color: var(--gold-primary);
    opacity: 0.95;
    text-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12);
}

.decision-card:hover .anchor-label {
    color: var(--navy-dark);
    background: rgba(30, 58, 95, 0.1);
}

.decision-card:hover .anchor-label::before {
    opacity: 1;
    transform: scale(1.08);
    transition: all 0.3s ease;
}
        
.anchor-label-placeholder {
    height: 18px;
    margin-bottom: 24px;
    margin-top: 0;
    flex-shrink: 0;
}
        
.decision-card:hover .decision-state-after {
    background: linear-gradient(to bottom, #ffffff 0%, #fffef9 100%);
    box-shadow: inset 4px 0 0 var(--gold-primary);
}

.decision-card:hover .decision-state-after::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--gold-primary) 0%, var(--gold-light) 100%);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}
        
.decision-state-visual {
    margin-bottom: 32px;
    margin-top: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
        
.decision-outcome {
    margin-top: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}
        
.decision-outcome-text {
    color: #6a6a6a;
    font-size: 0.9em;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
        
.decision-outcome-text.accent {
    color: #1a1a1a;
    font-weight: 500;
}
        
.visual-schematic .visual-label {
    display: none;
}
        
/* Visual schematic styles */
.visual-schematic {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

/* Shift Aggregate scenarios visual left while keeping internal gaps */
.decisions-grid .decision-card:nth-child(3) .decision-state-before .visual-schematic {
    width: auto;
    justify-content: flex-start;
}

.decisions-grid .decision-card:nth-child(3) .decision-state-before .tenant-blocks {
    flex: 0 0 auto;
}
        
.visual-label {
    font-size: 0.7em;
    color: #9a9a9a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
    min-width: 60px;
}
        
.tenant-blocks {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
}
        
.tenant-block {
    height: 48px;
    background: #e0e0e0;
    border: 1px solid #d0d0d0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
        
.tenant-block.highlight {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    border-color: var(--gold-primary);
}
        
.tenant-block.muted {
    opacity: 0.4;
}
        
.decision-card:hover .tenant-block.highlight {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}
        
.decision-card:hover .tenant-block.muted {
    opacity: 0.25;
}
        
.visual-arrow {
    color: #9a9a9a;
    font-size: 0.9em;
    margin: 0 4px;
}
        
.decision-card:hover .visual-arrow {
    color: var(--gold-primary);
}
        
.timeline-visual {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    padding: 0;
    width: 100%;
    justify-content: center;
}
        
.timeline-marker {
    width: 3px;
    height: 48px;
    background: #e0e0e0;
    position: relative;
}
        
.timeline-marker.active {
    background: var(--gold-primary);
}
        
.timeline-marker::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    border: 2px solid #ffffff;
}
        
.timeline-marker.active::after {
    background: var(--gold-primary);
}
        
.timeline-label {
    font-size: 0.75em;
    color: #6a6a6a;
    font-weight: 400;
}
        
.connection-line {
    flex: 1;
    height: 1px;
    background: #e0e0e0;
    position: relative;
}
        
.connection-line.active {
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-light) 100%);
}
        
.decision-card:hover .connection-line.active {
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    height: 2px;
}
        
.decision-label {
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}
        
.decision-label.muted {
    color: #9a9a9a;
    font-weight: 400;
}
        
.decision-label.accent {
    color: var(--accent-blue);
    font-weight: 600;
}
        
.decision-text {
    color: #6a6a6a;
    font-size: 0.95em;
    margin: 0;
    font-weight: 400;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
        
.decision-text.accent {
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.6;
}
        
        
@media (max-width: 1399px) {
    .decisions-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .hero {
        padding: 60px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2em;
    }
    
    .hero p {
        font-size: 1.1em;
        max-width: 100%;
    }
    
    .section {
        padding: 80px 0 60px;
    }
    
    .section-sparse {
        padding: 80px 0 80px;
    }
    
    .section-dense {
        padding: 80px 0 60px;
    }
    
    .section h2 {
        margin-bottom: 48px;
    }
    
    .decisions-title {
        margin-bottom: 48px;
    }
    
    .pipeline-intro {
        margin-bottom: 48px;
    }
    
    .hard-hitting {
        font-size: 1.15em;
    }
    
    .pipeline-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .definition-sidebar {
        border-left: none;
        border-top: 1px solid #e5e5e5;
        padding-left: 0;
        padding-top: 40px;
        position: static;
    }
    
    .pipeline {
        padding-left: 40px;
    }
    
    .pipeline-step {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 0;
    }
    
    .pipeline-step-number {
        font-size: 0.65em;
    }
    
    .pipeline-step-climax + .pipeline-step::before {
        display: none;
    }
    
    .decision-card-title {
        padding: 24px 24px 24px 24px;
    }
    
    .decision-state {
        grid-template-columns: 1fr;
        border-right: none;
    }
    
    .decision-state::before {
        display: none;
    }
    
    .decision-state-before {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 32px 24px;
    }
    
    .decision-state-after {
        border-left: none;
        border-top: none;
        padding: 32px 24px;
    }
    
    .decision-state-visual {
        margin-bottom: 16px;
    }
    
    .visual-schematic {
        gap: 12px;
    }
    
    .tenant-blocks {
        gap: 6px;
    }
    
    .navbar-content {
        padding: 24px 24px;
    }
}
