:root {
    --page-max-width: 1600px;
    --video-crop-x: 30%;
    --hero-title: #e3e7bf;
    --text-dark: #000000;
    /* Glass card — mapped from Figma: light -45° @ 80%, refraction 80, depth 20, dispersion 50, frost 25, splay 0 */
    --glass-frost-blur: 10px;
    --glass-bg: rgba(236, 236, 223, 0.45);
    --glass-border: rgba(255, 255, 255, 0.42);
    --glass-light-angle: 135deg; /* -45° light → highlight top-left, ~80% intensity */
    --glass-depth-y: 10px;
    --glass-depth-blur: 28px;
    --glass-depth-alpha: 0.16;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: "PP Neue Montreal", "Neue Montreal", "Helvetica Neue", Arial, sans-serif;
    background: #ffffff;
    color: var(--text-dark);
}

.page {
    width: 100%;
    /* max-width: var(--page-max-width);
    margin: 0 auto; */
}

.section-contained {
    max-width: var(--page-max-width);
    margin: 0 auto;
}

.hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px 14px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: calc(-1 * var(--video-crop-x));
    width: calc(100% + (2 * var(--video-crop-x)));
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.02);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(8, 14, 8, 0.16) 0%,
        rgba(8, 14, 8, 0.04) 40%,
        rgba(8, 14, 8, 0.18) 100%
    );
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-logo {
    display: block;
    width: calc(100% - 100px);
    margin: 0 30px;
    height: auto;
}

.glass-card {
    position: relative;
    margin: -58px auto 0;
    width: min(100%, 1246px);
    height: 644px;
    min-height: 644px;
    border-radius: 20px;
    padding: 52px 64px;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    /* Frost 25: lighter blur; Refraction 80: slight clarity via contrast */
    backdrop-filter: blur(var(--glass-frost-blur)) saturate(118%) contrast(1.06);
    -webkit-backdrop-filter: blur(var(--glass-frost-blur)) saturate(118%) contrast(1.06);
    /* Depth 20, Splay 0: tight shadow, no wide glow */
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 0 rgba(0, 0, 0, 0.04),
        0 var(--glass-depth-y) var(--glass-depth-blur) rgba(0, 0, 0, var(--glass-depth-alpha));
}

/* Light -45° @ 80% + dispersion 50 approximated as soft specular + subtle chroma fringe */
.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(
        var(--glass-light-angle),
        rgba(255, 255, 255, 0.44) 0%,
        rgba(255, 255, 255, 0) 42%
    );
    mix-blend-mode: soft-light;
}

.glass-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    box-shadow:
        inset 0 0 0 1px rgba(200, 220, 255, 0.12),
        inset 0 0 48px rgba(255, 245, 230, 0.06);
}

.chip {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 50px;
    line-height: 1;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.005em;
}

.dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #000;
    flex: 0 0 22px;
}

.chip-time {
    top: 64px;
    left: 80px;
}

.chip-well {
    top: 215px;
    right: 168px;
}

.chip-invested {
    top: 356px;
    left: 365px;
}

.card-caption {
    position: absolute;
    z-index: 1;
    left: 44px;
    bottom: 24px;
    margin: 0;
    font-size: 22px;
    line-height: 1.1;
    color: #000;
}

.download-btn {
    display: block;
    margin: 28px auto 0;
    border: none;
    border-radius: 12px;
    transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
    background: #d8dac1;
    color: #000000;
    font-size: clamp(16px, 1vw, 20px);
    letter-spacing: 0.02em;
    padding: 14px 38px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
}

.download-btn:hover {
    background: #000000;
    color: #ffffff;
}

/* —— Single Text Section (shared widget) —— */
.single-text-section {
    --single-text-opacity: 0;
    --single-text-blur: 16px;
    --single-text-y: 108px;
    box-sizing: border-box;
    padding: 48px 20px 24px;
}

.single-text-section__inner {
    width: min(100%, 1410px);
    margin: 0;
}

.single-text-section__kicker {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.15;
    color: #000000;
}

.dot-text-label {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.08em;
    color: #000000;
    white-space: nowrap;
}

.dot-text-label__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #000000;
    flex-shrink: 0;
}

