/* ============================================
   Base Styles
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--color-bg-white);
    color: var(--color-text-primary);
    line-height: 1.6;
}

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

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

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

/* ============================================
   Typography
   ============================================ */
.font-display {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.font-mono {
    font-family: 'Inter', monospace;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.label {
    font-size: 11px !important;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: #f3f3f3;
    width: fit-content;
    padding: 6px 15px 3px 15px;
    border-radius: 30px;
    margin: 0 auto;
}

/* ============================================
   Sections
   ============================================ */
section {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 50px 0px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-primary-20) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }

    .cta-card {
        width: 86%;
    }

    .cta-link-card {
        width: 86%;
    }
}

.hero-label {
    margin-bottom: 18px;
}

.hero h1 {
    font-family: 'Inter', serif;
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    ;
}

.hero-body {
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    max-width: 600px;
}

.hero-actions {
    margin-top: 36px;
}

.email-form {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 6px;
    background: var(--color-bg-white);
    border: 1.5px solid var(--color-border-medium);
    max-width: 440px;
    box-shadow: 0 2px 12px var(--color-shadow-light);
}

.email-form input {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--color-text-primary);
    min-width: 0;
}

.email-form input::placeholder {
    color: var(--color-text-placeholder);
}

.btn-primary {
    flex-shrink: 0;
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-text-white);
    border: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #1A1A2E;
}

.btn-primary-dark {
    padding: 12px 24px;
    background: #1A1A2E;
    color: var(--color-text-white);
    border: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
}

.btn-primary-dark:hover {
    background: #1A1A2E;
}

.hero-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

.hero-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color 0.2s;
}

.hero-link:hover {
    color: #1A1A2E;
}

.patent-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border: 1.5px solid var(--color-primary-40);
    color: #1A1A2E;
    background: var(--color-primary-10);
    border-radius: 999px;
}

.hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--color-shadow-light);
}

/* Property Cards */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.property-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 60%);
}

.property-card-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
}

.property-card-label p:first-child {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
}

.property-card-label p:last-child {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    margin-top: 2px;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--color-bg-white);
    padding: 48px 0;
    border-bottom: 1px solid var(--color-border-divider);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.stat-number {
    font-family: 'Inter', monospace;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #1A1A2E;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-top: 8px;
    line-height: 1.4;
}

/* ============================================
   EQUITY ENGINE SECTION
   ============================================ */
.section-white {
    background: var(--color-bg-white);
    padding: 100px 0;
}

.section-light {
    background: var(--color-bg-light);
    padding: 100px 0;
}

.section-dark {
    background: #1A1A2E;
    padding: 100px 0;
}

.section-header {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-family: 'Inter', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    margin-top: 16px;
}

.section-header.dark h2 {
    color: var(--color-text-white);
}

.section-header.dark .label {
    color: #362c72 !important;
}

.section-header p {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.section-header.dark p {
    color: rgba(255, 255, 255, 0.65);
}

/* Comparison Cards */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .compare-grid {
        grid-template-columns: 1fr;
    }
}

.compare-card {
    padding: 36px;
    border-radius: 20px;
    border: 1.5px solid var(--color-border-light);
    background: var(--color-bg-white);
}

.compare-card.dark {
    background: #1A1A2E;
    border-color: var(--color-primary-40);
}

.compare-card .card-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 14px;
}

.compare-card.dark .card-label {
    color: rgba(255, 255, 255, 0.7);
}

.compare-card h3 {
    font-family: 'Inter', serif;
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-bottom: 28px;
}

.compare-card.dark h3 {
    color: var(--color-text-white);
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F3F0FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Inter', monospace;
    font-weight: 700;
    font-size: 13px;
    color: #1A1A2E;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 13px;
    top: 70px;
    bottom: -60px;
    width: 10px;
}



.step-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-primary);
}

.step-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-top: 3px;
}

.compare-card.dark .step-title {
    color: var(--color-text-white);
}

.compare-card.dark .step-desc {
    color: rgba(255, 255, 255, 0.6);
}

.card-footer {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--color-border-light);
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.compare-card.dark .card-footer {
    border-top-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
}

.card-footer strong {
    color: var(--color-text-primary);
}

.compare-card.dark .card-footer strong {
    color: var(--color-text-white);
}

/* Mini Stats Row */
.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 56px auto 0;
    text-align: center;
}

