:root {
    color-scheme: dark;
    --bg-color-main: #000000;
    --text-color-primary: #f1f1f1;
    --text-color-white: #ffffff;
    --text-color-muted: rgba(255, 255, 255, 0.6);
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Inter', 'Poppins', sans-serif
}

::selection,
img::selection {
    background: #ffffff;
    color: #000000
}

::-moz-selection {
    background: #ffffff;
    color: #000000
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box
}

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

/* Inline images inside headings must not be block */
h1 img,
h2 img,
h3 img {
    display: inline;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: #000;
    overscroll-behavior: none;
    scroll-behavior: smooth
}

html::-webkit-scrollbar {
    display: none
}

/* ─── Hero reveal animation (clay.global style) ─── */
@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-reveal {
    opacity: 0;
    animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body {
    margin: 0;
    min-height: 100%;
    background: #000000;
    background-attachment: fixed;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overscroll-behavior: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    color: var(--text-color-primary);
    padding: 0;
    max-width: 100vw;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.policy-page,
a[href*="privacy-policy"],
a[href*="terms-and-conditions"] {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}


.fonts-loaded body {
    font-family: var(--font-primary)
}

.fonts-loaded h1,
.fonts-loaded h2,
.fonts-loaded h3,
.fonts-loaded .faq-title,
.fonts-loaded .construction-title {
    font-family: var(--font-display)
}

body::-webkit-scrollbar {
    display: none
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    box-sizing: border-box;
}

.header-left,
.header-right {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-logo {
    text-decoration: none;
    line-height: 1;
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 18px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    mix-blend-mode: difference;
}


.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: normal;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    line-height: 1;
    transition: color 0.15s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.95);
}

.header-start-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #000;
    background: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    line-height: 1;
    transition: all 0.3s ease;
    border: 1px solid #fff;
    white-space: nowrap;
}

.header-start-link:hover {
    background: transparent;
    color: #fff;
}

@media screen and (max-width: 768px) {
    header {
        padding: 12px 16px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }

    .header-left,
    .header-right {
        gap: 1rem;
    }

    .header-nav {
        display: none;
        /* Hide nav links on mobile to save space, keeping only logo and CTA */
    }
}



.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0
}

.logo-link.hidden {
    opacity: 0;
    visibility: hidden
}

.logo {
    height: 19px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    margin: 0;
    padding: 0;
    aspect-ratio: 259 / 37;
    object-fit: contain;
    opacity: 0;
    animation: logoFadeIn 0.8s ease-out 0.2s forwards
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}



main {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    justify-content: center;
    align-items: center
}

@media screen and (max-width:768px) {
    body:not(:has(.brutalist-hero)) {
        padding-top: 5rem;
        padding-bottom: 0;
    }

    .header-container {
        display: flex;
        justify-content: center;
        grid-template-columns: none
    }

    .logo {
        height: 1.3rem;
        width: auto;
        max-width: 259px;
        position: relative;
        z-index: 200;
        filter: brightness(0) invert(1);
        aspect-ratio: 259 / 37;
        object-fit: contain
    }
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem 4rem 2rem;
    text-align: left;
    letter-spacing: normal;
    text-transform: none
}

.policy-container h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2rem
}

.policy-container h2 {
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #fff
}

.policy-container p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(241, 241, 241, 0.8);
    font-weight: 300
}

.policy-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: rgba(241, 241, 241, 0.8)
}

.policy-container li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 300
}

.policy-container h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #fff
}

.policy-container a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline
}

.policy-container a:hover {
    opacity: 1
}

@media screen and (max-width:768px) {
    .policy-container {
        padding: 2rem 1.5rem 3rem 1.5rem
    }

    .policy-container h1 {
        font-size: 2rem
    }

    .policy-container h2 {
        font-size: 1.25rem
    }
}

.why-choose-section {
    width: 100%;
    background: transparent;
    padding: 6rem 3rem;
    box-sizing: border-box
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%
}

.why-choose-headline {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 2.45rem);
    font-weight: 700;
    color: var(--text-color-white);
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-transform: none;
    margin: 0 0 2.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4em;
    text-align: center
}

.why-choose-logo {
    height: 0.75em;
    width: auto;
    filter: brightness(0) invert(1);
    display: inline-block;
    vertical-align: baseline;
    object-fit: contain
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    transition: all 0.3s ease
}

.why-choose-card:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px)
}

.why-choose-card-illustration {
    width: 100%;
    height: 180px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center
}

.why-choose-card-img {
    height: 230px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: invert(1)
}

.crown-trophy {
    mix-blend-mode: normal !important;
    filter: none !important;
    opacity: 0.9
}

