/*
 * DREAM FRAMEWORK MAIN.CSS — VERSION 2.5.0 — 2026-08-22
 *
 * Global foundation + Homepage Section 01 (Header / Hero).
 */


/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */

:root {
    --dream-bg: #f7f8fa;
    --dream-surface: #ffffff;
    --dream-surface-soft: #eef1f4;

    --dream-text: #0f1419;
    --dream-text-soft: #5c6672;
    --dream-border: #dfe4e8;

    --dream-dark: #0f1419;
    --dream-dark-2: #171e26;

    --dream-accent: #4169e1;
    --dream-accent-dark: #3155c3;
    --dream-accent-soft: #e9eeff;

    --dream-container: 1240px;
    --dream-content: 820px;

    --dream-radius-sm: 10px;
    --dream-radius: 16px;
    --dream-radius-lg: 28px;

    --dream-shadow-sm: 0 8px 24px rgba(15, 20, 25, 0.08);
    --dream-shadow: 0 24px 70px rgba(15, 20, 25, 0.16);

    --dream-space-section: clamp(72px, 8vw, 118px);
}


/* =========================================================
   2. RESET / BASE
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--dream-bg);
    color: var(--dream-text);
    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.dream-container {
    width: min(calc(100% - 48px), var(--dream-container));
    margin-inline: auto;
}

.site-main {
    min-height: 60vh;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 99999;
    padding: 10px 14px;
    border-radius: 8px;
    background: #000;
    color: #fff;
    transform: translateY(-160%);
}

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


/* =========================================================
   3. SHARED BUTTONS
   ========================================================= */

.dream-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        box-shadow 160ms ease;
}

.dream-button:hover,
.dream-button:focus-visible {
    transform: translateY(-2px);
}

.dream-button--primary,
.site-header__cta {
    background: var(--dream-dark);
    color: #fff;
    box-shadow: 0 10px 24px rgba(15, 20, 25, 0.12);
}

.dream-button--primary:hover,
.dream-button--primary:focus-visible,
.site-header__cta:hover,
.site-header__cta:focus-visible {
    background: var(--dream-accent);
    box-shadow: 0 12px 30px rgba(65, 105, 225, 0.24);
}

.dream-button--secondary {
    border-color: var(--dream-border);
    background: rgba(255, 255, 255, 0.72);
    color: var(--dream-text);
}

.dream-button--secondary:hover,
.dream-button--secondary:focus-visible {
    border-color: #c7ced5;
    background: #fff;
}


/* =========================================================
   4. HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 20, 25, 0.08);
    background: rgba(247, 248, 250, 0.91);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-header__inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-header__brand {
    flex: 0 0 auto;
}

.site-header__logo-link {
    display: block;
}

.site-header__logo {
    width: 238px;
    height: auto;
}

.site-header__nav-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-header__quick-contact {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-left: 18px;
    border-left: 1px solid var(--dream-border);
}

.site-header__quick-contact a {
    color: var(--dream-text-soft);
    font-size: 0.74rem;
    font-weight: 780;
    text-decoration: none;
    transition: color 150ms ease;
}

.site-header__quick-contact a:hover,
.site-header__quick-contact a:focus-visible {
    color: var(--dream-accent);
}

.primary-menu,
.footer-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu a {
    position: relative;
    color: var(--dream-text);
    font-size: 0.91rem;
    font-weight: 720;
    text-decoration: none;
}

.primary-menu a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--dream-accent);
    content: "";
    opacity: 0;
    transform: scaleX(0.45);
    transition:
        opacity 160ms ease,
        transform 160ms ease;
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-header__toggle {
    display: none;
}

.site-header__cta {
    min-height: 44px;
    padding-inline: 19px;
    font-size: 0.9rem;
}


/* =========================================================
   5. HERO
   ========================================================= */

.dream-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: calc(100vh - 82px);
    padding: clamp(72px, 7vw, 112px) 0 clamp(78px, 8vw, 124px);
    background:
        linear-gradient(rgba(65, 105, 225, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(65, 105, 225, 0.055) 1px, transparent 1px),
        var(--dream-bg);
    background-size: 46px 46px;
}

.dream-hero::after {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(90deg, var(--dream-bg) 0%, rgba(247,248,250,0.88) 36%, rgba(247,248,250,0.36) 100%);
    content: "";
}

.dream-hero__glow {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    filter: blur(3px);
    pointer-events: none;
}

.dream-hero__glow--one {
    top: -220px;
    right: -120px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.20) 0%, rgba(65, 105, 225, 0) 68%);
}

.dream-hero__glow--two {
    right: 31%;
    bottom: -380px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(108, 198, 192, 0.14) 0%, rgba(108, 198, 192, 0) 70%);
}

.dream-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(440px, 0.88fr);
    align-items: center;
    gap: clamp(48px, 5.5vw, 82px);
}

.dream-hero__content {
    position: relative;
    z-index: 2;
}

.dream-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 23px;
    color: var(--dream-text);
    font-size: 0.77rem;
    font-weight: 820;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.dream-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dream-accent);
    box-shadow: 0 0 0 6px rgba(65, 105, 225, 0.10);
}

.dream-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--dream-text);
    font-size: clamp(4rem, 6.15vw, 7.1rem);
    font-weight: 820;
    line-height: 0.91;
    letter-spacing: -0.072em;
}

.dream-hero h1 span {
    display: block;
    color: var(--dream-accent);
}

.dream-hero__lead {
    max-width: 690px;
    margin: 30px 0 0;
    color: var(--dream-text-soft);
    font-size: clamp(1.06rem, 1.45vw, 1.24rem);
    line-height: 1.65;
}

.dream-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.dream-hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 34px;
    color: #49535e;
    font-size: 0.83rem;
    font-weight: 720;
}

.dream-hero__proof span {
    position: relative;
    padding-left: 14px;
}

.dream-hero__proof span::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--dream-accent);
    content: "";
    transform: translateY(-50%);
}


/* =========================================================
   6. HERO VISUAL
   ========================================================= */

.dream-hero__visual {
    position: relative;
    width: min(100%, 570px);
    justify-self: end;
}

.dream-build-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 30px;
    background: var(--dream-dark);
    color: #fff;
    box-shadow: var(--dream-shadow);
    transform: rotate(1.5deg);
}

.dream-build-card::before {
    position: absolute;
    top: -130px;
    right: -100px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(65,105,225,0.65), rgba(65,105,225,0) 68%);
    content: "";
    pointer-events: none;
}

.dream-build-card__top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 50px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255,255,255,0.09);
    background: rgba(255,255,255,0.035);
}

.dream-build-card__browser-dots {
    display: flex;
    gap: 6px;
}

.dream-build-card__browser-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.30);
}

.dream-build-card__url {
    grid-column: 2;
    justify-self: center;
    color: rgba(255,255,255,0.54);
    font-size: 0.69rem;
    letter-spacing: 0.05em;
}

.dream-build-card__body {
    position: relative;
    z-index: 2;
    padding: clamp(34px, 5vw, 56px);
}