.mini-stat-num {
    font-family: 'Inter', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #1A1A2E;
}

.mini-stat-title {
    font-weight: 600;
    font-size: 13px;
    margin-top: 8px;
    color: var(--color-text-primary);
}

.mini-stat-sub {
    font-size: 11px;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

/* ============================================
   DARK SECTION - Alternative
   ============================================ */
.dark-section {
    background: #1A1A2E;
    padding: 100px 0;
}

.dark-section .section-header h2 {
    color: var(--color-text-white);
    font-style: italic;
}

.dark-section .section-header .label {
    color: #362c72 !important;
}

.dark-section .section-header p {
    color: rgba(255, 255, 255, 0.65);
}

/* Three Column Features */
.three-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .three-cols {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.feature-card .fc-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
}

.feature-card.highlighted {
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-card h3 {
    font-family: 'Inter', serif;
    font-size: 1.25rem;
    color: var(--color-text-white);
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.feature-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-icon.bad {
    color: rgba(255, 255, 255, 0.35);
}

.feature-icon.good {
    color: var(--color-accent);
}

/* Dual Benefit Box */
.dual-benefit {
    max-width: 860px;
    margin: 56px auto 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 48px;
}

.dual-benefit h3 {
    font-family: 'Inter', serif;
    font-size: 1.5rem;
    color: var(--color-text-white);
    text-align: center;
    margin-bottom: 36px;
}

.dual-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 600px) {
    .dual-cols {
        grid-template-columns: 1fr;
    }
}

.dual-col h4 {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-white);
    margin-bottom: 10px;
}

.dual-col p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
}

.dual-benefit-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
}

/* ============================================
   COMPARISON TABLE SECTION
   ============================================ */
.table-section {
    background: var(--color-bg-white);
    padding: 100px 0;
}

.table-wrap {
    max-width: 860px;
    margin: 0 auto;
    overflow-x: auto;
}

table {
    width: 100%;
    font-size: 13px;
    border-collapse: separate;
    border-spacing: 0;
}

thead th {
    padding: 18px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    text-align: center;
}

thead th:first-child {
    text-align: left;
}

thead th.th-primary {
    background: #1A1A2E;
    color: var(--color-text-white);
    border-radius: 12px 12px 0 0;
}

tbody tr:nth-child(odd) {
    background: var(--color-bg-light);
}

tbody tr:nth-child(even) {
    background: var(--color-bg-white);
}

tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border-divider);
    text-align: center;
    font-family: 'Inter', monospace;
    font-weight: 500;
    color: var(--color-text-secondary);
}

tbody td:first-child {
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--color-text-primary);
    font-size: 12px;
}

.td-primary {
    background: var(--color-primary-10) !important;
    font-weight: 700 !important;
    color: #1A1A2E !important;
}

.td-savings-badge {
    display: inline-block;
    background: #1A1A2E;
    color: var(--color-text-white);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
}



/* ── Show/hide ── */
.table-desktop {
    display: block;
}

.table-mobile {
    display: none;
}

@media (max-width: 767px) {
    .table-desktop {
        display: none;
    }

    .table-mobile {
        display: block;
    }
}

/* ════════════════════════════════════
   BORROWER PROFILE ACCORDION
════════════════════════════════════ */

.bp-accordion {
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.bp-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.bp-item:last-child {
    border-bottom: none;
}

.bp-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A2E;
    text-align: left;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s;
}

.bp-trigger:hover {
    background: rgba(0, 0, 0, 0.02);
}

.bp-chevron {
    flex-shrink: 0;
    color: #666666;
    transition: transform 0.25s ease;
}

.bp-item.active .bp-chevron {
    transform: rotate(180deg);
}

.bp-panel {
    display: none;
    padding: 0 8px 10px;
}

.bp-item.active .bp-panel {
    display: block;
}

/* ── Rows ── */
.bp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 4px;
    background: #f8f8f8;
}

.bp-row--sc {
    background: rgba(54, 44, 114, 0.05);
}

.bp-row--save {
    background: rgba(22, 163, 74, 0.06);
}

.bp-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888888;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
}

.bp-label--sc {
    color: #362C72;
}

.bp-value {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A2E;
    font-family: 'Inter', sans-serif;
    text-align: right;
}



/* ── Show/hide ── */
.dt-desktop {
    display: block;
}