.trust-gap-img {
    mix-blend-mode: normal !important;
    filter: none !important;
    opacity: 0.9
}

.visual-penalty-img {
    mix-blend-mode: normal !important;
    filter: none !important;
    opacity: 0.9
}

.why-choose-number {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.05em;
    text-transform: none
}

.why-choose-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
    text-transform: none
}

.why-choose-card-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    letter-spacing: 0;
    text-transform: none
}

.why-choose-cta {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.why-choose-cta-text {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    letter-spacing: 0;
    text-transform: none
}

.why-choose-cta-btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: #ffffff;
    color: #000000;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    letter-spacing: -0.01em;
    border-radius: 0;
    transition: all 0.2s ease;
    border: 2px solid #ffffff
}

.why-choose-cta-btn:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px)
}

@media screen and (max-width:900px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width:768px) {
    .why-choose-section {
        padding: 3rem 1.5rem
    }

    .why-choose-headline {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        margin-bottom: 1.75rem
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem
    }

    .why-choose-cta {
        margin-top: 2.5rem;
        padding: 0 1rem
    }

    .why-choose-cta-text {
        font-size: 0.85rem
    }

    .why-choose-cta-btn {
        padding: 0.8rem 2rem;
        font-size: 0.8rem
    }
}

.secondary-cta-section {
    width: 100%;
    background: transparent;
    padding: 2.5rem 3rem 8rem 3rem;
    box-sizing: border-box
}

.secondary-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem
}

.secondary-cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-color-white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: none;
    margin: 0
}

.secondary-cta-subheadline {
    font-family: var(--font-primary);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 400;
    color: var(--text-color-muted);
    line-height: 1.6;
    letter-spacing: 0;
    text-transform: none;
    margin: 0;
    max-width: 650px
}

.secondary-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #000000;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-top: 0.5rem
}

.secondary-cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px)
}

.secondary-cta-btn:active {
    transform: translateY(0)
}

.secondary-cta-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.click-here-arrow {
    position: absolute;
    left: calc(100% - 5px);
    top: -25px;
    transform: none;
    width: 80px;
    height: auto;
    pointer-events: none;
    opacity: 1
}

@media screen and (max-width:768px) {
    .secondary-cta-section {
        padding: 4rem 1.5rem 6rem 1.5rem
    }

    .secondary-cta-btn {
        width: 100%;
        justify-content: center
    }

    .click-here-arrow {
        display: none
    }
}

.faq-section {
    width: 100%;
    background-color: transparent;
    padding-top: 6rem;
    padding-bottom: 8rem;
    padding-left: 3rem;
    padding-right: 3rem;
    min-height: calc(100vh - 5rem);
    box-sizing: border-box
}

.faq-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    row-gap: 3rem
}

.faq-left {
    width: 100%
}

.faq-right {
    width: 100%
}

.faq-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1.4rem, 3.5vw, 2.45rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 2rem;
    margin-left: 0;
    margin-right: 0;
    letter-spacing: -0.02em;
    text-transform: none;
    text-align: center
}

.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0
}

.faq-item {
    width: 100%;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(255, 255, 255, 0.08);
    overflow: hidden
}

.faq-item:last-of-type {
    border-bottom: none
}

.faq-question {
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
    color: #ffffff;
    outline: none;
    -webkit-tap-highlight-color: transparent
}

.faq-question:hover {
    opacity: 0.8
}

.faq-question:focus-visible {
    outline: none;
    background-color: transparent
}

.faq-question:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
    background-color: transparent
}

.faq-question:active {
    background-color: transparent;
    opacity: 1
}

.faq-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    color: #ffffff;
    stroke: #ffffff;
    stroke-width: 1.5;
    transition: transform 0.25s ease
}

.faq-question-text {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(0.9rem, 1.15vw, 1.05rem);
    font-weight: 500;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0;
    flex-grow: 1;
    text-align: left
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease
}

.faq-item.active>.faq-answer-wrapper {
    grid-template-rows: 1fr
}

.faq-answer {
    overflow: hidden;
    min-height: 0
}

.faq-answer p {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(0.875rem, 1.05vw, 0.95rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 1.5rem;
    padding-left: calc(18px + 0.75rem);
    text-transform: none;
    letter-spacing: 0;
    text-align: left
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg)
}

@media screen and (min-width:768px) {
    .faq-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4rem
    }

    .faq-left {
        width: 100%;
        text-align: center;
        position: static
    }

    .faq-right {
        width: 100%;
        max-width: 800px
    }
}