.dream-build-card__kicker {
    display: inline-block;
    margin-bottom: 17px;
    color: #9bb1ff;
    font-size: 0.73rem;
    font-weight: 820;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dream-build-card h2 {
    margin: 0;
    font-size: clamp(2.55rem, 4vw, 4.6rem);
    font-weight: 780;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.dream-build-card__body > p {
    max-width: 460px;
    margin: 20px 0 0;
    color: rgba(255,255,255,0.66);
    font-size: 0.97rem;
    line-height: 1.65;
}

.dream-build-card__features {
    display: grid;
    gap: 1px;
    margin-top: 34px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    background: rgba(255,255,255,0.09);
}

.dream-build-card__features > div {
    display: grid;
    grid-template-columns: 18px 1fr;
    column-gap: 13px;
    padding: 15px 16px;
    background: rgba(20, 27, 35, 0.94);
}

.dream-build-card__feature-mark {
    position: relative;
    display: block;
    grid-row: 1 / span 2;
    width: 12px;
    height: 12px;
    margin-top: 6px;
    border-radius: 50%;
    background: #78a0ff;
    box-shadow: 0 0 0 6px rgba(120,160,255,0.12);
}

.dream-build-card__features strong {
    align-self: end;
    font-size: 0.88rem;
}

.dream-build-card__features small {
    align-self: start;
    margin-top: 1px;
    color: rgba(255,255,255,0.50);
    font-size: 0.73rem;
}

.dream-build-card__footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: rgba(255,255,255,0.65);
    font-size: 0.76rem;
    font-weight: 650;
}

.dream-build-card__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #72e0c4;
    box-shadow: 0 0 0 6px rgba(114,224,196,0.10);
}

.dream-hero__badge {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 1px;
    min-width: 132px;
    padding: 14px 17px;
    border: 1px solid rgba(15,20,25,0.07);
    border-radius: 16px;
    background: rgba(255,255,255,0.92);
    box-shadow: var(--dream-shadow-sm);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dream-hero__badge small {
    color: var(--dream-text-soft);
    font-size: 0.66rem;
    font-weight: 720;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dream-hero__badge strong {
    font-size: 0.88rem;
}

.dream-hero__badge--local {
    top: 12%;
    right: -28px;
    transform: rotate(-4deg);
}

.dream-hero__badge--platform {
    bottom: 14%;
    left: -86px;
    transform: rotate(3deg);
}



/* =========================================================
   7. PROOF & TRUST
   ========================================================= */

.dream-proof {
    position: relative;
    overflow: hidden;
    padding: clamp(76px, 8vw, 116px) 0;
    background: var(--dream-dark);
    color: #fff;
}

.dream-proof::before {
    position: absolute;
    top: -220px;
    right: -140px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(65, 105, 225, 0.20) 0%,
        rgba(65, 105, 225, 0) 68%
    );
    content: "";
    pointer-events: none;
}

.dream-proof__intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.75fr);
    align-items: end;
    gap: clamp(48px, 7vw, 110px);
}

.dream-section-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: #9bb1ff;
    font-size: 0.74rem;
    font-weight: 820;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.dream-proof h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.8rem, 4.8vw, 5.6rem);
    font-weight: 790;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.dream-proof__copy {
    max-width: 570px;
    justify-self: end;
}

.dream-proof__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.72;
}

.dream-proof__copy p + p {
    margin-top: 17px;
}

.dream-proof__stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: clamp(58px, 7vw, 90px);
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.dream-proof__stat {
    min-height: 168px;
    padding: 30px 28px 28px 0;
}

.dream-proof__stat + .dream-proof__stat {
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.dream-proof__stat strong {
    display: block;
    color: #7fa0ff;
    font-size: clamp(2.7rem, 4vw, 4.6rem);
    font-weight: 790;
    line-height: 1;
    letter-spacing: -0.055em;
}

.dream-proof__stat--location strong {
    font-size: clamp(2.25rem, 3.5vw, 3.9rem);
}

.dream-proof__stat span {
    display: block;
    max-width: 180px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.88rem;
    font-weight: 680;
    line-height: 1.45;
}




/* =========================================================
   7B. MORE WORK
   ========================================================= */

.dream-more-work {
    padding: clamp(82px, 8vw, 122px) 0;
    background: #f5f1eb;
    color: var(--dream-text);
}

.dream-more-work__heading {
    display: block;
    max-width: 860px;
    margin: 0 auto clamp(48px, 6vw, 72px);
    text-align: center;
}

.dream-more-work__heading .dream-section-kicker {
    display: block;
    margin-bottom: 18px;
}

.dream-more-work__heading h2 {
    max-width: 820px;
    margin: 0 auto;
    font-size: clamp(3.1rem, 4.6vw, 5.2rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.058em;
}

.dream-more-work__heading > p {
    max-width: 700px;
    margin: 24px auto 0;
    color: var(--dream-text-soft);
    font-size: 1rem;
    line-height: 1.72;
}

.dream-more-work__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
}

.dream-more-work__item {
    min-width: 0;
}

.dream-more-work__item--lead {
    grid-column: 1 / -1;
}

.dream-more-work__image {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid #d8dde2;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 20, 25, 0.07);
}

.dream-more-work__item--lead .dream-more-work__image {
    aspect-ratio: 2.35 / 1;
}

.dream-more-work__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 240ms ease;
}

.dream-more-work__item:hover .dream-more-work__image img {
    transform: scale(1.012);
}

.dream-more-work__meta {
    display: grid;
    gap: 3px;
    padding: 15px 4px 0;
}

.dream-more-work__meta strong {
    color: var(--dream-text);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.dream-more-work__meta span {
    color: var(--dream-text-soft);
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.45;
}


/* =========================================================
   8. THE PLATFORM
   ========================================================= */



.dream-platform {
    position: relative;
    overflow: hidden;
    padding: clamp(82px, 9vw, 132px) 0;
    background: #edf3fa;
    color: var(--dream-text);
}

.dream-platform::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background:
        linear-gradient(rgba(65, 105, 225, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(65, 105, 225, 0.055) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
    opacity: 0.65;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 35%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 35%);
}

.dream-platform__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
    align-items: start;
    gap: clamp(64px, 9vw, 138px);
}

.dream-section-kicker--dark {
    color: var(--dream-accent);
}

.dream-platform__intro {
    max-width: 530px;
}