.dt-mobile {
    display: none;
}

@media (max-width: 767px) {
    .dt-desktop {
        display: none;
    }

    .dt-mobile {
        display: block;
    }
}

/* ════════════════════════════════════
   DARK TABLE ACCORDION
════════════════════════════════════ */

.dt-accordion {
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: #16162a;
}

.dt-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dt-item:last-child {
    border-bottom: none;
}

.dt-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #e0e0f0;
    text-align: left;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s;
}

.dt-trigger:hover {
    background: rgba(255, 255, 255, 0.03);
}

.dt-chevron {
    flex-shrink: 0;
    color: #555570;
    transition: transform 0.25s ease;
}

.dt-item.active .dt-chevron {
    transform: rotate(180deg);
}

.dt-panel {
    display: none;
    padding: 0 8px 10px;
}

.dt-item.active .dt-panel {
    display: block;
}

/* ── Rows ── */
.dt-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 4px;
    background: rgba(255, 255, 255, 0.04);
}

.dt-row--sc {
    background: rgba(255, 255, 255, 0.08);
    border-left: 3px solid rgba(255, 255, 255, 0.25);
}

.dt-row--adv {
    background: rgba(22, 163, 74, 0.1);
}

.dt-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555570;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
}

.dt-label--sc {
    color: #8888aa;
}

.dt-value {
    font-size: 14px;
    font-weight: 600;
    color: #e0e0f0;
    font-family: 'Inter', sans-serif;
    text-align: right;
}

.dt-value--sc {
    color: #ffffff;
}


/* ============================================
   CASH FLOW SECTION
   ============================================ */
.cashflow-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .cashflow-cards {
        grid-template-columns: 1fr;
    }
}

.cashflow-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px;
}

.cashflow-card.highlighted {
    border-color: rgba(255, 255, 255, 0.3);
}

.cashflow-card h4 {
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.cashflow-card.highlighted h4 {
    color: var(--color-text-white);
}

.cf-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 14px;
}

.cf-row span:first-child {
    color: rgba(255, 255, 255, 0.65);
}

.cf-row span:last-child {
    font-family: 'Inter', monospace;
    color: var(--color-text-white);
}

.cf-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 16px 0;
}

.cf-total {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding-top: 4px;
}

.cf-total span:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
}

.cf-total span:last-child {
    font-family: 'Inter', monospace;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.cashflow-card.highlighted .cf-total span:last-child {
    color: var(--color-text-white);
}

.cf-coc {
    margin-top: 32px;
    text-align: center;
}

.coc-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.coc-num {
    font-family: 'Inter', monospace;
    font-weight: 700;
    font-size: 2.75rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 8px;
}

.cashflow-card.highlighted .coc-num {
    color: var(--color-text-white);
}

.coc-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 6px;
}

/* Deal Params */
.deal-params {
    max-width: 860px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 40px;
}

.dp-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
}

.dp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 600px) {
    .dp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dp-item-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.dp-item-value {
    font-family: 'Inter', monospace;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text-white);
    margin-top: 8px;
}

/* ============================================
   CAP RATE TABLE (dark)
   ============================================ */
.dark-table-wrap {
    max-width: 860px;
    margin: 0 auto;
    overflow-x: auto;
}

.dark-table {
    width: 100%;
    font-size: 13px;
    border-collapse: separate;
    border-spacing: 0;
}

.dark-table th {
    padding: 18px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}

.dark-table th:first-child {
    text-align: left;
}

.dark-table th.th-light {
    color: var(--color-text-white);
}

.dark-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-family: 'Inter', monospace;
    font-weight: 500;
    color: #1A1A2E;
}

.dark-table td:first-child {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1A1A2E;
    text-align: left;
}

.dark-table td.td-sc {
    font-weight: 700;
    color: #1A1A2E;
}

.advantage-badge {
    display: inline-block;
    background: #1A1A2E;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
}

/* ============================================
   INVESTOR PROFILES
   ============================================ */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .profile-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}

.profile-card {
    background: var(--color-bg-white);
    border: 1.5px solid var(--color-border-light);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.profile-card:hover {
    border-color: var(--color-primary-40);
    box-shadow: 0 4px 20px var(--color-primary-10);
}

.profile-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--color-bg-light);
    color: var(--color-text-secondary);
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.profile-card h3 {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.profile-card p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.75;
}