@media screen and (max-width:767px) {
    .faq-section {
        padding-top: 4rem;
        padding-bottom: 2rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        min-height: auto
    }

    .faq-title {
        margin-bottom: 2rem;
        font-size: clamp(1.75rem, 5vw, 3.5rem);
        text-align: center
    }
}

footer {
    width: 100%;
    background: transparent;
    padding: 16px;
    border-top: none;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10
}

.policy-page footer {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 4rem;
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.24s;
}

.reveal-delay-3 {
    transition-delay: 0.38s;
}

.reveal-delay-4 {
    transition-delay: 0.52s;
}

/* ── Brutalist marquee ── */
.b-marquee {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 1rem 0;
    white-space: nowrap;
}

.b-marquee__track {
    display: inline-flex;
    animation: bMarquee 18s linear infinite;
}

.b-marquee__item {
    font-family: 'Helvetica Neue', 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    padding: 0 2rem;
}

.b-marquee__sep {
    font-family: 'Helvetica Neue', 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    padding: 0;
    align-self: center;
}

@keyframes bMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── Brutalist services section ── */
.b-section {
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #fff;
    padding: 0 4rem;
}

.b-section__header {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.b-counter {
    font-family: 'Helvetica Neue', 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
}

.b-label {
    font-family: 'Helvetica Neue', 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.b-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 5rem 0;
    gap: 4rem;
    align-items: start;
}


.b-heading {
    font-family: 'Helvetica Neue', 'Inter', sans-serif;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: #fff;
    margin: 0;
    text-transform: none;
}

.b-row__right {
    display: flex;
    align-items: flex-end;
    padding-top: 0.5rem;
}

.b-body {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    max-width: 480px;
}

/* ── Brutalist CTA ── */
.b-cta {
    width: 100%;
    border-top: 1px solid #fff;
    box-sizing: border-box;
}

.b-cta__inner {
    padding: 8rem 4rem 10rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.b-cta__heading {
    font-family: 'Helvetica Neue', 'Inter', sans-serif;
    font-size: clamp(4rem, 10vw, 11rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.05em;
    color: #fff;
    margin: 0 0 4rem 0;
    text-transform: none;
}

.b-cta__link {
    font-family: 'Helvetica Neue', 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid #fff;
    padding-bottom: 0.2em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.25s ease;
}

.b-cta__link:hover {
    opacity: 0.6;
}

.b-cta__arrow {
    font-size: 0.85em;
    transition: transform 0.25s ease;
}

.b-cta__link:hover .b-cta__arrow {
    transform: translate(4px, -4px);
}

@media screen and (max-width: 768px) {
    .b-section {
        padding: 0 1.5rem;
    }

    .b-row {
        grid-template-columns: 1fr;
        padding: 3rem 0;
        gap: 1.5rem;
    }

    .b-cta__inner {
        padding: 5rem 1.5rem 6rem 1.5rem;
    }
}



.footer-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "social copyright links";
    align-items: center;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box
}

.footer-socials {
    grid-area: social;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start
}

.footer-socials a {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    transition: color 0.15s ease;
}

.footer-socials a:hover {
    color: rgba(255, 255, 255, 0.95);
}

.footer-links {
    grid-area: links;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.95);
}

.footer-copyright {
    grid-area: copyright;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    white-space: nowrap;
    justify-self: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

@media screen and (max-width:768px) {
    footer {
        padding: 1rem 1.25rem;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 10
    }

    .footer-container {
        grid-template-columns: 1fr;
        grid-template-areas: "copyright" "links" "social";
        text-align: center;
        gap: 0.85rem
    }

    .footer-socials {
        justify-content: center;
        gap: 1.25rem;
        flex-wrap: wrap
    }

    .footer-links {
        justify-content: center;
        gap: 1.25rem;
        flex-wrap: wrap
    }

    .footer-copyright {
        justify-self: center
    }

    .footer-socials a,
    .footer-links a,
    .footer-copyright {
        font-size: 0.8rem
    }
}

.under-construction {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 3rem;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box;
    max-width: 1400px;
    min-height: 0
}

.go-home-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.go-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50px;
    color: #000;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    padding: 0.875rem 2rem;
    border: none;
    transition: background 0.3s ease;
}

.go-home-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.go-home-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
}

.construction-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-color-white);
    margin: 0 auto 1rem auto;
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    max-width: 800px
}

.construction-message {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-color-muted);
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.6;
    text-transform: none;
    letter-spacing: 0;
    text-align: center
}

@media screen and (max-width:768px) {
    .under-construction {
        padding: 4rem 1.5rem
    }

    .construction-emoji {
        font-size: 4rem;
        margin-bottom: 1.5rem
    }
}

