* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* TYPOGRAPHY */
h1,
h2,
h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* BUTTONS */
.btn {
    display: inline-block;
    background-color: var(--accent-primary);
    color: var(--text-main);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    background-color: transparent;
    box-shadow: none;
}

/* HEADER & NAVIGATION */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(10, 17, 31, 0.85);
    /* Onyx Club bg-dark with opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-main);
    margin: 0;
    display: flex;
    align-items: center;
}

.site-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid var(--accent-hover);
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    gap: 2.5rem;
}

.desktop-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--text-main);
}

.header-btn {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
}

/* ANCHOR SCROLL OFFSET handled by html scroll-padding-top */

/* HERO BANNER SECTION */
.hero-banner {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at top right, rgba(221, 107, 32, 0.12), transparent 50%), 
                radial-gradient(circle at bottom left, rgba(26, 54, 93, 0.4), transparent 50%), 
                var(--bg-dark);
}

.hero-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s infinite alternate ease-in-out;
}

.hero-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.65) 0%, rgba(10, 10, 10, 0.85) 50%, rgba(10, 10, 10, 1) 100%);
}

.hero-banner__content {
    position: relative;
    z-index: 2;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-banner__content * {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-banner__title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-banner__subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2rem;
    text-wrap: balance;
}

.hero-banner__description {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.hero-banner__description p {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    color: #a0a0a0;
    margin: 0 auto 3rem auto;
    max-width: 800px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    text-wrap: pretty;
}

.hero-banner__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-banner__line {
    height: 1px;
    width: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-banner__tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ccc;
}

.hero-banner__actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn.btn-ghost {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(4px);
}

.btn.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SECTIONS FROM INLINE STYLES */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 2.25rem;
    text-align: center;
}

.section-description {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.services {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .card {
        max-width: 500px;
        width: 100%;
    }
}

.card {
    background: var(--bg-surface);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.moat {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.moat .section-title {
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.moat-description {
    max-width: 700px;
}

.moat-list {
    max-width: 800px;
    margin: 0 auto;
    list-style-type: none;
    padding: 0;
}

.moat-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    border-left: 3px solid var(--text-main);
    color: var(--text-muted);
}

.moat-list li strong {
    color: var(--text-main);
}

.sla-proof {
    background-color: var(--bg-dark);
    padding: 3rem 0;
    text-align: center;
}

.sla-proof h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.metrics-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.metric-item {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* INTAKE FORM SECTION */
.intake {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.intake-header {
    text-align: center;
    margin-bottom: 2rem;
}

.intake-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.intake-header p {
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.intake-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 2rem;
}

.form-group {
    flex: 1;
    margin-bottom: 0;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: normal;
    color: var(--text-muted);
}

input:not([type="checkbox"]),
select,
textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 1rem;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s ease;
    appearance: none;
}

input:not([type="checkbox"]):focus,
select:focus,
textarea:focus {
    border-color: var(--accent-hover);
}

input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    min-height: 1.25rem;
    flex-shrink: 0;
    border-radius: 2px;
    display: inline-grid;
    place-content: center;
    cursor: pointer;
    position: relative;
    margin-top: 0.15rem;
}

input[type="checkbox"]::before {
    content: "";
    width: 0.65rem;
    height: 0.65rem;
    transform: scale(0);
    transition: 100ms transform ease-in-out;
    background-color: var(--accent-primary);
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}

input[type="checkbox"]:focus {
    border-color: var(--accent-hover);
    outline: none;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--accent-primary);
    color: var(--text-main);
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
}

.btn-submit:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(221, 107, 32, 0.3);
}

/* FOOTER */
.site-footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-dark);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.site-footer p {
    margin-bottom: 0.5rem;
}

.site-footer p:last-child {
    margin-bottom: 0;
}

.site-footer a {
    color: var(--text-muted);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--text-main);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 160px;
    }

    .services, .moat, .sla-proof, .intake {
        padding: 4rem 0;
    }

    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    h1 {
        font-size: 2.5rem;
    }
    
    .hero-banner {
        min-height: 60vh;
        padding: 3rem 0;
    }

    .hero-banner__title {
        font-size: 2.5rem;
    }

    .hero-banner__subtitle {
        font-size: 1.2rem;
    }

    .hero-banner__description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-banner__actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-banner__actions .btn {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .site-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }
    
    .desktop-nav {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .metrics-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .intake-header h2 {
        font-size: 2rem;
    }
    
    .intake-header h3 {
        font-size: 1.2rem;
    }
}

.no-underline {
    text-decoration: none !important;
    color: inherit !important;
}

/* Navy & Burnt Orange Overrides for Standup Bros */
:root {
    --bg-dark: #0b1329;
    /* Deep Midnight/Slate Blue */
    --bg-surface: #1a365d;
    /* Sleek Dark Blue */
    --text-main: #f4f6f8;
    /* Crisp Slate White */
    --text-muted: #cbd5e0;
    /* Light Gray */
    --accent-primary: #dd6b20;
    /* Burnt Orange */
    --accent-hover: #c05621;
    /* Darker Burnt Orange */
    --border-color: #2d3748;
    /* Medium Slate Blue Border */
}



/* PRICING TIERS GRID */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-hover);
}

/* Draws attention to your highest-margin tier */
.highlight-card {
    border-top: 4px solid var(--text-main);
}

.tier-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.tier-card h3 {
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.tier-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.tier-subtitle {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 0;
}

.tier-body p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

/* Callout boxes for the Reality Check / Solution math */
.tier-feature {
    background: var(--bg-dark);
    padding: 1.25rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-hover);
}

.tier-feature strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}