.dream-platform h2 {
    margin: 0;
    font-size: clamp(3.7rem, 5.7vw, 6.6rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.066em;
}

.dream-platform__intro > p {
    max-width: 500px;
    margin: 28px 0 0;
    color: var(--dream-text-soft);
    font-size: 1rem;
    line-height: 1.72;
}

.dream-platform__intro > p + p {
    margin-top: 16px;
}

.dream-platform__details {
    border-top: 1px solid #cfd5db;
}

.dream-platform__row {
    display: grid;
    grid-template-columns: minmax(255px, 0.44fr) minmax(0, 0.56fr);
    gap: 34px;
    padding: 26px 0;
    border-bottom: 1px solid #cfd5db;
}

.dream-platform__label {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dream-platform__icon {
    position: relative;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border: 1px solid #d3d8de;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 6px 18px rgba(15, 20, 25, 0.035);
}

.dream-platform__icon::before,
.dream-platform__icon::after {
    position: absolute;
    content: "";
}

.dream-platform__icon--theme::before {
    top: 9px;
    left: 9px;
    width: 18px;
    height: 14px;
    border: 2px solid #4169e1;
    border-radius: 5px;
}

.dream-platform__icon--theme::after {
    top: 14px;
    left: 13px;
    width: 10px;
    height: 2px;
    background: #4169e1;
    box-shadow: 0 4px 0 #4169e1;
}

.dream-platform__icon--code::before {
    top: 11px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #4169e1;
    border-left: 2px solid #4169e1;
    transform: rotate(-45deg);
}

.dream-platform__icon--code::after {
    top: 11px;
    right: 9px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #4169e1;
    border-right: 2px solid #4169e1;
    transform: rotate(45deg);
}

.dream-platform__icon--focus::before {
    top: 8px;
    left: 8px;
    width: 18px;
    height: 18px;
    border: 2px solid #4169e1;
    border-radius: 50%;
}

.dream-platform__icon--focus::after {
    top: 14px;
    left: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4169e1;
}

.dream-platform__icon--responsive::before {
    top: 8px;
    left: 7px;
    width: 13px;
    height: 18px;
    border: 2px solid #4169e1;
    border-radius: 4px;
}

.dream-platform__icon--responsive::after {
    top: 12px;
    right: 7px;
    width: 10px;
    height: 8px;
    border: 2px solid #4169e1;
    border-radius: 3px;
}

.dream-platform__row h3 {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.dream-platform__row p {
    max-width: 520px;
    margin: 0;
    color: var(--dream-text-soft);
    font-size: 0.94rem;
    line-height: 1.68;
}

.dream-platform__outcome {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    margin-top: 34px;
    padding: 26px 28px;
    border: 1px solid #d4d9df;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 34px rgba(15, 20, 25, 0.055);
}

.dream-platform__outcome-mark {
    width: 13px;
    height: 13px;
    margin-top: 5px;
    border-radius: 50%;
    background: #51c8a8;
    box-shadow: 0 0 0 7px rgba(81, 200, 168, 0.11);
}

.dream-platform__outcome strong {
    display: block;
    font-size: 1rem;
    line-height: 1.45;
}

.dream-platform__outcome p {
    margin: 5px 0 0;
    color: var(--dream-text-soft);
    font-size: 0.85rem;
    line-height: 1.55;
}



/* =========================================================
   9. SELECTED WORK
   ========================================================= */

.dream-work {
    padding: clamp(64px, 6.5vw, 92px) 0;
    background: #fff;
}

.dream-work__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
    align-items: center;
    gap: clamp(42px, 6vw, 82px);
    margin-bottom: clamp(38px, 4.5vw, 58px);
}

.dream-work__heading h2 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(3.5rem, 4.5vw, 5.35rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.dream-work__heading > p {
    max-width: 500px;
    margin: 0;
    color: var(--dream-text-soft);
    font-size: 0.98rem;
    line-height: 1.68;
}

.dream-project {
    display: grid;
    grid-template-columns: minmax(340px, 0.72fr) minmax(520px, 1.28fr);
    grid-template-areas:
        "copy visual"
        "extras visual";
    align-content: center;
    column-gap: clamp(44px, 7vw, 92px);
    row-gap: 0;
    min-height: 560px;
    padding: clamp(42px, 6vw, 74px);
    overflow: hidden;
    border-radius: 30px;
}

.dream-project + .dream-project {
    margin-top: 28px;
}

.dream-project--tetrad {
    background: #17130f;
    color: #fff;
}

.dream-project--demo {
    background: #eef2f7;
    color: var(--dream-text);
}

.dream-project__copy {
    position: relative;
    z-index: 2;
    grid-area: copy;
}

.dream-project__extras {
    position: relative;
    z-index: 2;
    grid-area: extras;
}

.dream-project__type {
    display: inline-block;
    margin-bottom: 16px;
    color: #b79a79;
    font-size: 0.73rem;
    font-weight: 820;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dream-project--demo .dream-project__type {
    color: var(--dream-accent);
}

.dream-project h3 {
    margin: 0;
    font-size: clamp(3rem, 4.8vw, 5.4rem);
    font-weight: 790;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.dream-project__copy > p {
    max-width: 470px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.98rem;
    line-height: 1.68;
}

.dream-project--demo .dream-project__copy > p {
    color: var(--dream-text-soft);
}

.dream-project__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.dream-project__tags li {
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.72rem;
    font-weight: 700;
}

.dream-project--demo .dream-project__tags li {
    border-color: #ccd4dd;
    color: #4b5662;
    background: rgba(255, 255, 255, 0.42);
}

.dream-project__demo-note {
    margin-top: 22px;
    color: #79838e;
    font-size: 0.75rem;
    font-weight: 650;
}

.dream-project__visual {
    position: relative;
    grid-area: visual;
    min-width: 0;
    align-self: center;
}

.dream-project-browser {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    background: #f4eee7;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    transform: rotate(1.2deg);
}

.dream-project-browser--light {
    border-color: rgba(15, 20, 25, 0.10);
    background: #fff;
    box-shadow: 0 28px 70px rgba(15, 20, 25, 0.14);
    transform: rotate(-1deg);
}

.dream-project-browser__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 42px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(15, 20, 25, 0.09);
    background: rgba(255, 255, 255, 0.72);
}

.dream-project-browser__bar > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b7bcc2;
}

.dream-project-browser__bar small {
    margin-left: auto;
    margin-right: auto;
    color: #7c838a;
    font-size: 0.63rem;
    letter-spacing: 0.04em;
}

.dream-project-browser__screen {
    min-height: 390px;
}

.dream-project-browser__screen--image {
    position: relative;
    background: #f4f4f4;
}

.dream-project-browser__screen--image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    object-position: top center;
}



/* =========================================================
   10. PERFORMANCE
   ========================================================= */

.dream-performance {
    position: relative;
    overflow: hidden;
    padding: clamp(84px, 9vw, 132px) 0;
    background: var(--dream-dark);
    color: #fff;
}

.dream-performance::before {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(65, 105, 225, 0.18), transparent 34%),
        radial-gradient(circle at 88% 80%, rgba(81, 200, 168, 0.10), transparent 28%);
    content: "";
    pointer-events: none;
}

.dream-performance__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
    align-items: start;
    column-gap: clamp(60px, 9vw, 138px);
    row-gap: 28px;
}

.dream-performance__intro {
    max-width: 560px;
}

.dream-performance h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(3.6rem, 5.6vw, 6.4rem);
    font-weight: 800;
    line-height: 0.93;
    letter-spacing: -0.064em;
}

.dream-performance__intro > p {
    max-width: 520px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 1rem;
    line-height: 1.72;
}

.dream-performance__evidence {
    grid-column: 1 / -1;
    margin-top: 0;
}