.hero-section {
    width: 100%;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 8rem 3rem 4rem 3rem;
    position: relative;
    overflow: hidden
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--text-color-white);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0;
    text-transform: none
}

.hero-headline--small {
    font-size: clamp(1.75rem, 4.2vw, 3.15rem)
}

.hero-subheadline {
    font-family: var(--font-primary);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 400;
    color: var(--text-color-muted);
    line-height: 1.6;
    letter-spacing: 0;
    text-transform: none;
    margin: 0;
    max-width: 600px
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50px;
    color: #000;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    padding: 0.875rem 2rem;
    border: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1)
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px)
}

.hero-cta:active {
    transform: translateY(0)
}

.hero-cta:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px
}

.cta-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.cta-arrow {
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%) translateX(20%);
    width: 90px;
    height: auto;
    pointer-events: none;
    opacity: 1
}

@media screen and (max-width:768px) {
    .hero-section {
        min-height: 75vh;
        padding: 4rem 1.5rem 4rem 1.5rem
    }

    .hero-container {
        gap: 1.5rem
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem)
    }

    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px
    }

    .cta-arrow {
        display: none
    }
}

@media screen and (max-width:480px) {
    body {
        padding-top: 5rem;
        padding-bottom: 0
    }

    .header-container,
    .hero-container,
    .why-choose-container,
    .secondary-cta-container,
    .footer-container,
    .features-container,
    .under-construction {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .hero-headline {
        font-size: clamp(1.8rem, 10vw, 2.5rem)
    }

    .why-choose-headline {
        font-size: clamp(1.2rem, 6vw, 1.8rem)
    }

    .secondary-cta-headline {
        font-size: clamp(1.8rem, 8vw, 2.5rem)
    }

    .construction-emoji {
        font-size: 3rem
    }

    .logo {
        max-width: 180px
    }
}

@media screen and (max-width:360px) {
    header {
        padding: 0.75rem 1rem
    }

    .hero-section {
        padding: 3rem 1rem;
        min-height: 60vh
    }

    .hero-headline {
        font-size: 1.75rem
    }

    .hero-subheadline {
        font-size: 0.9rem
    }

    .why-choose-card {
        padding: 1.5rem 1rem
    }

    .why-choose-card-img {
        height: auto;
        max-height: 180px
    }

    .footer-socials {
        gap: 1rem;
        flex-wrap: wrap
    }
}

@media screen and (min-width:769px) {
    .logo-link.scroll-hidden {
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none
    }
}

.pain-points-section {
    width: 100%;
    background-color: transparent;
    padding: 8rem 3rem;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden
}

.pain-points-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center
}

.pain-points-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1.5rem 0;
    text-transform: none;
    letter-spacing: -0.03em;
    max-width: 1000px;
    color: #fff
}

.pain-points-title .highlight {
    color: #FF7F50;
    display: inline-block
}

.pain-points-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-color-muted);
    margin: 0 0 6rem 0;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.6;
    letter-spacing: 0;
    text-transform: none
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    width: 100%;
    max-width: 1200px
}

.secondary-cta-section {
    width: 100%;
    background-color: transparent;
    padding: 8rem 3rem
}

.secondary-cta-subheadline {
    font-family: var(--font-primary);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 400;
    color: var(--text-color-muted);
    line-height: 1.6;
    letter-spacing: 0;
    text-transform: none;
    margin: 0
}

.secondary-cta-card {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem
}

.secondary-cta-card:hover {
    border-color: rgba(255, 255, 255, 0.15)
}

.cta-heading {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em
}

.cta-subtext {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50px;
    color: #000;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 2.5rem;
    white-space: nowrap
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.9)
}

@media screen and (max-width:992px) {
    .secondary-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem
    }
}

@media screen and (max-width:768px) {
    .secondary-cta-section {
        padding: 4rem 1.5rem
    }

    .cta-heading {
        font-size: 1.5rem
    }
}

.cookie-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #050505;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    width: 320px;
    max-width: calc(100vw - 4rem);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--font-primary)
}

.cookie-banner.show {
    display: flex;
    animation: slideInUp 0.5s ease forwards
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff
}

.cookie-icon {
    font-size: 1.2rem
}

.cookie-text {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.5;
    margin: 0
}

.cookie-text-small {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-top: -0.5rem
}

.cookie-text-small strong {
    color: #fff;
    font-weight: 500
}

.cookie-text-small a {
    color: #fff;
    text-decoration: underline;
    cursor: pointer
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem 0;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none
}

.cookie-btn.accept {
    background-color: #fff;
    color: #000
}

