:root {
    --color-background: #071127;
    --color-surface: rgba(255, 255, 255, 0.055);
    --color-surface-strong: rgba(255, 255, 255, 0.085);
    --color-surface-border: rgba(255, 255, 255, 0.13);
    --color-text: rgba(255, 255, 255, 0.92);
    --color-muted: rgba(255, 255, 255, 0.68);
    --color-light: rgba(255, 255, 255, 0.48);
    --color-accent-blue: #3168ff;
    --color-accent-teal: #00b87a;
    --color-accent: #1c9edb;
    --color-image-fallback: #10245f;
    --content-width: 760px;
    --page-padding-block: 56px;
    --page-padding-inline: 22px;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300 800;
    font-stretch: 100%;
    src: url('./fonts/open-sans.woff2') format('woff2');
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    padding: var(--page-padding-block) var(--page-padding-inline);
    display: flex;
    justify-content: center;
    background:
        radial-gradient(circle at 18% 16%, rgba(49, 104, 255, 0.22), transparent 34%),
        radial-gradient(circle at 84% 18%, rgba(0, 184, 122, 0.16), transparent 32%),
        linear-gradient(135deg, #071127 0%, #0b1f3f 48%, #063f3a 100%);
    color: var(--color-text);
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.65;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(49, 104, 255, 0.10), transparent 42%, rgba(0, 184, 122, 0.10)),
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: auto, 64px 64px, 64px 64px;
    opacity: 0.75;
}

.container,
.service-page,
.bio-page {
    width: min(100%, var(--content-width));
    position: relative;
}

.container {
    --content-width: 640px;
}

.bio-page {
    --content-width: 860px;
}

a {
    color: var(--color-text);
    text-decoration: underline;
    text-decoration-color: rgba(0, 184, 122, 0.8);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover,
a:focus-visible {
    color: var(--color-accent-teal);
    text-decoration-color: currentColor;
}

a:focus-visible {
    outline: 2px solid var(--color-accent-teal);
    outline-offset: 3px;
}

strong {
    color: var(--color-text);
    font-weight: 700;
}

.top-nav,
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.top-nav {
    margin-bottom: 78px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.brand-link img {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.back-link {
    color: var(--color-muted);
    font-size: 14px;
}

.footer {
    margin-top: 46px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

.footer p {
    margin: 0;
}

.footer-copy {
    color: var(--color-muted);
}

.footer-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    color: var(--color-light);
}

.footer-nav a {
    color: var(--color-muted);
    text-decoration-color: rgba(0, 184, 122, 0.55);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: var(--color-text);
    text-decoration-color: var(--color-accent-teal);
}

/* Home / profile page */
.intro {
    margin-bottom: 54px;
}

.micahstephens,
.micahstephens {
    margin: 0 0 34px;
    color: var(--color-text);
    font-size: clamp(44px, 8vw, 78px);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.92;
}

.profile-image {
    width: 128px;
    height: 128px;
    margin: 0 0 30px;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(49, 104, 255, 0.68), rgba(0, 184, 122, 0.56));
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.profile-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tagline {
    margin: 0;
    color: var(--color-text);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.55;
}

.section {
    margin-bottom: 28px;
    padding: 24px 26px;
    background: var(--color-surface);
    border: 1px solid var(--color-surface-border);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.section-title {
    margin: 0 0 16px;
    color: var(--color-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.3;
    text-transform: uppercase;
}

.section-list,
.feature-list {
    margin: 0;
    padding-left: 1.15rem;
}

.section-list li,
.feature-list li {
    margin-bottom: 12px;
    padding-left: 0.25rem;
    color: var(--color-muted);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.65;
}

.section-list li:last-child,
.feature-list li:last-child {
    margin-bottom: 0;
}

.section-list li::marker,
.feature-list li::marker {
    color: var(--color-accent-teal);
}

/* Service pages */
.hero {
    margin-bottom: 36px;
}

.hero .micahstephens,
.summary-label,
.cta-panel .micahstephens,
.bio-hero .micahstephens {
    margin: 0 0 16px;
    color: var(--color-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

h1 {
    max-width: 720px;
    margin: 0 0 24px;
    color: var(--color-text);
    font-size: clamp(42px, 7.5vw, 76px);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.96;
}

.lede {
    max-width: 660px;
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: 300;
    line-height: 1.58;
}

.summary-card,
.content-section,
.cta-panel,
.bio-card,
.bio-note {
    margin-bottom: 28px;
    padding: 28px 30px;
    background: var(--color-surface);
    border: 1px solid var(--color-surface-border);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.summary-card,
.bio-note {
    background: var(--color-surface-strong);
}

.summary-card p,
.content-section p,
.cta-panel p,
.bio-card p,
.bio-note p {
    margin: 0 0 16px;
    color: var(--color-muted);
    font-size: 16px;
    font-weight: 300;
}

.summary-card p:last-child,
.content-section p:last-child,
.cta-panel p:last-child,
.bio-card p:last-child,
.bio-note p:last-child {
    margin-bottom: 0;
}

h2 {
    margin: 0 0 18px;
    color: var(--color-text);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.process-list {
    display: grid;
    gap: 18px;
}

.process-list article {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.process-list span {
    display: block;
    margin-bottom: 8px;
    color: var(--color-accent-teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.process-list h3 {
    margin: 0 0 8px;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.process-list p {
    margin: 0;
}

.cta-panel {
    margin-top: 36px;
    background: linear-gradient(135deg, rgba(49, 104, 255, 0.16), rgba(0, 184, 122, 0.12)), var(--color-surface);
}

.cta-link {
    display: inline-flex;
    margin-top: 8px;
    color: var(--color-text);
    font-weight: 700;
}

/* Founder / bio page */
.bio-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    gap: 44px;
    align-items: end;
    margin-bottom: 36px;
}

.bio-hero h1 {
    font-size: clamp(48px, 8vw, 86px);
    line-height: 0.94;
}

.bio-hero .lede {
    max-width: 560px;
}

.founder-photo {
    margin: 0;
}

.photo-placeholder {
    aspect-ratio: 4 / 5;
    width: 100%;
    min-height: 340px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--color-surface-border);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(49, 104, 255, 0.16), rgba(0, 184, 122, 0.12)), rgba(255, 255, 255, 0.045);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
}

.photo-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder span {
    color: var(--color-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.bio-card,
.bio-note {
    padding: 30px 32px;
}

@media (max-width: 720px) {
    .bio-hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .founder-photo {
        max-width: 360px;
    }
}

@media (max-width: 560px) {
    :root {
        --page-padding-block: 34px;
        --page-padding-inline: 18px;
    }

    .top-nav {
        margin-bottom: 52px;
    }

    .brand-link span {
        display: none;
    }

    h1 {
        font-size: clamp(40px, 13vw, 58px);
    }

    .bio-hero h1 {
        font-size: clamp(46px, 15vw, 64px);
    }

    .summary-card,
    .content-section,
    .cta-panel,
    .bio-card,
    .bio-note,
    .section {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .photo-placeholder {
        min-height: 300px;
        border-radius: 18px;
    }

    .footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .footer-nav {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .intro {
        margin-bottom: 40px;
    }

    .intro .micahstephens,
    .micahstephens {
        margin-bottom: 28px;
        font-size: clamp(42px, 14vw, 58px);
    }

    .profile-image {
        width: 112px;
        height: 112px;
    }

    .tagline {
        font-size: 18px;
    }

    .section {
        margin-bottom: 22px;
    }
}
