/* =========================================================
   Business / Finance — the thesis page
   Deliberately minimal & abstract: no screenshots, no badges,
   thin lines and quiet text links instead of buttons.
   Shares the palette & type system with the other subpages.
   ========================================================= */
:root {
    --char: #1f1f1f;
    --char-2: #262626;
    --tan: #d2b48c;
    --tan-deep: #a8845a;
    --ink: #2b2b2b;
    --muted: #8a8a8a;
    --card: #e7e7e7;
    --card-line: #d6d6d6;
    --inner: #ececec;
    --inner-line: #dcdcdc;
    --display: "Josefin Sans", sans-serif;
    --mono: "Roboto Mono", monospace;
}

/* Page grows; body scrolls */
.container {
    min-height: 100vh;
    height: auto;
    overflow-x: hidden;
}

.content-container {
    min-height: 100vh;
    height: auto;
    align-items: flex-start;
    background-color: #ececec;
}

/* Fixed sidebar (matches renders / programming) */
.cc-sidebar {
    position: fixed;
    top: 10px;
    left: 8px;
    height: calc(100vh - 20px);
    flex-shrink: 0;
    z-index: 10;
}

/* Main column, offset for the fixed sidebar */
.biz-main {
    width: calc(100% - 80px);
    margin-left: 80px;
    display: flex;
    flex-direction: column;
    padding: 8px 0 60px;
}

/* Shared section label */
.section-label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--tan-deep);
    margin-bottom: 26px;
}

.section-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--card-line);
}

/* =========================================================
   1) HERO — abstract chart, single statement
   ========================================================= */
.biz-hero {
    position: relative;
    height: 440px;
    border-radius: 28px;
    overflow: hidden;
    background-color: var(--char);
}

.biz-hero-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.biz-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 18, 16, 0.92) 0%, rgba(20, 18, 16, 0.55) 38%, rgba(20, 18, 16, 0.05) 70%);
}

.biz-hero-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 48px 56px;
}

.biz-eyebrow {
    display: inline-block;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--tan);
    margin-bottom: 18px;
}

.biz-hero-statement {
    font-family: var(--display);
    font-weight: 700;
    font-size: 34px;
    line-height: 1.35;
    max-width: 820px;
    color: #f2f0eb;
}

.biz-accent {
    color: var(--tan);
}

/* =========================================================
   2) HEADING + trajectory
   ========================================================= */
.biz-head {
    padding: 40px 6px 0;
}

.biz-title {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 82px;
    line-height: 0.95;
    letter-spacing: -1px;
    color: var(--ink);
}

.biz-sub {
    display: inline-block;
    margin-top: 6px;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--tan-deep);
}

.trajectory-card {
    margin: 24px 6px 0;
    background-color: var(--char);
    border-radius: 28px;
    padding: 48px 56px 44px;
}

.trajectory-eyebrow {
    display: block;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--tan);
    margin-bottom: 34px;
}

.trajectory {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.trajectory::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tan) 15%, var(--tan) 85%, transparent);
    opacity: 0.4;
}

.traj-item {
    position: relative;
    padding-top: 30px;
}

.traj-dot {
    position: absolute;
    top: 0;
    left: 0;
    height: 11px;
    width: 11px;
    border-radius: 50%;
    background-color: #3a352d;
    border: 1px solid var(--tan);
}

.traj-dot-final {
    background-color: var(--tan);
}

.traj-label {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 18px;
    color: #f2f0eb;
    margin-bottom: 10px;
}

.traj-text {
    font-size: 13.5px;
    line-height: 1.7;
    color: #a9a49c;
    max-width: 95%;
}

/* "Şimdi" — concrete technical + market points */
.traj-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.traj-point {
    display: flex;
    gap: 10px;
    font-size: 13px;
    line-height: 1.65;
    color: #a9a49c;
}

.traj-tag {
    flex-shrink: 0;
    width: 46px;
    padding-top: 2px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--tan);
}

/* =========================================================
   3) THREE THESES — quiet, no imagery, no badges
   ========================================================= */
.theses {
    padding: 44px 6px 0;
}

.theses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-items: stretch;
}

.thesis {
    background-color: var(--card);
    border: 1px solid var(--card-line);
    border-radius: 22px;
    padding: 34px 32px;
    display: flex;
    flex-direction: column;
}

.thesis-num {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--tan-deep);
    margin-bottom: 16px;
}

.thesis-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 16px;
}

.thesis-p {
    font-size: 13.5px;
    line-height: 1.75;
    color: #5f5f5f;
}

.thesis-p + .thesis-p {
    margin-top: 12px;
}

.thesis-hl {
    font-weight: 600;
    color: var(--ink);
}

/* Capital horizons list */
.horizon-list {
    list-style: none;
    margin: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.horizon-list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 13.5px;
    color: #5f5f5f;
}

.horizon-tag {
    flex-shrink: 0;
    width: 44px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--tan-deep);
}

/* =========================================================
   4) CLOSING — a declaration, no CTA
   ========================================================= */
.biz-closing {
    margin: 44px 6px 0;
    padding: 64px 40px;
    text-align: center;
    border-top: 1px solid var(--card-line);
}

.closing-eyebrow {
    display: block;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--tan-deep);
    margin-bottom: 20px;
}

.closing-statement {
    font-family: var(--display);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    color: var(--ink);
    max-width: 760px;
    margin: 0 auto;
}

/* Single consolidated quiet link */
.closing-link {
    display: inline-block;
    margin-top: 30px;
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: 0.5px;
    color: var(--muted);
    text-decoration: underline;
    text-decoration-color: var(--card-line);
    text-underline-offset: 4px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.closing-link i {
    color: var(--tan-deep);
    margin: 0 3px;
}

.closing-link:hover {
    color: var(--tan-deep);
    text-decoration-color: var(--tan-deep);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
    .biz-hero { height: auto; min-height: 360px; }
    .biz-hero-statement { font-size: 26px; }
    .trajectory { grid-template-columns: 1fr; gap: 26px; }
    .trajectory::before { display: none; }
    .theses-grid { grid-template-columns: 1fr; }
    .biz-title { font-size: 56px; }
    .closing-statement { font-size: 24px; }
}

@media (max-width: 1024px) {
    /* undo the fixed sidebar; root stylesheet turns it into a top nav */
    .cc-sidebar {
        position: static;
        height: auto;
    }

    .biz-main {
        width: 100%;
        margin-left: 0;
        padding-top: 0;
    }

    .biz-hero { min-height: 320px; }
    .biz-hero-text { padding: 26px 22px; }
    .biz-eyebrow { margin-bottom: 12px; }
    .biz-hero-statement { font-size: 21px; }

    .biz-head { padding: 26px 4px 0; }
    .biz-title { font-size: 44px; letter-spacing: 0; }

    .trajectory-card { padding: 30px 24px; margin-top: 18px; }
    .trajectory-eyebrow { margin-bottom: 24px; }

    .theses { padding-top: 34px; }
    .thesis { padding: 26px 22px; }
    .thesis-title { font-size: 20px; }

    .biz-closing { padding: 44px 14px; margin-top: 32px; }
    .closing-statement { font-size: 21px; }
}
