:root {
    --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --navy-900: #13263f;
    --navy-800: #173454;
    --navy-700: #1f456d;
    --gold-500: #d4a84b;
    --gold-600: #c99731;
    --success: #0f9d58;
    --danger: #b42318;

    --bg-page: #ffffff;
    --bg-muted: #f4f6f8;
    --bg-surface: #ffffff;
    --text-main: #1a2430;
    --text-muted: #5f6b78;
    --border-main: #e5eaef;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 8px 20px rgba(19, 38, 63, 0.08);
    --shadow-md: 0 18px 40px rgba(19, 38, 63, 0.12);
    --container: 1120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background: var(--bg-page);
    line-height: 1.65;
}

.skip-link {
    position: absolute;
    left: 0.75rem;
    top: 0.6rem;
    background: var(--navy-900);
    color: #ffffff;
    padding: 0.55rem 0.8rem;
    border-radius: 8px;
    transform: translateY(-140%);
    z-index: 80;
}

.skip-link:focus {
    transform: translateY(0);
}

h1,
h2,
h3,
h4,
.section-title,
.kicker,
.btn,
.theme-toggle,
.nav-links a {
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 2.5rem));
    margin: 0 auto;
}

.section {
    padding: 5.5rem 0;
}

.section-muted {
    background: var(--bg-muted);
}

.section-blueprint {
    position: relative;
    overflow: hidden;
}

.section-blueprint::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, color-mix(in srgb, var(--navy-700) 14%, transparent) 1px, transparent 1px),
        linear-gradient(to bottom, color-mix(in srgb, var(--navy-700) 14%, transparent) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.35;
    pointer-events: none;
}

.section-blueprint::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    right: -120px;
    top: -120px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.22), transparent 62%);
    pointer-events: none;
}

.section-blueprint > * {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(1.75rem, 2.2vw, 2.45rem);
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.08rem;
    max-width: 760px;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-600);
    margin-bottom: 0.85rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.82rem 1.4rem;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:focus-visible,
.link:focus-visible,
.input:focus-visible,
.select:focus-visible,
.textarea:focus-visible,
.nav-toggle:focus-visible,
.theme-toggle:focus-visible {
    outline: 3px solid rgba(212, 168, 75, 0.5);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--gold-500);
    color: #1a2430;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: #ddb865;
    transform: translateY(-1px);
}

.btn-secondary {
    border-color: var(--border-main);
    color: var(--text-main);
    background: var(--bg-surface);
}

.btn-secondary:hover {
    border-color: var(--navy-700);
}

.link {
    color: var(--navy-700);
    font-weight: 600;
}

.tag {
    border: 1px solid color-mix(in srgb, var(--navy-700) 20%, transparent);
    background: color-mix(in srgb, var(--navy-700) 8%, transparent);
    border-radius: 999px;
    font-size: 0.85rem;
    padding: 0.2rem 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.pill {
    border: 1px solid color-mix(in srgb, var(--navy-700) 20%, transparent);
    background: color-mix(in srgb, var(--navy-700) 8%, transparent);
    border-radius: 999px;
    color: var(--text-main);
    font-size: 0.86rem;
    padding: 0.35rem 0.7rem;
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(8px);
    background: color-mix(in srgb, var(--bg-page) 92%, transparent);
    border-bottom: 1px solid var(--border-main);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 60;
    pointer-events: none;
    background: color-mix(in srgb, var(--navy-900) 20%, transparent);
}

.scroll-progress-bar {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #ddb865, #d4a84b);
    transition: width 0.1s linear;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 106px;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 700;
    color: var(--text-main);
}

.brand-logo {
    width: 168px;
    height: 80px;
    object-fit: cover;
    object-position: center;
}

.brand-fallback {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.96rem;
}

.nav-links a.active,
.nav-links a[aria-current='page'] {
    color: var(--text-main);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--gold-500);
    text-underline-offset: 0.4rem;
}

.nav-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid var(--border-main);
    background: var(--bg-surface);
    color: var(--text-main);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.theme-toggle:hover {
    border-color: var(--gold-600);
}

.theme-toggle-text {
    font-size: 0.86rem;
}

.theme-toggle-icon {
    width: 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    line-height: 1;
}