.dream-performance__results {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.dream-performance__result {
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 26px;
}

.dream-performance__result + .dream-performance__result {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.dream-performance__result strong {
    display: block;
    color: #9bb1ff;
    font-size: clamp(2.45rem, 4vw, 4.2rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.dream-performance__result span {
    display: block;
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
}

.dream-performance__note {
    max-width: 900px;
    margin: 16px 0 0 !important;
    color: rgba(255, 255, 255, 0.48) !important;
    font-size: 0.78rem !important;
    line-height: 1.6 !important;
}

.dream-performance__features {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.dream-performance__item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 18px;
    padding: 27px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.dream-performance__item h3 {
    margin: 0;
    color: #fff;
    font-size: 1.03rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.dream-performance__item p {
    max-width: 560px;
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
    line-height: 1.62;
}

.dream-performance__icon {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(155, 177, 255, 0.22);
    border-radius: 13px;
    background: rgba(65, 105, 225, 0.10);
}

.dream-performance__icon::before,
.dream-performance__icon::after {
    position: absolute;
    content: "";
}

.dream-performance__icon--theme::before {
    top: 10px;
    left: 10px;
    width: 18px;
    height: 14px;
    border: 2px solid #9bb1ff;
    border-radius: 5px;
}

.dream-performance__icon--theme::after {
    top: 15px;
    left: 14px;
    width: 10px;
    height: 2px;
    background: #9bb1ff;
    box-shadow: 0 4px 0 #9bb1ff;
}

.dream-performance__icon--code::before {
    top: 12px;
    left: 10px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #9bb1ff;
    border-left: 2px solid #9bb1ff;
    transform: rotate(-45deg);
}

.dream-performance__icon--code::after {
    top: 12px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #9bb1ff;
    border-right: 2px solid #9bb1ff;
    transform: rotate(45deg);
}

.dream-performance__icon--image::before {
    top: 10px;
    left: 9px;
    width: 20px;
    height: 17px;
    border: 2px solid #9bb1ff;
    border-radius: 5px;
}

.dream-performance__icon--image::after {
    left: 13px;
    bottom: 12px;
    width: 12px;
    height: 8px;
    border-left: 2px solid #9bb1ff;
    border-bottom: 2px solid #9bb1ff;
    transform: skewX(-35deg) rotate(-10deg);
}

.dream-performance__icon--server::before {
    top: 9px;
    left: 9px;
    width: 20px;
    height: 8px;
    border: 2px solid #9bb1ff;
    border-radius: 4px;
    box-shadow: 0 11px 0 -2px rgba(155, 177, 255, 0.16), 0 11px 0 0 #9bb1ff;
}

.dream-performance__icon--server::after {
    top: 13px;
    right: 13px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #9bb1ff;
    box-shadow: 0 11px 0 #9bb1ff;
}



/* =========================================================
   11. PROCESS
   ========================================================= */

.dream-process {
    padding: clamp(84px, 9vw, 132px) 0;
    background: #ffffff;
    color: var(--dream-text);
}

.dream-process__heading {
    display: block;
    max-width: 930px;
    margin: 0 auto clamp(58px, 7vw, 86px);
    text-align: center;
}

.dream-process__heading .dream-section-kicker {
    display: block;
    margin-bottom: 18px;
}

.dream-process__heading h2 {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(3.2rem, 4.9vw, 5.6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.dream-process__heading > p {
    max-width: 690px;
    margin: 24px auto 0;
    color: var(--dream-text-soft);
    font-size: 1rem;
    line-height: 1.72;
}

.dream-process__timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #d3d9df;
}

.dream-process__timeline::before {
    position: absolute;
    top: 29px;
    right: 0;
    left: 0;
    height: 1px;
    background: #d3d9df;
    content: "";
    pointer-events: none;
}

.dream-process__step {
    position: relative;
    padding: 58px 30px 30px 0;
}

.dream-process__step + .dream-process__step {
    padding-left: 30px;
    border-left: 1px solid #e1e5e9;
}

.dream-process__mark {
    position: absolute;
    top: 18px;
    left: 0;
    z-index: 2;
    display: block;
    width: 22px;
    height: 22px;
    border: 6px solid #fff;
    border-radius: 50%;
    background: var(--dream-accent);
    box-shadow: 0 0 0 1px #bfc8d1;
}

.dream-process__step + .dream-process__step .dream-process__mark {
    left: 29px;
}

.dream-process__label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--dream-accent);
    font-size: 0.72rem;
    font-weight: 820;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dream-process__step h3 {
    max-width: 250px;
    margin: 0;
    font-size: clamp(1.25rem, 1.7vw, 1.55rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.dream-process__step p {
    max-width: 270px;
    margin: 14px 0 0;
    color: var(--dream-text-soft);
    font-size: 0.9rem;
    line-height: 1.62;
}

.dream-process__closing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid #d3d9df;
}

.dream-process__closing > div {
    display: grid;
    gap: 4px;
}

.dream-process__closing strong {
    font-size: 1rem;
    font-weight: 800;
}

.dream-process__closing span {
    color: var(--dream-text-soft);
    font-size: 0.86rem;
}


/* =========================================================
   12. ABOUT
   ========================================================= */

.dream-about {
    padding: clamp(84px, 9vw, 132px) 0;
    background: #ffffff;
    color: var(--dream-text);
}

.dream-about__grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
    grid-template-areas:
        "portrait heading"
        "portrait body";
    align-items: start;
    column-gap: clamp(58px, 8vw, 118px);
    row-gap: 0;
}

.dream-about__heading {
    grid-area: heading;
    padding-top: 6px;
}

.dream-about__portrait {
    position: sticky;
    top: 110px;
    grid-area: portrait;
}

.dream-about__body {
    grid-area: body;
}

.dream-about__photo {
    overflow: hidden;
    min-height: 560px;
    border-radius: 28px;
    background: #e8edf3;
    box-shadow: 0 24px 70px rgba(15, 20, 25, 0.10);
}

.dream-about__photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center 30%;
}

.dream-about__location {
    display: grid;
    gap: 3px;
    padding: 18px 4px 0;
}

.dream-about__location strong {
    font-size: 0.9rem;
}

.dream-about__location span {
    color: var(--dream-text-soft);
    font-size: 0.79rem;
}

.dream-about h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(4rem, 6vw, 7rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.068em;
}

.dream-about__copy {
    max-width: 700px;
    margin-top: 38px;
}

.dream-about__copy p {
    margin: 0;
    color: var(--dream-text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.dream-about__copy p + p {
    margin-top: 18px;
}

.dream-about__copy .dream-about__lead {
    color: var(--dream-text);
    font-size: clamp(1.3rem, 1.9vw, 1.7rem);
    font-weight: 680;
    line-height: 1.48;
    letter-spacing: -0.025em;
}

.dream-about__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 46px;
    border-top: 1px solid #d8dde2;
    border-bottom: 1px solid #d8dde2;
}

.dream-about__facts > div {
    min-height: 118px;
    padding: 24px 20px 22px 0;
}

.dream-about__facts > div + div {
    padding-left: 20px;
    border-left: 1px solid #d8dde2;
}

.dream-about__facts strong {
    display: block;
    font-size: 1rem;
    font-weight: 820;
}

.dream-about__facts span {
    display: block;
    margin-top: 5px;
    color: var(--dream-text-soft);
    font-size: 0.78rem;
    line-height: 1.4;
}


/* =========================================================
   13. REVIEWS
   ========================================================= */


.dream-reviews {
    padding: clamp(82px, 8vw, 118px) 0;
    background: #f5f1eb;
    color: var(--dream-text);
}

.dream-reviews__top {
    display: grid;
    grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.48fr);
    align-items: start;
    gap: clamp(54px, 8vw, 120px);
    padding-bottom: clamp(54px, 7vw, 82px);
    border-bottom: 1px solid #d8d1c8;
}

.dream-reviews__score {
    display: grid;
    align-content: start;
}

.dream-reviews__stars {
    margin-top: 14px;
    color: var(--dream-accent);
    font-size: 1.35rem;
    letter-spacing: 0.10em;
}

.dream-reviews__score > strong {
    display: block;
    max-width: 220px;
    margin-top: 12px;
    font-size: 1.05rem;
    line-height: 1.4;
}

.dream-reviews blockquote {
    margin: 0;
}

.dream-reviews__feature p {
    max-width: 940px;
    margin: 0;
    font-size: clamp(2.2rem, 3.4vw, 4rem);
    font-weight: 760;
    line-height: 1.02;
    letter-spacing: -0.052em;
}

.dream-reviews blockquote footer {
    margin-top: 20px;
    color: var(--dream-text-soft);
    font-size: 0.82rem;
    font-weight: 750;
}

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

.dream-reviews__more blockquote {
    padding: 34px 32px 0 0;
}

.dream-reviews__more blockquote + blockquote {
    padding-right: 32px;
    padding-left: 32px;
    border-left: 1px solid #d8d1c8;
}

.dream-reviews__more blockquote:last-child {
    padding-right: 0;
}

.dream-reviews__more p {
    max-width: 560px;
    margin: 0;
    font-size: 1.08rem;
    font-weight: 650;
    line-height: 1.62;
    letter-spacing: -0.015em;
}


/* =========================================================
   14. FAQS
   ========================================================= */

.dream-faqs {
    padding: clamp(84px, 9vw, 132px) 0;
    background: #111821;
    color: #fff;
}

.dream-faqs__grid {
    display: grid;
    grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(60px, 9vw, 138px);
}

.dream-faqs__intro {
    position: sticky;
    top: 110px;
    max-width: 560px;
}

.dream-faqs h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(3.7rem, 5.7vw, 6.5rem);
    font-weight: 800;
    line-height: 0.93;
    letter-spacing: -0.065em;
}

.dream-faqs__intro > p {
    max-width: 480px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.98rem;
    line-height: 1.72;
}

.dream-faqs__list {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.dream-faqs details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.dream-faqs summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 25px 0;
    color: #fff;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.dream-faqs summary::-webkit-details-marker {
    display: none;
}

.dream-faqs summary > span {
    position: relative;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(155, 177, 255, 0.28);
    border-radius: 50%;
    background: rgba(65, 105, 225, 0.10);
}

.dream-faqs summary > span::before,
.dream-faqs summary > span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    background: #9bb1ff;
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.dream-faqs summary > span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.dream-faqs details[open] summary > span::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.dream-faqs details > div {
    padding: 0 54px 26px 0;
}

.dream-faqs details p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.92rem;
    line-height: 1.7;
}


/* =========================================================
   15. CONTACT
   ========================================================= */

.dream-contact {
    position: relative;
    overflow: hidden;
    padding: clamp(86px, 9vw, 136px) 0;
    background: #4169e1;
    color: #fff;
}

.dream-contact::before {
    position: absolute;
    top: -280px;
    right: -150px;
    width: 680px;
    height: 680px;
    border: 110px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.dream-contact__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
    gap: clamp(60px, 9vw, 132px);
}

.dream-contact h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(4rem, 6.3vw, 7.2rem);
    font-weight: 800;
    line-height: 0.91;
    letter-spacing: -0.07em;
}

.dream-contact__intro > p {
    max-width: 520px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.77);
    font-size: 1rem;
    line-height: 1.72;
}


.dream-contact__direct {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.dream-contact__direct a {
    display: grid;
    gap: 2px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    text-decoration: none;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        transform 160ms ease;
}

.dream-contact__direct a:hover,
.dream-contact__direct a:focus-visible {
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-2px);
}

.dream-contact__direct span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 750;
}