.single-text-section__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #000000;
    flex-shrink: 0;
}

.single-text-section__text {
    margin: 0;
    margin-right: auto;
    max-width: 1120px;
    font-size: 37px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #000000;
    text-align: left;
    will-change: transform, filter, opacity;
    opacity: var(--single-text-opacity);
    transform: translateY(var(--single-text-y));
    filter: blur(var(--single-text-blur));
}

.single-text-section--thesis {
    height: 600px;
    min-height: 600px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background: #ffffff;
    padding: 170px 20px 24px;
}

.single-text-section--thesis .single-text-section__inner {
    width: min(100%, 1410px);
}

.single-text-section--thesis .single-text-section__text {
    max-width: 1100px;
}

.brand-intro-section {
    --brand-intro-opacity: 0;
    --brand-intro-blur: 14px;
    --brand-intro-y: 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("./assets/images/branded image_appear_2 - desktop.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.brand-intro-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 32px 24px;
    text-align: center;
    color: #FBFBC7;
    opacity: var(--brand-intro-opacity);
    transform: translateY(var(--brand-intro-y));
    filter: blur(var(--brand-intro-blur));
    will-change: transform, opacity, filter;
}

.brand-intro-kicker {
    margin: 0;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.brand-intro-logo {
    margin: 42px auto 0;
    display: block;
    width: min(100%, 640px);
    height: auto;
}

.brand-intro-subtitle {
    margin: 80px 0 0;
    font-size: 24px;
    line-height: 1.22;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.brand-intro-meta {
    margin: 18px 0 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.single-text-section--south {
    padding: 26px 20px 170px;
    min-height: 600px;
}

.single-text-section--south .single-text-section__text {
    margin-top: 120px;
}

/* —— Time Render Section —— */
.time-render-section {
    padding: 30px 20px 100px;
}

.time-render-wrap {
    width: 100%;
}

.time-render-title {
    margin: 0;
}

.time-render-dot {
    flex: 0 0 auto;
}

.time-render-grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: minmax(140px, 1fr) minmax(300px, 500px) minmax(140px, 1fr);
    align-items: center;
    column-gap: 24px;
}

.time-render-address,
.time-render-time {
    margin: 0;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #000000;
    text-transform: uppercase;
}

.time-render-address {
    justify-self: center;
}

.time-render-time {
    justify-self: center;
    min-width: 86px;
    text-align: center;
}

.time-render-media {
    width: 100%;
}

.time-render-video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

/* —— Time Well Invested Glass Section —— */
.invested-glass-section {
    background: #d7cc79;
    padding: 45px 20px 40px 45px;
}

.invested-glass-wrap {
    position: relative;
}

.invested-glass-columns {
    display: grid;
    grid-template-columns: 1fr minmax(560px, 1.16fr);
    align-items: center;
    column-gap: 32px;
}

.invested-copy {
    position: relative;
    z-index: 2;
}

.invested-copy-lines {
    margin: 0;
    font-size: 180px;
    line-height: 0.92;
    letter-spacing: -0.03em;
    font-weight: 500;
    color: #000000;
}

.invested-copy-btn {
    margin-top: 78px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 12px;
    transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out;
    background: rgba(244, 241, 178, 0.45);
    color: #000000;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 1;
    text-transform: uppercase;
    padding: 16px 28px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
}

.invested-copy-btn:hover {
    background: #000000;
    color: #ffffff;
}

.invested-glass-card {
    position: relative;
    z-index: 2;
    justify-self: end;
    width: 65vw;
    max-width: 930px;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    background: rgba(246, 244, 210, 0.52);
    /* Glass refs: light -45° @80, refraction 72, depth 20, dispersion 31, frost 21, splay 0 */
    backdrop-filter: blur(9px) saturate(114%) contrast(1.05);
    -webkit-backdrop-filter: blur(9px) saturate(114%) contrast(1.05);
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.56),
        inset 0 -1px 0 rgba(0, 0, 0, 0.04),
        0 10px 28px rgba(0, 0, 0, 0.14);
}

.invested-glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 46%);
    mix-blend-mode: soft-light;
}

