/* Layout */
.content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5vh 5vw 2vh 5vw;
    justify-content: center;
    /* Center content vertically */
}

.slide-header {
    margin-bottom: 1.5vh;
    /* Reduced margin */
}

/* Force subtitle to one line */
.slide-header .subtitle {
    max-width: 100%;
    white-space: nowrap;
    overflow: visible;
    font-size: 16px;
    /* slightly smaller to fit */
}

.ask-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 2.5vh;
    /* Reduced gap */
}

/* The Big Number */
.hero-ask {
    text-align: center;
    position: relative;
}

.hero-ask .label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 2vh;
    display: block;
}

.hero-ask .amount {
    font-size: 64px;
    /* Reduced from 120px */
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    /* SFO-3 Accent */
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.hero-ask .currency {
    font-size: 30px;
    vertical-align: top;
    position: relative;
    top: 10px;
    margin-right: 6px;
    color: var(--text-secondary);
}

.hero-ask .round-details {
    margin-top: 1vh;
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Use of Funds Grid */
.funds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    width: 100%;
}

/* Removed colorful top bars and specific card colors for professional look */
.fund-card::before {
    display: none;
}

.fund-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2vh 1.5vw;
    /* Reduced padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.fund-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
    /* Active SFO-3 border */
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 1.5vh;
}

.fund-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5vh 0;
}

.fund-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* Allocation Percent Badge */
.allocation-badge {
    margin-top: 1vh;
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-bg);
    /* Matching theme pill */
    border: 1px solid transparent;
    padding: 4px 10px;
    border-radius: 6px;
    /* Less rounded */
}

/* Execution Flow */
.execution-flow {
    width: 100%;
    width: 100%;
    margin-top: 2vh;
}

.execution-flow h4 {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin: 0 0 1.5vh 0;
    font-size: 13px;
    font-weight: 600;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5vw;
}

.flow-step {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5vh 0.8vw;
    text-align: center;
}

.step-time {
    font-size: 12px;
    margin-bottom: 0.3vh;
}

.step-action {
    font-size: 13px;
    margin-bottom: 0.3vh;
}

.step-desc {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.bottom-positioning-line {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 2vh;
    font-size: 14px;
}