.dream-contact__direct strong {
    font-size: 1rem;
}

.dream-contact__reassurance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 46px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.dream-contact__reassurance > div {
    display: grid;
    gap: 4px;
    padding: 20px 20px 20px 0;
}

.dream-contact__reassurance > div + div {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.dream-contact__reassurance strong {
    font-size: 0.9rem;
}

.dream-contact__reassurance span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    line-height: 1.45;
}

.dream-contact__form-wrap {
    padding: clamp(28px, 4vw, 48px);
    border-radius: 26px;
    background: #fff;
    color: var(--dream-text);
    box-shadow: 0 28px 80px rgba(17, 24, 33, 0.18);
}

.dream-contact__form {
    display: grid;
    gap: 20px;
}

.dream-contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.dream-contact__field {
    display: grid;
    gap: 8px;
}

.dream-contact__field label {
    color: var(--dream-text);
    font-size: 0.77rem;
    font-weight: 800;
}

.dream-contact__field label span {
    color: #7b8691;
    font-weight: 600;
}

.dream-contact__field input,
.dream-contact__field textarea {
    width: 100%;
    border: 1px solid #d6dce2;
    border-radius: 11px;
    outline: none;
    background: #f8fafc;
    color: var(--dream-text);
    font: inherit;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}

.dream-contact__field input {
    min-height: 52px;
    padding: 0 14px;
}

.dream-contact__field textarea {
    min-height: 160px;
    padding: 14px;
    resize: vertical;
}

.dream-contact__field input:focus,
.dream-contact__field textarea:focus {
    border-color: #7d9bf2;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(65, 105, 225, 0.10);
}

.dream-contact__honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.dream-contact__submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding-top: 4px;
}

.dream-contact__submit p {
    max-width: 250px;
    margin: 0;
    color: #7b8691;
    font-size: 0.72rem;
    line-height: 1.45;
    text-align: right;
}

.dream-button--contact {
    border: 0;
    background: #111821;
    color: #fff;
    cursor: pointer;
}

.dream-button--contact:hover,
.dream-button--contact:focus-visible {
    background: #222d39;
}

.dream-button--contact:disabled {
    cursor: wait;
    opacity: 0.68;
    transform: none;
}

.dream-contact__message--ajax {
    margin-top: 0;
}

.dream-contact__message {
    display: grid;
    gap: 4px;
    margin-bottom: 22px;
    padding: 15px 17px;
    border-radius: 11px;
    font-size: 0.82rem;
}

.dream-contact__message strong {
    font-size: 0.88rem;
}

.dream-contact__message--success {
    border: 1px solid #bde7d9;
    background: #ebfaf5;
    color: #174d3c;
}

.dream-contact__message--error {
    border: 1px solid #f1c7c7;
    background: #fff1f1;
    color: #7f2222;
}


/* =========================================================
   16. FOOTER
   ========================================================= */

.dream-footer {
    position: relative;
    overflow: hidden;
    padding: 76px 0 30px;
    background: #0f1419;
    color: #fff;
}

.dream-footer::before {
    position: absolute;
    top: -240px;
    right: -160px;
    width: 620px;
    height: 620px;
    border: 90px solid rgba(65, 105, 225, 0.11);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.dream-footer__hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    align-items: end;
    gap: clamp(60px, 9vw, 140px);
    padding-bottom: 62px;
}

.dream-footer__brand {
    max-width: 430px;
}

.dream-footer__logo {
    display: block;
    width: 285px;
}

.dream-footer__logo img {
    width: 100%;
    height: auto;
}

.dream-footer__brand p {
    max-width: 390px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
    line-height: 1.7;
}

.dream-footer__cta {
    justify-self: end;
    max-width: 650px;
}