.invested-video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    width: 540px;
    height: 695px;
    min-height: 695px;
    max-width: 100%;
    margin-left: auto;
    background: #dfdbbb;
}

.invested-video {
    position: absolute;
    top: 0;
    left: -34%;
    width: 168%;
    height: 100%;
    object-fit: cover;
    object-position: 50% center;
    transform: scale(1.04);
}

.invested-video-logo {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(80%, 470px);
    height: auto;
    z-index: 2;
}

.invested-blur-word {
    position: absolute;
    left: 38%;
    top: 66%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 120px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: rgba(12, 20, 52, 0.42);
    filter: blur(6px);
    pointer-events: none;
    z-index: 3;
}

/* —— Brand line (SIXTY · PARK) —— */
.brand-line-section {
    background: #ffffff;
    padding: 40px 50px;
}

.brand-line {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    column-gap: clamp(24px, 4.5vw, 56px);
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
}

.brand-line-col {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.brand-line-col--sixty {
    justify-content: center;
}

.brand-line-col--park {
    justify-content: center;
}

.brand-line-logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 38px;
}

.brand-line-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #000000;
    flex-shrink: 0;
}

/* —— Proximity glass card (Figma Glass: light −45° / 80%, refraction 80, depth 10, dispersion 50, frost 6, splay 0; selection #000, #FFFFFF 60%) —— */
.proximity-glass-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: clamp(48px, 7vw, 112px) 20px;
    overflow: hidden;
}

.proximity-glass-section__bg {
    position: absolute;
    inset: -4px;
    z-index: 0;
    background-color: #5a6348;
    background-image: url("./assets/images/xxabie_None_f97c3dcc-903f-4277-8cb9-75d3ef6108c9 1.png");
    background-size: cover;
    background-position: center;
}

.proximity-glass-section__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.proximity-glass-card {
    position: relative;
    width: 100%;
    max-width: 784px;
    margin: 0 auto;
    padding: 56px clamp(32px, 5.5vw, 60px);
    border-radius: 18px;
    text-align: center;
    color: #000000;
    /* Fill: #FFFFFF @ 60% */
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 22px 56px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    /* Frost 6, refraction 80, dispersion 50 (approx. via saturate), depth 10 (inset edge), splay 0 */
    backdrop-filter: blur(3px) saturate(1.8) contrast(1.04);
    -webkit-backdrop-filter: blur(6px) saturate(1.8) contrast(1.04);
}

.proximity-glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
    /* Light −45° (~135deg) @ high intensity */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 50%);
    mix-blend-mode: soft-light;
}

.proximity-glass-card__text {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 31px;
    line-height: 1.48;
    font-weight: 400;
    color: #000000;
}

.proximity-glass-card__text::selection {
    background: rgba(0, 0, 0, 0.12);
    color: #000000;
}

/* —— Journey dual videos (from / to) —— */
.journey-dual-section {
    background: #ffffff;
    padding: 120px 137px 120px 20px;
}

.journey-dual-inner {
    width: 100%;
}

.journey-dual-grid {
    display: grid;
    grid-template-columns: minmax(0, 685fr) minmax(0, 466fr);
    align-items: center;
    column-gap: 132px;
    width: 100%;
}

.journey-dual-tile {
    margin: 0;
}

.journey-dual-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #1a1a1a;
}

.journey-dual-tile--primary .journey-dual-media {
    aspect-ratio: 685 / 698;
}

.journey-dual-tile--secondary .journey-dual-media {
    aspect-ratio: 466 / 510;
}

.journey-dual-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-dual-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0 clamp(14px, 2.4vw, 40px);
    pointer-events: none;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.15;
    text-align: left;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.journey-dual-overlay__row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: clamp(16px, 2.2vw, 40px);
}

.journey-dual-overlay__row > span {
    text-align: left;
}

.journey-dual-overlay__row > span:nth-child(-n + 2) {
    flex-shrink: 0;
}

.journey-dual-overlay__row > span:nth-child(3) {
    max-width: 18em;
    min-width: 0;
    line-height: 1.2;
}

/* —— 15 Min Neighbourhood —— */
.fifteen-min-section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
}