/* ============================================
   DEAL WALKTHROUGH
   ============================================ */
.steps-list {
    display: flex;
    flex-direction: column;
    max-width: 820px;
    margin: 0 auto;
}

.walk-step {
    display: flex;
    gap: 24px;
    padding-bottom: 40px;
    position: relative;
}

.walk-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1A1A2E;
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', monospace;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.step-line {
    width: 1.5px;
    flex: 1;
    background: var(--color-border-light);
    margin-top: 8px;
}

.walk-step-right {
    flex: 1;
    padding-bottom: 4px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.step-header h3 {
    font-weight: 600;
    font-size: 17px;
    color: var(--color-text-primary);
}

.step-badge {
    font-size: 10px;
    font-family: 'Inter', monospace;
    font-weight: 700;
    background: #1A1A2E;
    color: var(--color-text-white);
    padding: 3px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.step-body {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.75;
}

.walkthrough-summary {
    margin-top: 32px;
    padding: 32px;
    background: var(--color-bg-light);
    border: 1.5px solid var(--color-border-light);
    border-radius: 16px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.sum-num {
    font-family: 'Inter', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A2E;
}

.sum-label {
    font-size: 12px;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

/* ============================================
   EQUITY CHART SECTION
   ============================================ */
.chart-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

.legend-line {
    width: 32px;
    height: 3px;
    border-radius: 99px;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.chart-container {
    background: var(--color-bg-white);
    border: 1.5px solid var(--color-border-light);
    border-radius: 20px;
    padding: 32px;
    max-width: 860px;
    margin: 0 auto;
}

.chart-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.chart-stat {
    text-align: center;
    padding: 24px;
    background: var(--color-bg-white);
    border: 1.5px solid var(--color-border-light);
    border-radius: 14px;
}

.cs-num {
    font-family: 'Inter', serif;
    font-size: 2rem;
    color: var(--color-text-primary);
}

.cs-num.cs-primary {
    background: #1A1A2E;
    color: var(--color-text-white);
    padding: 4px 16px;
    border-radius: 8px;
    display: inline-block;
}

.cs-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-top: 8px;
}

/* ============================================
   STRUCTURAL ADVANTAGES
   ============================================ */
.advantage-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .advantage-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.advantage-col h3 {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1A1A2E;
}

.adv-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 14px;
}

.adv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.adv-dot.gain {
    background: #1A1A2E;
}

.adv-dot.lose {
    background: var(--color-border-medium);
}

/* ============================================
   ASSET CLASSES GRID
   ============================================ */
.asset-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--color-border-medium);
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .asset-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .asset-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.asset-cell {
    background: var(--color-bg-white);
    padding: 24px 20px;
    transition: background 0.15s;
}

.asset-cell:hover {
    background: var(--color-bg-hero-start);
}

.asset-cell.highlight {
    background: #1A1A2E;
}

.asset-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-primary);
}

.asset-cell.highlight .asset-name {
    color: var(--color-text-white);
}

.asset-desc {
    font-size: 11px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-top: 6px;
}

.asset-cell.highlight .asset-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PORTFOLIO SCALING
   ============================================ */
.scaling-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.sc-num {
    font-family: 'Inter', monospace;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1A1A2E;
}

.sc-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-primary);
    margin-top: 8px;
}

.sc-body {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-top: 12px;
}

/* ============================================
   AG LAND SECTION
   ============================================ */
.ag-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto 48px;
}

@media (max-width: 768px) {
    .ag-grid {
        grid-template-columns: 1fr;
    }
}

.ag-card {
    background: var(--color-bg-white);
    border: 1.5px solid var(--color-border-light);
    border-radius: 16px;
    padding: 36px;
}

.ag-card h3 {
    font-family: 'Inter', serif;
    font-size: 1.25rem;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.ag-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 12px;
}

.ag-highlight {
    max-width: 720px;
    margin: 0 auto;
    background: var(--color-bg-white);
    border: 1.5px solid var(--color-border-light);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    font-size: 15px;
    color: var(--color-text-primary);
    line-height: 1.85;
}

/* ============================================
   FLEXIBILITY SECTION
   ============================================ */
.flex-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 600px) {
    .flex-grid {
        grid-template-columns: 1fr;
    }
}

.flex-card h3 {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.flex-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

.trust-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px;
}

.trust-card h3 {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text-white);
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
}