.cookie-btn.accept:hover {
    background-color: #e0e0e0
}

.cookie-btn.decline {
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #333
}

.cookie-btn.decline:hover {
    background-color: #333
}

@media screen and (max-width:768px) {
    .cookie-banner {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        width: auto;
        max-width: none
    }
}

.message-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    margin-bottom: 3rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center
}

body:has(.message-content) .hero-section {
    padding-top: 3.6rem;
    padding-bottom: 4rem
}

.message-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center
}

.message-content p {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color-white);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    text-transform: none
}

.message-content p:first-child {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--text-color-white)
}

.message-signature {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: normal;
    margin-top: 4rem;
    margin-bottom: 3rem;
    color: var(--text-color-white);
    font-size: clamp(1.05rem, 1.8vw, 1.2rem)
}

@media screen and (max-width:768px) {
    .message-headline {
        margin-bottom: 2rem
    }

    .message-content {
        text-align: center
    }

    .message-content p {
        font-size: clamp(1rem, 4vw, 1.15rem);
        margin-bottom: 1.5rem
    }

    .message-content p:first-child {
        font-size: clamp(1.1rem, 4.5vw, 1.25rem);
        margin-bottom: 2rem
    }

    .message-signature {
        margin-top: 3rem
    }
}

.signature-contact {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    margin-top: 3rem;
    letter-spacing: -0.01em;
    text-transform: none;
    text-align: center
}

.signature-contact a {
    color: #fff;
    text-decoration: underline
}

.cinematic-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1)
}

.cinematic-reveal.in-view {
    opacity: 1;
    transform: translateY(0)
}

.calendar-alternative {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-color-white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: none;
    margin-bottom: 3rem;
    margin-top: 3rem;
    text-align: center
}

.calendar-alternative a {
    color: var(--text-color-white);
    text-decoration: underline;
    transition: opacity 0.2s ease
}

.calendar-alternative a:hover {
    opacity: 0.7
}

.gallery-section {
    width: 100%;
    padding: 6rem 3rem;
    background: transparent;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center
}

.gallery-container {
    max-width: 1100px;
    width: 100%;
    position: relative
}

.featured-label {
    position: absolute;
    left: -120px;
    top: 40px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    transform: rotate(-45deg);
    pointer-events: none
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
    flex: 0 0 calc(33.333% - 1.5rem);
    aspect-ratio: 1.2 / 1
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6),
.gallery-item:nth-child(7) {
    flex: 0 0 calc(25% - 1.5rem);
    aspect-ratio: 1.2 / 1
}

.gallery-item:nth-child(8),
.gallery-item:nth-child(9),
.gallery-item:nth-child(10) {
    flex: 0 0 calc(33.333% - 1.5rem);
    aspect-ratio: 1.4 / 1
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1)
}

.gallery-item:hover {
    z-index: 2;
    transform: translateY(-5px)
}

.gallery-item:hover img {
    transform: scale(1.05)
}

.gallery-separator {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 6rem 0 2rem
}

@media screen and (max-width:1024px) {
    .featured-label {
        display: none
    }

    .gallery-item {
        flex: 0 0 calc(50% - 1.5rem) !important;
        aspect-ratio: 4 / 3 !important
    }
}

@media screen and (max-width:600px) {
    .gallery-section {
        padding: 3rem 1.5rem
    }

    .gallery-grid {
        gap: 1rem
    }

    .gallery-item {
        flex: 0 0 100% !important
    }
}

.gallery-grid.portfolio-mode {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.gallery-grid.portfolio-mode .gallery-item {
    flex: none;
    width: 100%;
    aspect-ratio: 1 / 1
}

.gallery-grid.portfolio-mode .gallery-item:nth-child(4),
.gallery-grid.portfolio-mode .gallery-item:nth-child(5) {
    grid-column: span 1
}

.gallery-grid.portfolio-mode {
    justify-items: center
}

@media screen and (min-width:1025px) {
    .gallery-grid.portfolio-mode .gallery-item:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: 2;
        margin-left: 50%
    }

    .gallery-grid.portfolio-mode .gallery-item:nth-child(5) {
        grid-column: 2 / 3;
        grid-row: 2;
        margin-left: 50%
    }
}

@media screen and (max-width:1024px) {
    .gallery-grid.portfolio-mode {
        grid-template-columns: repeat(2, 1fr)
    }

    .gallery-grid.portfolio-mode .gallery-item:nth-child(n) {
        flex: 0 0 calc(50% - 1rem);
        aspect-ratio: 1/1 !important
    }
}

@media screen and (max-width:600px) {
    .gallery-grid.portfolio-mode {
        grid-template-columns: 1fr
    }
}