.nav-toggle {
    display: none;
    border: 1px solid var(--border-main);
    border-radius: 10px;
    background: var(--bg-surface);
    padding: 0.45rem;
    width: 42px;
    height: 42px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text-main);
    margin: 5px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-cta {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 35;
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 4.5rem;
    background: radial-gradient(circle at 85% 5%, rgba(212, 168, 75, 0.2), transparent 36%),
        linear-gradient(140deg, #13263f, #1f456d);
    color: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.07rem;
    margin-bottom: 1.4rem;
}

.hero-signature {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-points {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    margin-bottom: 1.6rem;
}

.hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.hero-points .hero-check {
    color: var(--gold-500);
    margin-top: 0.25rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-card {
    background: linear-gradient(160deg, rgba(9, 23, 39, 0.72), rgba(21, 48, 76, 0.54));
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    padding: 1.4rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1rem;
    align-items: start;
    width: 100%;
    justify-self: stretch;
}

.hero-card img {
    width: 100%;
    max-width: none;
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 14px 28px rgba(8, 18, 31, 0.3);
    margin: 0;
}

.hero-card-copy {
    display: grid;
    gap: 0.6rem;
    min-width: 0;
}

.hero-card h2 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.1rem;
}

.hero-card-role {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0.1rem;
}

.hero-card-copy > p:not(.hero-card-role) {
    font-size: 1.02rem;
    margin-bottom: 0;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.hero-card small {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    padding-top: 0.45rem;
    margin-top: 0.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.proof-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-main);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.proof-card .value {
    color: var(--text-main);
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.proof-card .label {
    color: var(--text-muted);
    font-weight: 600;
}

.evidence-board {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 1rem;
}

.proof-bars {
    display: grid;
    gap: 0.75rem;
}

.proof-bar-card {
    border: 1px solid var(--border-main);
    border-radius: 14px;
    background: var(--bg-surface);
    padding: 0.9rem 1rem 1rem;
    box-shadow: var(--shadow-sm);
}

.proof-bar-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.7rem;
    margin-bottom: 0.55rem;
}

.proof-bar-head h3 {
    font-size: 0.96rem;
    color: var(--text-main);
}

.proof-bar-head p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-700);
}

.proof-bar-track {
    height: 10px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--navy-700) 25%, var(--border-main));
    background: color-mix(in srgb, var(--navy-700) 10%, var(--bg-surface));
    overflow: hidden;
}

.proof-bar-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #234a75, #d4a84b);
}

.evidence-ledger {
    border: 1px solid var(--border-main);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    box-shadow: var(--shadow-sm);
    padding: 1.1rem;
}

.evidence-ledger h3 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.ledger-list {
    margin-left: 1rem;
    display: grid;
    gap: 0.48rem;
    margin-bottom: 0.75rem;
}

.ledger-list li {
    color: var(--text-muted);
}

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

.compact-list {
    margin-left: 1rem;
    display: grid;
    gap: 0.35rem;
}

.compact-list li {
    color: var(--text-muted);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.card {
    background: var(--bg-surface);
    border: 1px solid var(--border-main);
    border-radius: var(--radius-md);
    padding: 1.35rem;
    box-shadow: var(--shadow-sm);
}

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

.card p,
.card li {
    color: var(--text-muted);
}

.founder-note {
    border: 1px solid color-mix(in srgb, var(--gold-500) 45%, var(--border-main));
    background: color-mix(in srgb, var(--gold-500) 10%, var(--bg-surface));
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

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

.service-card {
    border: 1px solid var(--border-main);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    background: var(--bg-surface);
}

.service-card .service-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    background: rgba(212, 168, 75, 0.3);
    margin-bottom: 0.7rem;
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
    color: var(--text-main);
}

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

.compounding {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-main);
    box-shadow: var(--shadow-md);
}

.compounding picture {
    display: block;
}

.compounding-image {
    width: 100%;
    height: auto;
}

.capacity-banner {
    border: 1px solid rgba(212, 168, 75, 0.55);
    background: rgba(212, 168, 75, 0.16);
    border-radius: var(--radius-md);
    padding: 1rem 1.1rem;
    margin-bottom: 1.2rem;
}

.capacity-banner p {
    color: var(--text-main);
    font-weight: 600;
}

.note {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.process-line {
    color: var(--text-muted);
    font-size: 0.94rem;
}

.process-line strong {
    color: var(--text-main);
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    border: 1px solid var(--border-main);
    border-radius: 12px;
    background: var(--bg-surface);
}

.faq-toggle {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    padding: 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-toggle .faq-chevron {
    transition: transform 0.25s ease;
    color: var(--gold-600);
}

.faq-panel {
    display: none;
}

.faq-item.open .faq-panel {
    display: block;
}

.faq-panel p {
    color: var(--text-muted);
    padding: 0 1rem 1rem;
}

.faq-item.open .faq-toggle .faq-chevron {
    transform: rotate(180deg);
}

.page-hero {
    background: linear-gradient(145deg, #13263f, #1f456d);
    color: #ffffff;
    padding: 4.2rem 0;
}

.page-hero h1 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 0.7rem;
}

.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
}

.blueprint-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
}