.fifteen-min-section__text {
    margin: 0;
    font-size: 140px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #000000;
    text-align: center;
    white-space: nowrap;
}

/* —— Fullscreen map —— */
.map-fullscreen-section {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: #e5e7dc;
}

.map-fullscreen-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* —— Footer partners —— */
.site-footer-partners {
    background: #ffffff;
    border-top: 1px solid #D5D5D5;
}

.site-footer-partners__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.site-footer-partners__cell {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.site-footer-partners__cell + .site-footer-partners__cell {
    border-left: 1px solid #D5D5D5;
}

.site-footer-partners__label {
    margin: 0;
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #000000;
}

.site-footer-partners__logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
}

.site-footer-partners__logo--dko {
    max-height: 34px;
}

.site-footer-partners__logo--tp {
    max-height: 33px;
}

/* —— Introduction —— */
.intro-section {
    background: #ffffff;
    padding: 40px 20px 220px;
}

.intro-inner {
    width: 100%;
    max-width: none;
    margin: 0;
}

.intro-columns {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 115px;
    align-items: stretch;
}

.intro-col--left {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.intro-col--right {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-right: 117px;
}

.intro-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 120px;
}

.intro-divider {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text-dark);
    opacity: 0.28;
}

.intro-heading {
    margin: 0;
}

.intro-dot {
    flex-shrink: 0;
}

.intro-copy-wrap {
    align-self: stretch;
    margin-bottom: clamp(80px, 4vw, 48px);
}

.intro-copy {
    text-align: left;
    max-width: 100%;
}

.intro-copy p {
    margin: 0;
    font-size: 20px;
    line-height: 1.45;
    color: #000000;
}

.intro-copy p:not(:first-of-type) {
    font-weight: 400;
}

.intro-figure {
    margin: 0;
}

.intro-figure img {
    display: block;
    width: 100%;
    height: auto;
}

.intro-figure--portrait {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 0;
    padding-top: 60px;
}

.intro-figure--portrait img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 466 / 565;
    object-fit: cover;
    object-position: center;
}

.intro-figure--landscape {
    margin-top: 0;
}

.intro-figure--landscape img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 700 / 495;
    object-fit: cover;
    object-position: center;
}

.intro-figcaption {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #000000;
    text-align: left;
}

/* —— Blur Image + Text —— */
.time-scarcity-section {
    --time-scarcity-opacity: 0;
    --time-scarcity-blur: 14px;
    --time-scarcity-y: 90px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("./assets/images/blur image + text - desktop.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.time-scarcity-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(161, 149, 77, calc(0.48 * var(--time-scarcity-opacity)));
    backdrop-filter: blur(calc(14px - var(--time-scarcity-blur)));
    -webkit-backdrop-filter: blur(calc(14px - var(--time-scarcity-blur)));
}

.time-scarcity-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}

.time-scarcity-content p {
    margin: 0;
    text-align: center;
    color: #ffffff;
    font-size: 37px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 2%;
    opacity: var(--time-scarcity-opacity);
    transform: translateY(var(--time-scarcity-y));
    will-change: transform, opacity;
}

/* —— Forecast Report Section —— */
.report-section {
    --report-opacity: 0;
    --report-blur: 16px;
    --report-y: 90px;
    background: #E5E7D9;
    padding: 26px 20px 36px;
}

.report-inner {
    width: 100%;
}

.report-head {
    margin-bottom: 62px;
}

.report-kicker {
    margin: 0;
}

.report-dot {
    flex-shrink: 0;
}

.report-intro {
    margin: 0 0 132px;
    margin-right: auto;
    max-width: 1100px;
    font-size: 37px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #000000;
    text-align: left;
    opacity: var(--report-opacity);
    transform: translateY(var(--report-y));
    filter: blur(var(--report-blur));
    will-change: transform, opacity, filter;
}

.report-chart {
    display: grid;
    gap: 24px;
}

.report-row {
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    align-items: center;
    column-gap: 18px;
}

.report-row--compact {
    margin-top: 22px;
}

.report-label {
    margin: 0;
    align-self: start;
    font-size: 20px;
    line-height: 1.05;
    font-weight: 400;
    color: #111111;
    max-width: 280px;
}