.hero-subheadline {
    font-family: var(--font-primary);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    letter-spacing: 0;
    text-transform: none;
    margin: 0;
    max-width: 650px
}

.message-content {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center
}

.message-content p {
    font-family: var(--font-primary) !important;
    font-size: 1.3rem !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem;
    letter-spacing: 0 !important;
    text-transform: none !important
}

.contact-form {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 0;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.form-row input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    letter-spacing: 0;
    text-transform: none
}

.contact-form textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
    padding: 1rem 1.25rem
}

.form-row input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.02)
}

.form-row input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4)
}

.form-submit-btn {
    width: 100%;
    padding: 0.875rem 2rem;
    background: #ffffff;
    color: #000000;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    letter-spacing: 0;
    text-transform: none;
    margin-top: 0.5rem
}

.form-submit-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px)
}

.form-submit-btn:active {
    transform: translateY(0)
}

.signature-contact {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 3rem 0 0;
    letter-spacing: 0;
    text-transform: none
}

.signature-contact a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.2s ease
}

.signature-contact a:hover {
    opacity: 0.8
}

@media screen and (max-width:768px) {
    .contact-form {
        margin-top: 2.5rem;
        gap: 0.875rem
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.875rem
    }

    .form-row input,
    .contact-form textarea {
        padding: 0.75rem 1rem
    }

    .form-submit-btn {
        padding: 0.875rem 1.5rem
    }
}

.hidden {
    display: none !important
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 0;
    text-align: center;
    animation: fadeInUp 0.4s ease forwards
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.form-success-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0;
    text-transform: none
}

.form-success-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
    text-transform: none;
    letter-spacing: 0
}

.application-divider {
    width: 100%;
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem
}

.application-divider::before,
.application-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.12)
}

.application-divider-text {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap
}

.application-intro {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem
}

.application-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.04)
}

.application-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff3333;
    box-shadow: 0 0 8px rgba(255, 51, 51, 0.6);
    margin-right: 0.6rem;
    animation: pulse-dot 2s ease-in-out infinite
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
        box-shadow: 0 0 4px rgba(255, 51, 51, 0.4)
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 12px rgba(255, 51, 51, 0.9)
    }
}

.application-heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-transform: none;
    margin: 0
}

.application-subtext {
    font-family: var(--font-primary);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    letter-spacing: 0;
    text-transform: none;
    margin: 0;
    max-width: 600px
}

.application-form {
    max-width: 900px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0
}

.application-fieldset {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0;
    padding: 2.5rem 0
}

.application-fieldset:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.application-legend {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0 0 1.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%
}

.legend-number {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 0.15rem 0.55rem
}

.application-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem
}

.application-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem
}

.application-label {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.03em;
    text-transform: none
}

.application-label-optional {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem
}

.application-input {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 400;
    color: #ffffff;
    transition: border-color 0.25s ease, background 0.25s ease;
    letter-spacing: 0;
    text-transform: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none
}

.application-input::placeholder {
    color: rgba(255, 255, 255, 0.25)
}

.application-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06)
}

.application-helper {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0;
    text-transform: none;
    margin: 0 0 1.25rem 0;
    line-height: 1.5
}

.application-helper--textarea {
    margin-bottom: 0.5rem
}

.application-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem
}

.checkbox-card {
    cursor: pointer;
    display: block
}

.checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0
}

.checkbox-card-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.22s ease, background 0.22s ease;
    user-select: none
}

.checkbox-card:hover .checkbox-card-inner {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.055)
}

.checkbox-card.checked .checkbox-card-inner {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.07)
}

.checkbox-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.22s ease
}

.checkbox-card.checked .checkbox-card-icon {
    color: rgba(255, 255, 255, 0.9)
}

.checkbox-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem
}

.checkbox-card-text strong {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0;
    text-transform: none
}

.checkbox-card-text small {
    font-family: var(--font-primary);
    font-size: 0.73rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0;
    text-transform: none
}

.checkbox-card.checked .checkbox-card-text strong {
    color: rgba(255, 255, 255, 1)
}

.checkbox-card.checked .checkbox-card-text small {
    color: rgba(255, 255, 255, 0.55)
}

.application-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 400;
    color: #ffffff;
    transition: border-color 0.25s ease, background 0.25s ease;
    letter-spacing: 0;
    text-transform: none;
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none
}

.application-textarea::placeholder {
    color: rgba(255, 255, 255, 0.25)
}

.application-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06)
}

.application-select-wrapper {
    position: relative;
    display: block
}