.blueprint-flow::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(31, 69, 109, 0.2), rgba(31, 69, 109, 0.55), rgba(212, 168, 75, 0.7));
    pointer-events: none;
}

.flow-step {
    position: relative;
    border: 1px solid var(--border-main);
    border-radius: 14px;
    background: var(--bg-surface);
    box-shadow: var(--shadow-sm);
    padding: 0.95rem 0.95rem 1rem;
}

.flow-step h3 {
    color: var(--text-main);
    font-size: 0.97rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.flow-step p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.52;
}

.flow-index {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-900);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
}

.policy-list {
    display: grid;
    gap: 0.8rem;
}

.policy-item {
    border-left: 4px solid var(--gold-500);
    background: var(--bg-surface);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow-sm);
}

.policy-item h3 {
    color: var(--text-main);
    font-size: 1.03rem;
    margin-bottom: 0.3rem;
}

.profile {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) 1.05fr;
    gap: 1.25rem;
    align-items: start;
}

.profile-photo {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-main);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.profile-photo img {
    width: 100%;
    height: auto;
}

.profile-copy h2 {
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.profile-copy .title {
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1rem;
}

.statement {
    border: 1px solid rgba(212, 168, 75, 0.55);
    background: rgba(212, 168, 75, 0.12);
    border-radius: var(--radius-md);
    padding: 1rem 1.1rem;
}

.statements {
    display: grid;
    gap: 0.8rem;
}

.scripture-quote {
    margin: 0.9rem 0;
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--gold-500);
    background: color-mix(in srgb, var(--gold-500) 12%, var(--bg-surface));
    color: var(--text-main);
    font-style: italic;
}

.scripture-quote cite {
    display: block;
    margin-top: 0.45rem;
    font-style: normal;
    font-weight: 700;
    color: var(--text-main);
}

.commitment-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.commitment-strip p {
    color: var(--text-muted);
    border-left: 2px solid color-mix(in srgb, var(--navy-700) 35%, var(--border-main));
    padding-left: 0.8rem;
}

.commitment-strip strong {
    color: var(--text-main);
}

.case-grid {
    display: grid;
    gap: 1rem;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 1rem;
}

.state-card {
    border: 1px solid var(--border-main);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    padding: 1.1rem;
    box-shadow: var(--shadow-sm);
}

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

.state-card.before {
    border-left: 4px solid rgba(180, 35, 24, 0.4);
}

.state-card.after {
    border-left: 4px solid rgba(15, 157, 88, 0.42);
}

.state-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-700);
    font-size: 1.2rem;
}

.case-card {
    border: 1px solid var(--border-main);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    padding: 1.25rem;
}

.case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.7rem;
}

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

.case-card p,
.case-card li {
    color: var(--text-muted);
}

.case-card ul {
    margin-left: 1.1rem;
}

.contact-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.panel {
    border: 1px solid var(--border-main);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    background: var(--bg-surface);
}

.panel h2,
.panel h3 {
    color: var(--text-main);
    margin-bottom: 0.6rem;
}

.panel p,
.panel li {
    color: var(--text-muted);
}

.panel ul {
    margin-left: 1rem;
}

.prep-checklist {
    border: 1px dashed color-mix(in srgb, var(--gold-500) 58%, var(--border-main));
    border-radius: 12px;
    padding: 0.8rem 0.85rem;
    background: color-mix(in srgb, var(--gold-500) 10%, var(--bg-surface));
}

.prep-checklist h3 {
    color: var(--text-main);
    font-size: 0.96rem;
    margin-bottom: 0.35rem;
}

.prep-list {
    list-style: none;
    display: grid;
    gap: 0.3rem;
}

.prep-list li {
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.prep-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-600);
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.form-grid {
    display: grid;
    gap: 0.9rem;
}

.form-row {
    display: grid;
    gap: 0.35rem;
}

.hidden-field {
    display: none;
}