/* ============================================
   FULL COMPARE TABLE (dark bg)
   ============================================ */
.full-compare {
    background: #1A1A2E;
    padding: 80px 0;
}

.fc-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 900px;
    margin: 0 auto;
}

.fc-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 8px;
    padding: 0 20px;
}

.fc-col-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.fc-col-label.bad {
    color: #F87171;
}

.fc-col-label.good {
    color: var(--color-text-white);
}

.fc-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 10px;
    align-items: center;
}

.fc-row:nth-child(odd) {
    background: rgba(255, 255, 255, 0.05);
}

.fc-row-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.fc-bad {
    text-align: center;
    font-size: 13px;
    color: rgba(248, 113, 113, 0.8);
    font-weight: 500;
}

.fc-good {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-white);
}

/* ============================================
   TERM SHEET
   ============================================ */
.term-box {
    background: var(--color-bg-white);
    border: 1.5px solid var(--color-border-light);
    border-radius: 20px;
    padding: 40px 48px;
    max-width: 680px;
    margin: 0 auto;
}

.term-box h3 {
    font-family: 'Inter', serif;
    font-size: 1.25rem;
    color: var(--color-text-primary);
    margin-bottom: 24px;
}

.term-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border-divider);
    font-size: 13px;
    gap: 24px;
}

.term-row:last-of-type {
    border-bottom: none;
}

.term-key {
    font-weight: 500;
    color: var(--color-text-primary);
    flex-shrink: 0;
}

.term-val {
    color: var(--color-text-secondary);
    text-align: right;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #1A1A2E;
    color: var(--color-text-white);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
    text-decoration: none;
    margin-top: 24px;
}

.download-btn:hover {
    background: #1A1A2E;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border-light);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    text-align: left;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.4;
    gap: 20px;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary-10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 300;
    color: #1A1A2E;
    transition: background 0.2s;
}

.faq-q:hover .faq-icon {
    background: var(--color-primary-20);
}

.faq-a {
    display: none;
    padding-bottom: 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

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

.faq-item.open .faq-icon {
    background: #1A1A2E;
    color: var(--color-text-white);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #1A1A2E 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Inter', serif;
    font-style: italic;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-text-white);
    line-height: 1.1;
    max-width: 640px;
    margin: 0 auto 20px;
}

.cta-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.cta-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 760px;
    margin: 56px auto 0;
}

@media (max-width: 640px) {
    .cta-cards {
        grid-template-columns: 1fr;
    }
}

.cta-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 36px;
    text-align: left;
}

.cta-card h3 {
    font-weight: 600;
    font-size: 18px;
    color: var(--color-text-white);
    margin-bottom: 10px;
}

.cta-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 24px;
}

.email-form-dark {
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.email-form-dark input {
    flex: 1;
    padding: 11px 18px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--color-text-white);
    min-width: 0;
}

.email-form-dark input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.btn-white {
    flex-shrink: 0;
    padding: 11px 22px;
    background: var(--color-text-white);
    color: #1A1A2E;
    border: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.btn-white:hover {
    opacity: 0.9;
}

.cta-link-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 36px;
    text-align: left;
    display: block;
    transition: background 0.2s;
}

.cta-link-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-link-card h3 {
    font-weight: 600;
    font-size: 18px;
    color: var(--color-text-white);
    margin-bottom: 10px;
}

.cta-link-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 24px;
}

.cta-arrow {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-white);
}

.cta-footnote {
    margin-top: 48px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   BADGE TAG
   ============================================ */
.tag-badge {
    display: inline-block;
    background: #1A1A2E;
    color: var(--color-text-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

/* Utility */
.text-center {
    text-align: center;
}

.mt-10 {
    margin-top: 40px;
}

.mt-8 {
    margin-top: 32px;
}

.mt-6 {
    margin-top: 24px;
}

.body-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.body-text.dark {
    color: rgba(255, 255, 255, 0.65);
}

.footnote {
    font-size: 12px;
    color: var(--color-text-secondary);
    margin-top: 32px;
    line-height: 1.65;
}

.footnote.dark {
    color: rgba(255, 255, 255, 0.45);
}

.link-arrow {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A2E;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    transition: opacity 0.2s;
}

.link-arrow:hover {
    opacity: 0.75;
}

.link-arrow.white {
    color: var(--color-text-white);
}