.dream-footer__cta > span {
    display: block;
    margin-bottom: 8px;
    color: #9bb1ff;
    font-size: 0.75rem;
    font-weight: 820;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dream-footer__cta > strong {
    display: block;
    color: #fff;
    font-size: clamp(3.6rem, 6vw, 6.7rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.065em;
}

.dream-footer__cta > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    color: #9bb1ff;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.dream-footer__cta > a:hover,
.dream-footer__cta > a:focus-visible {
    color: #fff;
}

.dream-footer__contact {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 -18px;
    padding: 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.dream-footer__contact > a,
.dream-footer__contact > div {
    display: grid;
    gap: 5px;
    min-height: 112px;
    align-content: center;
    padding: 24px 28px;
    color: #fff;
    text-decoration: none;
}

.dream-footer__contact > *:first-child {
    padding-left: 10px;
}

.dream-footer__contact > *:last-child {
    padding-right: 10px;
}

.dream-footer__contact > * + * {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.dream-footer__contact span {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.69rem;
    font-weight: 760;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.dream-footer__contact strong {
    color: #fff;
    font-size: 1rem;
}

.dream-footer__contact a:hover strong,
.dream-footer__contact a:focus-visible strong {
    color: #9bb1ff;
}

.dream-footer__links {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding-top: 28px;
}

.dream-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 23px;
}

.dream-footer__nav a,
.dream-footer__legal a {
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.74rem;
    font-weight: 750;
    text-decoration: none;
}

.dream-footer__nav a:hover,
.dream-footer__nav a:focus-visible,
.dream-footer__legal a:hover,
.dream-footer__legal a:focus-visible {
    color: #fff;
}

.dream-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 18px;
}

.dream-footer__legal span {
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.69rem;
}


/* =========================================================
   17. DEFAULT CONTENT
   ========================================================= */






.default-content {
    padding: var(--dream-space-section) 0;
}

.default-content article {
    max-width: var(--dream-content);
}

.site-footer {
    border-top: 1px solid var(--dream-border);
    background: #fff;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px 40px;
    padding-top: 44px;
    padding-bottom: 32px;
}

.site-footer__brand {
    display: grid;
    gap: 3px;
}

.site-footer__brand span,
.site-footer__legal {
    color: var(--dream-text-soft);
    font-size: 0.88rem;
}

.site-footer__nav {
    align-self: start;
}

.footer-menu a {
    text-decoration: none;
}

.site-footer__legal {
    display: flex;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding-top: 22px;
    border-top: 1px solid var(--dream-border);
}


/* =========================================================
   18. TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .dream-hero__grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
        gap: 40px;
    }

    .dream-hero h1 {
        font-size: clamp(3.8rem, 7vw, 5.8rem);
    }

    .dream-hero__badge--local {
        right: -10px;
    }

    .dream-hero__badge--platform {
        left: -48px;
    }
}

@media (max-width: 900px) {
    .site-header__quick-contact {
        display: none;
    }

    .dream-footer__hero {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 50px;
    }

    .dream-footer__cta {
        justify-self: start;
    }

    .dream-footer__links {
        align-items: flex-start;
        flex-direction: column;
    }

    .dream-footer__legal {
        justify-content: flex-start;
    }


    .dream-contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .dream-contact__intro {
        max-width: 700px;
    }

    .dream-footer__top {
        flex-direction: column;
    }

    .dream-footer__nav {
        justify-content: flex-start;
    }


    .dream-faqs__grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .dream-faqs__intro {
        position: static;
        max-width: 700px;
    }

    .dream-faqs__list {
        max-width: 760px;
    }


    .dream-about__grid {
        grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
        column-gap: 42px;
    }

    .dream-about__photo,
    .dream-about__photo img {
        min-height: 470px;
    }

    .dream-about h2 {
        font-size: clamp(3.5rem, 8vw, 5.8rem);
    }


    .dream-reviews__more {
        grid-template-columns: 1fr;
    }

    .dream-reviews__more blockquote,
    .dream-reviews__more blockquote + blockquote,
    .dream-reviews__more blockquote:last-child {
        padding: 26px 0;
        border-left: 0;
    }

    .dream-reviews__more blockquote + blockquote {
        border-top: 1px solid #d8d1c8;
    }


    .dream-reviews__top {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .dream-reviews__score > strong {
        max-width: none;
    }

    .dream-reviews__feature p {
        max-width: 800px;
    }



    .dream-process__timeline {
        grid-template-columns: 1fr 1fr;
    }

    .dream-process__timeline::before {
        display: none;
    }

    .dream-process__step,
    .dream-process__step + .dream-process__step {
        padding: 30px 24px 32px 44px;
        border-top: 1px solid #d3d9df;
        border-left: 0;
    }

    .dream-process__step:nth-child(even) {
        border-left: 1px solid #e1e5e9;
    }

    .dream-process__mark,
    .dream-process__step + .dream-process__step .dream-process__mark {
        top: 35px;
        left: 0;
    }

    .dream-process__step:nth-child(even) .dream-process__mark {
        left: 24px;
    }

    .dream-process__step h3,
    .dream-process__step p {
        max-width: 320px;
    }




    .dream-more-work__grid {
        gap: 26px 20px;
    }

    .dream-performance__grid {
        grid-template-columns: 1fr;
        row-gap: 34px;
        column-gap: 0;
    }

    .dream-performance__intro {
        max-width: 700px;
    }

    .dream-performance__features {
        max-width: 760px;
    }

    .dream-work__heading {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 44px;
    }

    .dream-work__heading h2 {
        max-width: 760px;
        font-size: clamp(3.4rem, 8vw, 5rem);
    }

    .dream-work__heading > p {
        max-width: 680px;
    }

    .dream-project {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "visual"
            "extras";
        min-height: 0;
        gap: 36px;
    }

    .dream-project__copy {
        max-width: 650px;
    }

    .dream-project__visual {
        width: min(100%, 720px);
    }

    .dream-platform::before {
        width: 60%;
        opacity: 0.48;
    }

    .dream-platform__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .dream-platform__intro {
        max-width: 690px;
    }

    .dream-platform__details {
        max-width: 760px;
    }

    .dream-proof__intro {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .dream-proof__copy {
        max-width: 680px;
        justify-self: start;
    }

    .dream-proof__stats {
        grid-template-columns: 1fr 1fr;
    }

    .dream-proof__stat {
        min-height: 150px;
        padding: 26px 24px 26px 0;
    }

    .dream-proof__stat + .dream-proof__stat {
        padding-left: 24px;
    }

    .dream-proof__stat:nth-child(3) {
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.13);
        border-left: 0;
    }

    .dream-proof__stat:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.13);
    }

    body.menu-open {
        overflow: hidden;
    }

    .site-header__inner {
        min-height: 72px;
    }

    .site-header__logo {
        width: 210px;
    }

    .site-header__toggle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 9px 0;
        border: 0;
        background: transparent;
        color: var(--dream-text);
        cursor: pointer;
        font-weight: 800;
    }

    .site-header__toggle-icon {
        position: relative;
        width: 24px;
        height: 16px;
    }

    .site-header__toggle-icon span {
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background: currentColor;
        transition:
            top 180ms ease,
            transform 180ms ease;
    }

    .site-header__toggle-icon span:first-child {
        top: 3px;
    }

    .site-header__toggle-icon span:last-child {
        top: 11px;
    }

    .site-header__toggle[aria-expanded="true"] .site-header__toggle-icon span:first-child {
        top: 7px;
        transform: rotate(45deg);
    }

    .site-header__toggle[aria-expanded="true"] .site-header__toggle-icon span:last-child {
        top: 7px;
        transform: rotate(-45deg);
    }

    .site-header__nav-wrap {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        width: 100%;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        padding: 22px 24px 28px;
        border-top: 1px solid var(--dream-border);
        border-bottom: 1px solid var(--dream-border);
        background: rgba(255,255,255,0.98);
    }

    .site-header__nav-wrap.is-open {
        display: block;
    }

    .primary-menu {
        display: grid;
        gap: 0;
    }

    .primary-menu li {
        border-bottom: 1px solid var(--dream-border);
    }

    .primary-menu a {
        display: block;
        padding: 15px 0;
        font-size: 1.05rem;
    }

    .site-header__cta {
        width: 100%;
        margin-top: 22px;
    }

    .dream-hero {
        min-height: auto;
        padding-top: 76px;
    }

    .dream-hero__grid {
        grid-template-columns: 1fr;
        gap: 66px;
    }

    .dream-hero__content {
        max-width: 760px;
    }

    .dream-hero h1 {
        max-width: 760px;
        font-size: clamp(4.2rem, 11vw, 6.6rem);
    }

    .dream-hero__visual {
        width: min(100%, 650px);
        justify-self: center;
    }

    .dream-build-card {
        transform: none;
    }

    .dream-hero__badge--local {
        right: -12px;
    }

    .dream-hero__badge--platform {
        left: -34px;
    }

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

    .site-footer__legal {
        grid-column: auto;
    }
}



/* Platform tablet refinement: compact heading + 2x2 feature grid */
@media (min-width: 601px) and (max-width: 1024px) {

    .dream-platform {
        padding: 78px 0 86px;
    }

    .dream-platform::before {
        width: 68%;
        opacity: 0.42;
    }

    .dream-platform__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .dream-platform__intro {
        max-width: 760px;
    }

    .dream-platform h2 {
        font-size: clamp(3.5rem, 7vw, 5rem);
        line-height: 0.94;
    }

    .dream-platform__intro > p {
        max-width: 680px;
        margin-top: 20px;
        font-size: 0.95rem;
        line-height: 1.62;
    }

    .dream-platform__intro > p:first-of-type {
        display: none;
    }

    .dream-platform__details {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        max-width: none;
        border-top: 0;
    }

    .dream-platform__row {
        display: block;
        min-height: 190px;
        padding: 24px;
        border: 1px solid #cfd5db;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.58);
    }

    .dream-platform__label {
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .dream-platform__row h3 {
        padding-top: 7px;
        font-size: 0.98rem;
        line-height: 1.3;
    }

    .dream-platform__row p {
        max-width: none;
        font-size: 0.88rem;
        line-height: 1.58;
    }

    .dream-platform__outcome {
        grid-column: 1 / -1;
        margin-top: 2px;
        padding: 22px 24px;
    }
}


/* =========================================================
   19. MOBILE
   ========================================================= */

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

    .dream-footer {
        padding-top: 58px;
    }

    .dream-footer__hero {
        padding-bottom: 44px;
    }

    .dream-footer__logo {
        width: 235px;
    }

    .dream-footer__cta > strong {
        font-size: clamp(3.25rem, 15vw, 5rem);
    }

    .dream-footer__contact {
        grid-template-columns: 1fr;
    }

    .dream-footer__contact {
        margin: 0;
        padding: 0;
    }

    .dream-footer__contact > a,
    .dream-footer__contact > div,
    .dream-footer__contact > *:first-child,
    .dream-footer__contact > *:last-child,
    .dream-footer__contact > * + * {
        min-height: 0;
        padding: 20px 0;
        border-left: 0;
    }

    .dream-footer__contact > * + * {
        border-top: 1px solid rgba(255, 255, 255, 0.13);
    }


    .dream-contact {
        padding: 72px 0;
    }

    .dream-contact h2 {
        font-size: clamp(3.4rem, 16vw, 5.1rem);
    }

    .dream-contact__reassurance {
        grid-template-columns: 1fr;
        border-bottom: 0;
    }

    .dream-contact__reassurance > div,
    .dream-contact__reassurance > div + div {
        padding: 17px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    }

    .dream-contact__form-wrap {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .dream-contact__row {
        grid-template-columns: 1fr;
    }

    .dream-contact__submit {
        align-items: stretch;
        flex-direction: column;
    }

    .dream-contact__submit .dream-button {
        width: 100%;
    }

    .dream-contact__submit p {
        max-width: none;
        text-align: left;
    }

    .dream-footer {
        padding-top: 44px;
    }

    .dream-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }


    .dream-faqs {
        padding: 70px 0;
    }

    .dream-faqs h2 {
        font-size: clamp(3.2rem, 15vw, 4.8rem);
    }

    .dream-faqs summary {
        gap: 16px;
        padding: 21px 0;
        font-size: 0.97rem;
    }

    .dream-faqs details > div {
        padding-right: 0;
        padding-bottom: 22px;
    }

    .dream-faqs details p {
        font-size: 0.9rem;
    }


    .dream-about {
        padding: 70px 0;
    }

    .dream-about__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "heading"
            "portrait"
            "body";
        gap: 28px;
    }

    .dream-about__heading {
        padding-top: 0;
    }

    .dream-about__portrait {
        position: static;
    }

    .dream-about__photo {
        min-height: 330px;
        border-radius: 20px;
    }

    .dream-about__photo img {
        min-height: 330px;
        object-position: center 24%;
    }

    .dream-about h2 {
        font-size: clamp(2.9rem, 13vw, 4.25rem);
        line-height: 0.94;
    }

    .dream-about__copy {
        margin-top: 0;
    }

    .dream-about__copy .dream-about__lead {
        font-size: 1.12rem;
    }

    .dream-about__facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 30px;
    }

    .dream-about__facts > div,
    .dream-about__facts > div + div {
        min-height: 94px;
        padding: 17px 10px 15px 0;
        border-top: 0;
        border-left: 0;
    }

    .dream-about__facts > div + div {
        padding-left: 10px;
        border-left: 1px solid #d8dde2;
    }

    .dream-about__facts strong {
        font-size: 0.8rem;
        line-height: 1.25;
    }

    .dream-about__facts span {
        margin-top: 4px;
        font-size: 0.66rem;
        line-height: 1.35;
    }


    .dream-reviews {
        padding: 68px 0;
    }

    .dream-reviews__top {
        padding-bottom: 42px;
    }

    .dream-reviews__feature p {
        font-size: clamp(2.25rem, 11vw, 3.6rem);
    }

    .dream-reviews__more p {
        font-size: 1rem;
    }


    .dream-process {
        padding: 70px 0;
    }

    .dream-process__heading {
        margin-bottom: 30px;
        text-align: left;
    }

    .dream-process__heading h2 {
        margin-left: 0;
        font-size: clamp(2.65rem, 11vw, 3.55rem);
        line-height: 0.98;
        letter-spacing: -0.055em;
    }

    .dream-process__heading h2 br {
        display: none;
    }

    .dream-process__heading > p {
        margin-top: 18px;
        margin-left: 0;
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .dream-process__timeline {
        grid-template-columns: 1fr;
        border-top: 0;
    }

    .dream-process__step,
    .dream-process__step + .dream-process__step {
        padding: 24px 0 28px 42px;
        border-top: 1px solid #d3d9df;
        border-left: 0;
    }

    .dream-process__step:nth-child(even) {
        border-left: 0;
    }

    .dream-process__mark,
    .dream-process__step + .dream-process__step .dream-process__mark,
    .dream-process__step:nth-child(even) .dream-process__mark {
        top: 29px;
        left: 0;
    }

    .dream-process__step h3,
    .dream-process__step p {
        max-width: none;
    }

    .dream-process__closing {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 24px;
    }

    .dream-process__closing .dream-button {
        width: 100%;
    }



    .dream-more-work {
        padding: 68px 0;
    }

    .dream-more-work__heading {
        margin-bottom: 38px;
        text-align: left;
    }

    .dream-more-work__heading h2 {
        margin-left: 0;
        font-size: clamp(3rem, 13vw, 4.35rem);
    }

    .dream-more-work__heading > p {
        margin-left: 0;
    }

    .dream-more-work__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .dream-more-work__item,
    .dream-more-work__item--lead {
        grid-column: 1;
    }

    .dream-more-work__image,
    .dream-more-work__item--lead .dream-more-work__image {
        aspect-ratio: 16 / 10;
        border-radius: 16px;
    }

    .dream-more-work__meta {
        padding-top: 12px;
    }

    .dream-performance {
        padding: 70px 0;
    }

    .dream-performance h2 {
        font-size: clamp(3.1rem, 14vw, 4.6rem);
    }

    .dream-performance__intro > p {
        font-size: 0.95rem;
    }

    .dream-performance__item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
        padding: 23px 0;
    }

    .dream-performance__icon {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }

    .dream-work {
        padding: 58px 0;
    }

    .dream-work__heading {
        margin-bottom: 34px;
    }

    .dream-work__heading h2 {
        font-size: clamp(3.1rem, 14vw, 4.6rem);
    }

    .dream-project {
        grid-template-areas:
            "copy"
            "visual"
            "extras";
        gap: 26px;
        padding: 28px 18px;
        border-radius: 22px;
    }

    .dream-project__tags {
        margin-top: 0;
        gap: 7px;
    }

    .dream-project__tags li {
        padding: 7px 10px;
        font-size: 0.68rem;
    }

    .dream-project__demo-note {
        margin-top: 16px;
    }

    .dream-project + .dream-project {
        margin-top: 18px;
    }

    .dream-project h3 {
        font-size: clamp(2.8rem, 13vw, 4.1rem);
    }

    .dream-project__copy > p {
        font-size: 0.93rem;
    }

    .dream-project-browser {
        border-radius: 16px;
        transform: none;
    }

    .dream-project-browser__screen {
        min-height: 315px;
    }

    .dream-project-browser__screen--image img {
        min-height: 315px;
    }

    .dream-platform {
        padding: 70px 0;
    }

    .dream-platform::before {
        width: 100%;
        height: 42%;
        opacity: 0.38;
        -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
        mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
    }

    .dream-platform h2 {
        font-size: clamp(3.25rem, 15vw, 4.8rem);
    }

    .dream-platform__intro > p {
        margin-top: 23px;
        font-size: 0.95rem;
    }

    .dream-platform__row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px 0;
    }

    .dream-platform__label {
        gap: 12px;
    }

    .dream-platform__icon {
        width: 34px;
        height: 34px;
        border-radius: 11px;
    }

    .dream-platform__row h3 {
        font-size: 1rem;
    }

    .dream-platform__row p {
        font-size: 0.91rem;
    }

    .dream-platform__outcome {
        gap: 14px;
        margin-top: 28px;
        padding: 22px 18px;
    }

    .dream-proof {
        padding: 68px 0;
    }

    .dream-proof h2 {
        font-size: clamp(2.65rem, 12vw, 4rem);
    }

    .dream-proof__copy p {
        font-size: 0.95rem;
    }

    .dream-proof__stats {
        grid-template-columns: 1fr 1fr;
        margin-top: 36px;
    }

    .dream-proof__stat,
    .dream-proof__stat + .dream-proof__stat,
    .dream-proof__stat:nth-child(3),
    .dream-proof__stat:nth-child(4) {
        min-height: 122px;
        padding: 20px 14px 18px 0;
        border-top: 0;
        border-left: 0;
    }

    .dream-proof__stat:nth-child(even) {
        padding-right: 0;
        padding-left: 16px;
        border-left: 1px solid rgba(255, 255, 255, 0.13);
    }

    .dream-proof__stat:nth-child(3),
    .dream-proof__stat:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.13);
    }

    .dream-proof__stat strong {
        font-size: clamp(2.35rem, 10vw, 3.35rem);
    }

    .dream-proof__stat--location strong {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .dream-proof__stat span {
        max-width: 145px;
        margin-top: 7px;
        font-size: 0.73rem;
        line-height: 1.35;
    }

    .dream-container {
        width: min(calc(100% - 32px), var(--dream-container));
    }

    .site-header__logo {
        width: 190px;
    }

    .site-header__toggle-label {
        display: none;
    }

    .dream-hero {
        padding: 56px 0 76px;
        background-size: 34px 34px;
    }

    .dream-hero::after {
        background: linear-gradient(180deg, rgba(247,248,250,0.74), rgba(247,248,250,0.90));
    }

    .dream-hero__eyebrow {
        margin-bottom: 18px;
        font-size: 0.69rem;
    }

    .dream-hero h1 {
        font-size: clamp(3.25rem, 16vw, 4.8rem);
        line-height: 0.94;
        letter-spacing: -0.065em;
    }

    .dream-hero__lead {
        margin-top: 22px;
        font-size: 1rem;
    }

    .dream-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 28px;
    }

    .dream-hero__actions .dream-button {
        width: 100%;
    }

    .dream-hero__proof {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 12px;
        margin-top: 27px;
        font-size: 0.75rem;
    }

    .dream-hero__grid {
        gap: 48px;
    }

    .dream-build-card {
        border-radius: 22px;
    }

    .dream-build-card__top {
        min-height: 44px;
        padding-inline: 14px;
    }

    .dream-build-card__body {
        padding: 28px 20px 24px;
    }

    .dream-build-card h2 {
        font-size: clamp(2.6rem, 13vw, 4rem);
    }

    .dream-build-card__features > div {
        grid-template-columns: 18px 1fr;
        padding: 13px;
    }

    .dream-build-card__features small {
        line-height: 1.4;
    }

    .dream-hero__badge {
        display: none;
    }

    .site-footer__legal {
        display: grid;
    }
}