.application-select {
    width: 100%;
    padding: 0.85rem 3rem 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 400;
    color: #ffffff;
    transition: border-color 0.25s ease, background 0.25s ease;
    letter-spacing: 0;
    text-transform: none;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.application-select option {
    background: #111111;
    color: #ffffff;
    font-size: 0.9rem
}

.application-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06)
}

.application-select-arrow {
    position: absolute;
    right: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    display: flex;
    align-items: center
}

.application-submit-btn {
    margin-top: 2rem;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 50px
}

.form-success-icon {
    margin-bottom: 0.75rem
}

@media screen and (max-width:768px) {
    .application-row {
        grid-template-columns: 1fr
    }

    .application-checkboxes {
        grid-template-columns: 1fr
    }

    .application-badge {
        font-size: 0.65rem
    }

    .application-fieldset {
        padding: 2rem 0
    }
}

@media screen and (max-width:480px) {
    .application-intro {
        margin-top: 2rem
    }

    .application-heading {
        font-size: 1.75rem
    }
}

.process-section {
    padding: 6rem 3rem;
    width: 100%;
    background: transparent
}

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

.process-heading-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    text-transform: none;
    text-align: center
}

.process-subheading-text {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-color-muted);
    margin: 0 auto 4rem auto;
    max-width: 600px;
    line-height: 1.6;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    text-align: center
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem
}

.process-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px)
}

.process-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto
}

.process-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem 0;
    text-transform: none;
    letter-spacing: -0.01em
}

.process-text {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
    text-transform: none;
    letter-spacing: 0
}

@media screen and (max-width:992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width:768px) {
    .process-grid {
        grid-template-columns: 1fr
    }

    .process-section {
        padding: 4rem 1.5rem
    }
}

.static-blue-glow {
    position: relative;
    display: inline-block;
    color: var(--text-color-white);
    text-shadow: 0px 0px 10px rgba(0, 160, 255, 0.9), -20px 0px 15px rgba(0, 160, 255, 0.7), 20px 0px 15px rgba(0, 160, 255, 0.7), -50px 0px 25px rgba(0, 160, 255, 0.5), 50px 0px 25px rgba(0, 160, 255, 0.5), -90px 0px 40px rgba(0, 160, 255, 0.3), 90px 0px 40px rgba(0, 160, 255, 0.3), -140px 0px 60px rgba(0, 160, 255, 0.15), 140px 0px 60px rgba(0, 160, 255, 0.15), -200px 0px 80px rgba(0, 160, 255, 0.05), 200px 0px 80px rgba(0, 160, 255, 0.05);
    z-index: 10
}

@media (prefers-reduced-motion:reduce) {

    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important
    }

    .cinematic-reveal {
        opacity: 1 !important;
        transform: none !important
    }
}


/* Brutalist Hero */

.brutalist-hero {
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    height: 100dvh;
    justify-content: center;
    box-sizing: border-box;
    background-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.brutalist-headline {
    font-family: 'Helvetica Neue', 'Inter', sans-serif !important;
    font-size: clamp(2rem, 5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.05em;
    color: #fff;
    margin: 0;
    max-width: 100%;
    text-transform: none;
    text-align: justify;
    text-align-last: justify;
    hyphens: none;
    -webkit-hyphens: none;
}

.brutalist-headline .bruta-small {
    font-size: 0.65em;
    font-weight: 700;
    letter-spacing: -0.02em;
    vertical-align: baseline;
}

.brutalist-logo {
    height: 0.75em;
    /* dynamically sizes to match the surrounding font-size */
    width: auto;
    display: inline-block;
    filter: brightness(0) invert(1);
    mix-blend-mode: difference;
    vertical-align: baseline;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}



@media screen and (max-width: 768px) {
    .brutalist-hero {
        position: fixed;
        top: 3.5rem;
        left: 0;
        right: 0;
        bottom: 3.5rem;
        padding: 1.5rem 1.25rem;
        justify-content: center;
        align-items: flex-start;
        height: auto;
        box-sizing: border-box;
    }

    .brutalist-headline {
        font-size: clamp(1.55rem, 6.2vw, 2.2rem);
        max-width: 100%;
        line-height: 1.1;
    }

    .bh-line {
        text-align: justify;
        text-align-last: justify;
        hyphens: none;
        -webkit-hyphens: none;
        letter-spacing: -0.04em;
    }


    .brutalist-logo {
        height: 0.75em;
        vertical-align: middle;
    }
}

/* ── Side Drawer ── */
.side-drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 0.4s;
}

.side-drawer.active {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.side-drawer.active .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(480px, 100vw);
    height: 100%;
    background: #000;
    border-left: 1px solid #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-drawer.active .drawer-content {
    transform: translateX(0);
}

.drawer-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.drawer-close:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}