.report-bars {
    display: grid;
    /* gap: 8px; */
    max-width: 1000px;
    width: 100%;
    justify-items: start;
}

.report-bar-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.report-bar {
    position: relative;
    border-radius: 15px;
    padding: 12px 22px 16px;
    display: grid;
    align-content: center;
    width: 100%;
}

/* Manual 1-10 scale utilities for report bars */
.report-len-1 { width: 10%; }
.report-len-2 { width: 20%; }
.report-len-3 { width: 30%; }
.report-len-4 { width: 40%; }
.report-len-5 { width: 50%; }
.report-len-6 { width: 60%; }
.report-len-7 { width: 70%; }
.report-len-8 { width: 80%; }
.report-len-9 { width: 90%; }
.report-len-10 { width: 100%; }

.report-bar--glass {
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: rgba(234, 236, 223, 0.52);
    backdrop-filter: blur(4px) saturate(108%) contrast(1.04);
    -webkit-backdrop-filter: blur(4px) saturate(108%) contrast(1.04);
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.55),
        0 8px 20px #D5D5D5;
}

.report-bar--solid {
    border: 1px solid rgba(255, 255, 255, 0.46);
    background: rgba(214, 211, 180, 0.62);
    backdrop-filter: blur(4px) saturate(112%) contrast(1.04);
    -webkit-backdrop-filter: blur(4px) saturate(112%) contrast(1.04);
    /* box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.04),
        0 8px 20px #D5D5D5; */
}

.report-year {
    font-size: 16px;
    line-height: 1;
    color: #232323;
}

.report-value {
    font-size: 74px;
    line-height: 0.98;
    color: #000000;
    font-weight: 500;
    margin-top: 12px;
}

.report-growth {
    margin: 0;
    font-size: 50px;
    line-height: 1;
    font-weight: 500;
    color: #000000;
    white-space: nowrap;
    flex: 0 0 auto;
}

.report-btn {
    display: block;
    margin: 62px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 12px;
    background: rgba(251, 251, 199, 0.5);
    backdrop-filter: blur(4px) saturate(112%) contrast(1.04);
    -webkit-backdrop-filter: blur(4px) saturate(112%) contrast(1.04);
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.52),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05),
        0 8px 20px rgba(0, 0, 0, 0.09);
    color: #161616;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    padding: 14px 34px;
    font-family: inherit;
    font-weight: 500;
    transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out;
    cursor: pointer;
}

