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

/* BASE */
body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.6;
}

/* HERO VIDEO */
.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NAVIGATION */
.main-nav {
    width: 100%;
    padding: 20px 0;
    background: transparent;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
}

.logo {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #000000;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 28px;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 13px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #555555;
}

/* PRIMARY COPY */
.primary-copy {
    max-width: 900px;
    margin: 80px auto 60px auto;
    padding: 0 24px;
    text-align: center;
}

.primary-copy h1 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.primary-copy h2 {
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 24px;
    color: #444;
}

.primary-copy p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #333;
}

/* THE STANDARD */
.ledger {
    max-width: 1100px;
    margin: 0 auto 80px auto;
    padding: 0 24px;
    text-align: center;
}

.ledger h3 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ledger-columns {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    text-align: left;
}

.ledger-item {
    flex: 1;
}

.ledger-label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ledger-item p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #333;
}

/* CTA + IDENTITY */
.cta-row {
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    transition: background 0.2s ease, color 0.2s ease;
}

.cta-button:hover {
    background: #111;
    color: #fff;
}

.identity {
    font-size: 13px;
    font-weight: 300;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

/* HOVER BLOCKS */
.hover-blocks {
    max-width: 1100px;
    margin: 0 auto 100px auto;
    padding: 0 24px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.hover-block {
    flex: 1 1 calc(50% - 24px);
    background: #f7f7f7;
    padding: 40px 24px;
    text-decoration: none;
    color: #111111;
    border-radius: 6px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #e5e5e5;
}

.hover-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.block-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 6px;
}

.block-sub {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #444;
}

.block-dialect {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    color: #666;
}

/* THE IPHONE GLASS BUTTON */
.glass-btn {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.2rem;
    color: #000;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
    white-space: nowrap;
}

.glass-btn:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* FOOTER */
.footer {
    padding: 40px 24px 80px;
    text-align: center;
    font-weight: 300;
    color: #555;
    border-top: 1px solid #eee;
}

.footer-top {
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-bottom {
    font-size: 13px;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .primary-copy {
        margin: 50px auto 40px;
    }

    .primary-copy h1 {
        font-size: 22px;
    }

    .ledger-columns {
        flex-direction: column;
    }

    .hover-block {
        flex: 1 1 100%;
    }

    .nav-links {
        gap: 14px 20px;
    }

    .nav-links a {
        font-size: 12px;
        letter-spacing: 1px;
    }
}