/* scrollable body */
.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 3rem 2.5rem 2rem;
    scrollbar-width: none;
}

.drawer-body::-webkit-scrollbar {
    display: none;
}

/* header */
.drawer-header {
    padding-right: 3rem;
    /* clear the close btn */
    margin-bottom: 3rem;
}

.drawer-title {
    font-family: 'Helvetica Neue', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 8vw, 3.75rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.9;
    color: #fff;
    margin: 0 0 1.25rem;
    text-transform: none;
}

.drawer-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.55;
    margin: 0;
    letter-spacing: 0;
}

/* form — each field is a horizontal row with a bottom border */
.drawer-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: grid;
    grid-template-columns: 5rem 1fr;
    align-items: start;
    gap: 0 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.25rem 0;
}


.form-group label {
    font-family: 'Helvetica Neue', 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.25);
    padding-top: 0.2rem;
    line-height: 1.4;
}

.form-group input,
.form-group textarea {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    caret-color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.18);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
}

.form-group textarea {
    min-height: 80px;
    resize: none;
    line-height: 1.6;
}

/* pinned footer */
.drawer-footer {
    padding: 0;
    border-top: 1px solid #fff;
    flex-shrink: 0;
}

.drawer-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    background: #fff;
    border: none;
    color: #000;
    font-family: 'Helvetica Neue', 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: background 0.2s ease;
}

.drawer-submit-btn:hover {
    background: rgba(255, 255, 255, 0.85);
}

.drawer-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* success state */
.drawer-success {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem 0 2rem;
}

.success-title {
    font-family: 'Helvetica Neue', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0;
}

.success-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
}

.success-sub strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@media screen and (max-width: 480px) {
    .drawer-body {
        padding: 2.5rem 1.5rem 2rem;
    }

    .drawer-footer {
        padding: 0;
    }

    .drawer-submit-btn {
        padding: 1.125rem 1.5rem;
    }

    .drawer-title {
        font-size: 2.5rem;
    }

    .form-group {
        grid-template-columns: 4rem 1fr;
    }
}

/* ─────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none !important;
    }

    .custom-cursor {
        position: fixed;
        width: 10px;
        height: 10px;
        background: #fff;
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        transform: translate(-50%, -50%);
        mix-blend-mode: difference;
        will-change: left, top;
        transition: width 0.2s ease, height 0.2s ease, opacity 0.4s ease;
    }

    .custom-cursor.hovered {
        width: 36px;
        height: 36px;
    }
}

/* --- Cookie Popup --- */
.cookie-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: #000000;
    border: 1px solid #ffffff;
    padding: 24px;
    max-width: 380px;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    visibility: hidden;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-popup-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-popup-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.cookie-popup-text {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.cookie-popup-text a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cookie-popup-text a:hover {
    text-decoration: none;
}

.cookie-popup-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.cookie-btn {
    flex: 1;
    padding: 12px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.cookie-btn-accept {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.cookie-btn-accept:hover {
    background: transparent;
    color: #ffffff;
}

.cookie-btn-decline {
    background: #000000;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

@media screen and (max-width: 768px) {
    .cookie-popup {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: none;
        border-right: none;
        border-left: none;
        border-bottom: none;
        padding: 24px 20px 32px 20px;
    }
}

/* ─────────────────────────────────────────
   BRUTALIST HERO
───────────────────────────────────────── */
.brutalist-hero {
    width: 100%;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 3rem;
    box-sizing: border-box;
}

.brutalist-headline {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2.4rem, 7vw, 6.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0;
    text-align: left;
    max-width: 1200px;
}

.brutalist-logo {
    height: 0.88em;
    width: auto;
    display: inline;
    vertical-align: baseline;
    filter: brightness(0) invert(1);
    mix-blend-mode: difference;
    position: relative;
    top: 0.04em;
}

.highlight-sweep {
    display: inline;
}

@media screen and (max-width: 768px) {
    .brutalist-hero {
        padding: 6rem 1.5rem 4rem;
        min-height: 100dvh;
    }

    .brutalist-headline {
        font-size: clamp(2rem, 10vw, 3.5rem);
        letter-spacing: -0.03em;
        line-height: 1.08;
    }

    .brutalist-logo {
        height: 0.85em;
    }
}

@media screen and (max-width: 480px) {
    .brutalist-hero {
        padding: 5.5rem 1.25rem 3rem;
    }

    .brutalist-headline {
        font-size: clamp(1.75rem, 9vw, 2.25rem);
    }
}