/* =========================================================
   20. ADMIN BAR
   ========================================================= */

body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 0;
    }
}

/* =========================================================
   LEGAL PAGES
   ========================================================= */

.dream-legal {
    background: #ffffff;
    color: #111820;
}

.dream-legal__hero {
    padding: clamp(92px, 10vw, 142px) 0 clamp(58px, 7vw, 92px);
    background: #eef4fa;
    border-bottom: 1px solid #d8e0e8;
}

.dream-legal__hero-inner {
    max-width: 920px;
}

.dream-legal__hero h1 {
    max-width: 850px;
    margin: 14px 0 18px;
    font-size: clamp(3.4rem, 7vw, 6.7rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.dream-legal__hero p {
    max-width: 720px;
    margin: 0;
    color: #5c6875;
    font-size: 1.04rem;
    line-height: 1.7;
}

.dream-legal__content {
    padding: clamp(62px, 8vw, 104px) 0 clamp(80px, 10vw, 130px);
}

.dream-legal__inner {
    max-width: 880px;
}

.dream-legal__updated {
    margin: 0 0 46px;
    color: #77818c;
    font-size: 0.84rem;
}

.dream-legal__inner h2 {
    margin: 54px 0 16px;
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.dream-legal__inner h2:first-of-type {
    margin-top: 0;
}

.dream-legal__inner p {
    max-width: 780px;
    margin: 0 0 18px;
    color: #4f5d6b;
    font-size: 0.98rem;
    line-height: 1.78;
}

.dream-legal__inner a {
    color: #315fe7;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.dream-legal__inner a:hover,
.dream-legal__inner a:focus-visible {
    color: #111820;
}

@media (max-width: 600px) {
    .dream-legal__hero {
        padding: 76px 0 50px;
    }

    .dream-legal__hero h1 {
        font-size: clamp(3rem, 15vw, 4.6rem);
    }

    .dream-legal__content {
        padding: 52px 0 76px;
    }

    .dream-legal__updated {
        margin-bottom: 34px;
    }

    .dream-legal__inner h2 {
        margin-top: 42px;
    }
}

@media (max-width: 900px) {
    .dream-performance__evidence {
        margin-top: 0;
    }

    .dream-performance__results {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dream-performance__result {
        min-height: 112px;
        padding: 21px 22px;
    }

    .dream-performance__result:nth-child(3) {
        border-left: 0;
    }

    .dream-performance__result:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .dream-performance__result strong {
        font-size: clamp(2.2rem, 7vw, 3.25rem);
    }
}

@media (max-width: 600px) {
    .dream-performance__evidence {
        margin-top: 0;
    }

    .dream-performance__results {
        grid-template-columns: 1fr 1fr;
    }

    .dream-performance__result {
        min-height: 96px;
        padding: 17px 14px;
    }

    .dream-performance__result strong {
        font-size: clamp(1.85rem, 10vw, 2.55rem);
    }

    .dream-performance__result span {
        font-size: 0.66rem;
    }

    .dream-performance__note {
        margin-top: 14px !important;
        font-size: 0.71rem !important;
    }
}

/* =========================================================
   ANALYTICS CONSENT
   ========================================================= */

.dream-consent[hidden] {
    display: none !important;
}

.dream-consent {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(17, 24, 32, 0.98);
}

.dream-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(1220px, calc(100% - 40px));
    margin: 0 auto;
    padding: 10px 0;
}

.dream-consent__copy {
    display: flex;
    align-items: baseline;
    gap: 10px;
    min-width: 0;
}

.dream-consent__copy strong {
    flex: 0 0 auto;
    color: #ffffff;
    font-size: 0.74rem;
}

.dream-consent__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.70rem;
    line-height: 1.45;
}

.dream-consent__copy a {
    color: rgba(255, 255, 255, 0.88);
    text-underline-offset: 2px;
}

.dream-consent__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 6px;
}

.dream-consent__button {
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 800;
    cursor: pointer;
}

.dream-consent__button--primary {
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #111820;
}

.dream-consent__button--secondary {
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
}

.dream-consent__button:hover,
.dream-consent__button:focus-visible {
    transform: translateY(-1px);
}

@media (max-width: 700px) {
    .dream-consent__inner {
        align-items: flex-start;
        width: min(100% - 24px, 1220px);
        padding: 9px 0;
    }

    .dream-consent__copy {
        display: block;
    }

    .dream-consent__copy strong {
        display: block;
        margin-bottom: 2px;
    }

    .dream-consent__copy p {
        font-size: 0.66rem;
        line-height: 1.4;
    }

    .dream-consent__actions {
        margin-top: 1px;
    }

    .dream-consent__button {
        min-height: 28px;
        padding: 0 10px;
        font-size: 0.64rem;
    }
}

@media (max-width: 480px) {
    .dream-consent__inner {
        gap: 10px;
    }

    .dream-consent__copy p {
        max-width: 230px;
    }

    .dream-consent__actions {
        flex-direction: column-reverse;
        gap: 4px;
    }

    .dream-consent__button {
        min-width: 68px;
    }
}

