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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #0B0B0C;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wrap {
    max-width: 920px;
    margin: 0 auto;
    padding: 24px;
}

h1 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0EA5E9, #38BDF8);
    border-radius: 2px;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

p {
    margin-bottom: 16px;
}

a {
    color: #0EA5E9;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    text-decoration: underline;
}

a:focus-visible {
    outline: 3px solid #38BDF8;
    outline-offset: 2px;
    border-radius: 2px;
}

ul {
    list-style: none;
}

ul li {
    padding: 6px 0;
    position: relative;
    padding-left: 24px;
}

ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0EA5E9;
    font-weight: bold;
}

.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E5E7EB;
    z-index: 100;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-link:focus-visible {
    outline: 3px solid #38BDF8;
    outline-offset: 4px;
    border-radius: 4px;
}

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

.nav a {
    font-size: 18px;
    font-weight: 500;
    color: #0B0B0C;
}

.nav a:hover {
    color: #0EA5E9;
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0B0B0C;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:focus-visible {
    outline: 3px solid #38BDF8;
    outline-offset: 2px;
    border-radius: 4px;
}

.hero {
    padding: 120px 0 80px;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 30%, #0369a1 60%, #0284c7 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 165, 233, 0.2) 100%);
}

.geometric-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.shape-1 {
    top: -10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.6) 0%, transparent 70%);
    animation: floatSlow 25s ease-in-out infinite;
}

.shape-2 {
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.5) 0%, transparent 70%);
    animation: floatSlow 20s ease-in-out infinite reverse;
}

.shape-3 {
    top: 40%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.4) 0%, transparent 70%);
    animation: floatMedium 18s ease-in-out infinite;
}

.shape-4 {
    bottom: 20%;
    left: 60%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(186, 230, 253, 0.3) 0%, transparent 70%);
    animation: floatMedium 22s ease-in-out infinite reverse;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 0 5%;
    z-index: 1;
}

.building {
    background: linear-gradient(180deg, rgba(14, 116, 144, 0.8) 0%, rgba(8, 76, 97, 0.9) 100%);
    border-radius: 4px 4px 0 0;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.building::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    right: 15%;
    bottom: 10%;
    background-image: 
        linear-gradient(rgba(56, 189, 248, 0.3) 2px, transparent 2px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.3) 2px, transparent 2px);
    background-size: 20px 20px;
}

.building-1 {
    width: 12%;
    height: 120px;
    animation: buildingPulse 4s ease-in-out infinite;
}

.building-2 {
    width: 10%;
    height: 160px;
    animation: buildingPulse 5s ease-in-out infinite 0.5s;
}

.building-3 {
    width: 14%;
    height: 140px;
    animation: buildingPulse 4.5s ease-in-out infinite 1s;
}

.building-4 {
    width: 11%;
    height: 110px;
    animation: buildingPulse 5.5s ease-in-out infinite 1.5s;
}

.building-5 {
    width: 13%;
    height: 130px;
    animation: buildingPulse 4.8s ease-in-out infinite 2s;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: white;
    font-size: 56px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    animation: slideDown 0.6s ease-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .tagline {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero .subtext {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes floatSlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -40px) scale(1.1);
    }
    66% {
        transform: translate(-20px, -20px) scale(0.95);
    }
}

@keyframes floatMedium {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-40px, 30px) rotate(5deg);
    }
}

@keyframes buildingPulse {
    0%, 100% {
        opacity: 0.8;
        filter: brightness(1);
    }
    50% {
        opacity: 1;
        filter: brightness(1.2);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.fade-in-delay-1 {
    animation: fadeIn 0.8s ease-out 0.4s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}

.section {
    padding: 64px 0;
    border-top: none;
}

.section:first-of-type {
    border-top: none;
}

.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.values-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.markets-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.section-title-center {
    text-align: center;
    display: block;
    margin-bottom: 48px;
}

.section-title-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-content .lead {
    font-size: 24px;
    font-weight: 600;
    color: #0EA5E9;
    line-height: 1.4;
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.15);
    border: 2px solid #0EA5E9;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #0EA5E9, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    margin-top: 24px;
}

.value-card {
    background: white;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.2);
    border-color: #0EA5E9;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(-5deg);
}

.value-card h3 {
    color: #0EA5E9;
    margin-bottom: 12px;
}

.value-card p {
    color: #6B7280;
    font-size: 16px;
    line-height: 1.6;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 24px;
}

.market-card {
    background: white;
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0EA5E9, #38BDF8);
}

.market-card.ohio::before {
    background: linear-gradient(90deg, #dc2626, #ef4444);
}

.market-card.chicago::before {
    background: linear-gradient(90deg, #0EA5E9, #38BDF8);
}

.market-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.market-header h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #0B0B0C;
}

.market-card p {
    color: #6B7280;
    margin-bottom: 12px;
}

.market-card strong {
    color: #0EA5E9;
    font-size: 18px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0EA5E9, #38BDF8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.15);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 100%);
    color: white;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn:focus-visible {
    outline: 3px solid #38BDF8;
    outline-offset: 2px;
}

.back-link {
    display: inline-block;
    font-size: 18px;
    color: #6B7280;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: #0EA5E9;
}

.disclosures {
    background: #F3F4F6;
    border-top: 1px solid #E5E7EB;
}

.disclosures p {
    color: #6B7280;
    font-size: 16px;
}

.footer {
    background: #0B0B0C;
    color: #F3F4F6;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 8px;
    font-size: 16px;
}

.footer a {
    color: #F3F4F6;
}

.footer a:hover {
    color: #38BDF8;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 32px;
    border-radius: 14px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #6B7280;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #F3F4F6;
    color: #0B0B0C;
}

.modal-close:focus-visible {
    outline: 3px solid #38BDF8;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid #E5E7EB;
        display: none;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        padding: 16px 24px;
        width: 100%;
        border-top: 1px solid #F3F4F6;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .tagline {
        font-size: 20px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .markets-grid {
        grid-template-columns: 1fr;
    }
    
    body {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }
    
    .wrap {
        padding: 16px;
    }
    
    .hero {
        padding: 48px 0 32px;
    }
    
    .section {
        padding: 32px 0;
    }
}