.checkbox-row {
    margin-top: 0.1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.checkbox-label input {
    margin-top: 0.22rem;
    flex: 0 0 auto;
}

.recaptcha-row {
    margin-top: 0.1rem;
}

label {
    font-weight: 600;
    color: var(--text-main);
}

.input,
.select,
.textarea {
    width: 100%;
    border: 1px solid var(--border-main);
    border-radius: 10px;
    padding: 0.72rem 0.85rem;
    font-family: inherit;
    font-size: 0.98rem;
    background: var(--bg-surface);
    color: var(--text-main);
}

.textarea {
    resize: vertical;
    min-height: 120px;
}

.form-help {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.form-message {
    margin-top: 0.85rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.form-message.success {
    color: var(--success);
}

.form-message.error {
    color: var(--danger);
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.footer {
    background: #13263f;
    color: #ffffff;
    padding: 2.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: end;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.7rem;
}

.footer-logo {
    width: 146px;
    height: 70px;
    object-fit: cover;
    object-position: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
}

.footer a:hover {
    color: var(--gold-500);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.93rem;
}

.legal {
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.85rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hide {
    display: none;
}

body.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(12px);
}

body.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal] {
    transition:
        opacity 0.5s ease var(--reveal-delay, 0ms),
        transform 0.5s ease var(--reveal-delay, 0ms);
}

body[data-theme='dark'] {
    --bg-page: #0f1724;
    --bg-muted: #111d2d;
    --bg-surface: #162336;
    --text-main: #e6edf7;
    --text-muted: #b5c0cf;
    --border-main: #26374f;
    --shadow-sm: 0 10px 26px rgba(2, 6, 23, 0.45);
    --shadow-md: 0 20px 46px rgba(2, 6, 23, 0.5);
}

body[data-theme='dark'] .hero {
    background: radial-gradient(circle at 85% 5%, rgba(212, 168, 75, 0.24), transparent 36%),
        linear-gradient(140deg, #0d1a2b, #12263d);
}

body[data-theme='dark'] .page-hero {
    background: linear-gradient(145deg, #0d1a2b, #12263d);
}

body[data-theme='dark'] .section-blueprint::before {
    opacity: 0.25;
}

body[data-theme='dark'] .section-blueprint::after {
    background: radial-gradient(circle, rgba(212, 168, 75, 0.18), transparent 62%);
}

body[data-theme='dark'] .hero::before {
    opacity: 0.7;
}

body[data-theme='dark'] .proof-bar-track {
    border-color: #2c4262;
    background: #13243a;
}

body[data-theme='dark'] .proof-bar-fill {
    background: linear-gradient(90deg, #2d5c90, #d4a84b);
}

body[data-theme='dark'] .prep-checklist {
    border-color: rgba(212, 168, 75, 0.45);
    background: rgba(212, 168, 75, 0.08);
}

body[data-theme='dark'] .statement {
    border-color: rgba(212, 168, 75, 0.5);
    background: rgba(212, 168, 75, 0.12);
}

body[data-theme='dark'] .scripture-quote {
    background: rgba(212, 168, 75, 0.1);
}

body[data-theme='dark'] .commitment-strip p {
    border-left-color: #35557d;
}

body[data-theme='dark'] .nav-links a.active,
body[data-theme='dark'] .nav-links a[aria-current='page'] {
    color: #f2f5fa;
}

body[data-theme='dark'] .btn-secondary {
    background: #132033;
    border-color: #2d4260;
    color: #e6edf7;
}

body[data-theme='dark'] .btn-secondary:hover {
    border-color: var(--gold-500);
}

body[data-theme='dark'] .input::placeholder,
body[data-theme='dark'] .textarea::placeholder {
    color: #8d9bb0;
}

@media (max-width: 960px) {
    .hero-grid,
    .profile,
    .contact-panel,
    .two-col,
    .evidence-board {
        grid-template-columns: 1fr;
    }

    .quick-proof,
    .grid-3,
    .grid-2,
    .blueprint-flow,
    .commitment-strip {
        grid-template-columns: 1fr;
    }

    .before-after {
        grid-template-columns: 1fr;
    }

    .blueprint-flow::before {
        display: none;
    }

    .state-arrow .state-arrow-icon {
        transform: rotate(90deg);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(var(--container), calc(100% - 1.4rem));
    }

    .nav-toggle {
        display: inline-block;
    }

    .nav-wrap {
        gap: 0.5rem;
        min-height: 110px;
    }

    .theme-toggle-text {
        display: none;
    }

    .nav-links {
        position: fixed;
        left: 0;
        right: 0;
        top: 78px;
        background: var(--bg-surface);
        border-bottom: 1px solid var(--border-main);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        transform: translateY(-130%);
        transition: transform 0.2s ease;
        box-shadow: var(--shadow-sm);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .mobile-cta {
        display: inline-flex;
    }

    .section {
        padding: 4rem 0;
    }

    .hero {
        padding: 4rem 0 3.5rem;
    }

    .hero-card {
        max-width: 540px;
        justify-self: start;
    }

    .compounding {
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 520px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .brand-logo {
        width: 140px;
        height: 66px;
    }

    .footer-logo {
        width: 124px;
        height: 60px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    [data-reveal] {
        transition: none;
    }
}