.report-btn:hover {
    background: #000000;
    color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
    .single-text-section {
        --single-text-opacity: 1;
        --single-text-blur: 0px;
        --single-text-y: 0px;
    }

    .report-section {
        --report-opacity: 1;
        --report-blur: 0px;
        --report-y: 0px;
    }

    .time-scarcity-section {
        --time-scarcity-opacity: 1;
        --time-scarcity-blur: 0px;
        --time-scarcity-y: 0px;
    }

    .brand-intro-section {
        --brand-intro-opacity: 1;
        --brand-intro-blur: 0px;
        --brand-intro-y: 0px;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: 860px;
    }

    .glass-card {
        margin-top: 10px;
        height: auto;
        min-height: 420px;
        padding: 34px 30px 30px;
    }

    .dot {
        width: 14px;
        height: 14px;
        flex-basis: 14px;
    }

    .chip {
        gap: 12px;
        font-size: clamp(26px, 5vw, 42px);
    }

    .chip-time {
        top: 44px;
        left: 36px;
    }

    .chip-well {
        top: 172px;
        right: 42px;
    }

    .chip-invested {
        top: 286px;
        left: 140px;
    }

    .card-caption {
        left: 30px;
        bottom: 20px;
        font-size: clamp(14px, 2.4vw, 24px);
    }

    .single-text-section--thesis {
        height: 600px;
        min-height: 600px;
        padding: 48px 20px 24px;
    }

    .single-text-section--thesis .single-text-section__text {
        font-size: clamp(22px, 4.5vw, 37px);
    }

    .intro-section {
        padding: 48px 20px 72px;
    }

    .intro-columns {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 40px;
    }

    .intro-col--right {
        min-height: 0;
    }

    .intro-col--left,
    .intro-col--right {
        width: 100%;
    }

    .time-scarcity-section {
        min-height: clamp(460px, 96vw, 680px);
    }

    .brand-intro-section {
        min-height: clamp(460px, 96vw, 760px);
    }

    .brand-intro-kicker {
        font-size: clamp(16px, 2.7vw, 35px);
    }

    .brand-intro-logo {
        margin-top: 26px;
        width: min(100%, 520px);
    }

    .brand-intro-subtitle,
    .brand-intro-meta {
        font-size: clamp(22px, 3.6vw, 39px);
    }

    .brand-intro-subtitle {
        margin-top: 48px;
    }

    .time-scarcity-text {
        font-size: clamp(22px, 4.8vw, 31px);
    }

    .dot-text-label {
        font-size: clamp(20px, 3.2vw, 30px);
    }

    .report-intro {
        font-size: clamp(28px, 4.8vw, 53px);
        margin-bottom: 64px;
    }

    .report-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .report-label {
        font-size: clamp(20px, 3.1vw, 30px);
    }

    .report-growth {
        font-size: clamp(36px, 5vw, 56px);
    }

    .report-year {
        font-size: clamp(18px, 2.8vw, 24px);
    }

    .report-value {
        font-size: clamp(44px, 8vw, 74px);
    }

    .report-btn {
        font-size: clamp(16px, 2.8vw, 22px);
        padding: 14px 28px;
    }

    .single-text-section__kicker {
        font-size: clamp(20px, 3.2vw, 30px);
    }

    .single-text-section--south .single-text-section__text {
        margin-top: 64px;
        font-size: clamp(30px, 6vw, 66px);
        line-height: 1.08;
    }

    .time-render-grid {
        margin-top: 24px;
        grid-template-columns: 1fr;
        row-gap: 16px;
    }

    .time-render-address,
    .time-render-time {
        font-size: clamp(18px, 3.1vw, 27px);
        text-align: left;
        min-width: 0;
    }

    .time-render-time {
        order: 2;
    }

    .time-render-media {
        order: 1;
        max-width: min(100%, 500px);
    }

    .time-render-address {
        order: 0;
    }

    .invested-glass-section {
        padding: 28px 20px 32px;
    }

    .invested-glass-columns {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .invested-glass-card {
        justify-self: start;
        width: 100%;
        max-width: 100%;
    }

    .invested-copy-lines {
        font-size: clamp(82px, 17vw, 180px);
    }

    .invested-copy-btn {
        margin-top: 34px;
        font-size: clamp(14px, 2.8vw, 28px);
        padding: 12px 18px;
    }

    .invested-video-shell {
        width: min(100%, 540px);
        height: auto;
        min-height: 0;
        aspect-ratio: 540 / 695;
    }

    .invested-video-logo {
        width: min(76%, 420px);
    }

    .invested-blur-word {
        left: 50%;
        top: 60%;
        font-size: clamp(56px, 13vw, 120px);
        filter: blur(4px);
    }

    .proximity-glass-section {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 40px 16px;
    }

    .proximity-glass-card {
        border-radius: 16px;
        padding: 56px 22px;
    }

    .journey-dual-section {
        padding: 72px 20px 72px 20px;
    }

    .journey-dual-grid {
        grid-template-columns: 1fr;
        row-gap: 48px;
        column-gap: 0;
        max-width: min(100%, 560px);
        margin: 0 auto;
    }

    .journey-dual-overlay {
        padding: 0 clamp(12px, 4vw, 28px);
    }

    .journey-dual-overlay__row > span:nth-child(3) {
        max-width: min(18em, 100%);
    }

    .brand-line-section {
        padding: 40px 20px;
    }

    .brand-line {
        column-gap: clamp(16px, 3vw, 32px);
    }

    .fifteen-min-section__text {
        font-size: clamp(48px, 8.5vw, 140px);
    }

    .map-fullscreen-section {
        height: 100vh;
        height: 100dvh;
    }

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

    .site-footer-partners__cell {
        min-height: 140px;
        padding: 16px 20px;
    }

    .site-footer-partners__cell + .site-footer-partners__cell {
        border-left: 0;
        border-top: 1px solid #D5D5D5;
    }

}
