/* ========================================
   ITSRYNNO WEBSITE
   Main Stylesheet
======================================== */

:root {
    --black: #050505;
    --white: #ffffff;
    --grey: #a0a0a0;
    --light-grey: #f3f3f3;
    --purple: #b57fff;
    --border: rgba(255, 255, 255, 0.15);
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(1200px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   NAVIGATION
======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
}

.nav.scrolled {
    background: rgba(5, 5, 5, 0.9);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey);
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

/* ========================================
   HERO
======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
    isolation: isolate;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--grey);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* Maintenance-page status indicator */

.status-dot {
    width: 9px;
    height: 9px;
    background: #6dff78;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(109, 255, 120, .8);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .45;
        transform: scale(.75);
    }
}

/* Hero title */

.hero-title {
    font-size: clamp(70px, 15vw, 210px);
    line-height: 0.78;
    letter-spacing: -0.07em;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}

/* Hero subtitle */

.hero-subtitle {
    max-width: 520px;
    margin-top: 35px;
    color: var(--grey);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   HERO EFFECTS
======================================== */

.hero-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    top: 50%;
    left: 68%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(181, 127, 255, 0.18) 0%,
        rgba(181, 127, 255, 0.08) 30%,
        rgba(181, 127, 255, 0.02) 55%,
        transparent 72%
    );
    filter: blur(35px);
    z-index: 0;
    pointer-events: none;
    animation: heroGlowMove 7s ease-in-out infinite alternate;
}

@keyframes heroGlowMove {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.65;
    }

    100% {
        transform: translate(-45%, -53%) scale(1.08);
        opacity: 1;
    }
}

/* ========================================
   HERO ENTRANCE ANIMATION
======================================== */

.hero-label.hero-reveal {
    opacity: 0;
    transform: translateY(25px);
}

.hero-title.hero-reveal {
    opacity: 0;
    transform: translateY(45px);
}

.hero-subtitle.hero-reveal {
    opacity: 0;
    transform: translateY(25px);
}

.hero-label.hero-reveal.hero-animate {
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.hero-title.hero-reveal.hero-animate {
    animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

.hero-subtitle.hero-reveal.hero-animate {
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(45px);
    }

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

/* Scroll indicator */

.scroll-indicator {
    position: absolute;
    bottom: 35px;
    right: max(24px, calc((100vw - 1200px) / 2));
    color: var(--grey);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    animation: scrollFloat 2.5s ease-in-out infinite;
}

@keyframes scrollFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.55;
    }

    50% {
        transform: translateY(5px);
        opacity: 1;
    }
}

/* ========================================
   GENERAL SECTIONS
======================================== */

.section {
    padding: 140px 0;
}

.section-light {
    background: var(--white);
    color: var(--black);
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--purple);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(50px, 8vw, 100px);
    line-height: 0.9;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

/* ========================================
   THINGS I DO
======================================== */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 70px;
}

.card {
    min-height: 360px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 22px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: #ffffff;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.45s ease,
        color 0.45s ease,
        border-color 0.45s ease;
}

.card:hover {
    transform: translateY(-10px);
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-number {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.45;
}

.card-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease,
        border-color 0.4s ease;
}

.card:hover .card-icon {
    transform: rotate(45deg);
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.card-content {
    margin-top: auto;
    padding-top: 80px;
}

.card h3 {
    font-size: clamp(30px, 3vw, 42px);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.card p {
    max-width: 340px;
    margin-top: 18px;
    color: #707070;
    line-height: 1.6;
    font-size: 15px;
    transition: color 0.4s ease;
}

.card:hover p {
    color: #a8a8a8;
}

.card-line {
    width: 100%;
    height: 1px;
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.12);
    transform-origin: left;
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.4s ease;
}

.card:hover .card-line {
    background: var(--purple);
    transform: scaleX(0.35);
}

/* ========================================
   PROJECTS
======================================== */

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 70px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: #0b0b0b;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(181, 127, 255, 0.5);
}

/* Project image area */

.project-image {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #090909;
}

.project-image-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.001);
    transition:
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s ease;
}

.project-card:hover .project-image-photo {
    transform: scale(1.055);
    filter: saturate(1.04) contrast(1.02);
}

.project-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(181, 127, 255, 0.08),
            transparent 58%
        );
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.5s ease;
    pointer-events: none;
}

.project-card:hover .project-image::before {
    transform: scale(1.18);
    opacity: 1;
}

.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.04),
            transparent 42%
        );
    pointer-events: none;
}

.project-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            to top,
            rgba(5, 5, 5, 0.88) 0%,
            rgba(5, 5, 5, 0.35) 34%,
            rgba(5, 5, 5, 0.08) 68%,
            rgba(5, 5, 5, 0.18) 100%
        );
}

.project-image-label {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.project-image-rynetic .project-image-photo {
    object-position: center;
}

.project-image-printing .project-image-photo {
    object-position: center 55%;
}

.project-image-video .project-image-photo {
    object-position: center;
}

/* Card information */

.project-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.project-number {
    display: block;
    margin-bottom: 12px;
    color: #666;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.project-info h3 {
    font-size: clamp(25px, 3vw, 42px);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.project-info p {
    margin-top: 10px;
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}

.project-arrow {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease,
        border-color 0.4s ease;
}

.project-card:hover .project-arrow {
    transform: translate(4px, -4px);
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Coming soon card */

.project-card-coming {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(
            circle,
            rgba(181, 127, 255, 0.08),
            transparent 60%
        ),
        #090909;
}

.project-coming-content {
    padding: 40px;
}

.project-coming-symbol {
    display: block;
    font-size: 80px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.12);
    font-weight: 200;
    margin-bottom: 30px;
    transition:
        transform 0.5s ease,
        color 0.4s ease;
}

.project-card-coming:hover .project-coming-symbol {
    transform: rotate(90deg);
    color: var(--purple);
}

.project-card-coming h3 {
    font-size: clamp(30px, 4vw, 55px);
    letter-spacing: -0.05em;
}

.project-card-coming p {
    margin-top: 15px;
    color: #666;
    font-size: 13px;
}

/* ========================================
   JOURNEY
======================================== */

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.journey-text {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
}

.steps {
    margin-top: 60px;
}

.step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.step-number {
    color: var(--purple);
    font-weight: bold;
}

.step h3 {
    font-size: 22px;
}

/* ========================================
   CURIOUS BY DEFAULT
======================================== */

.curious-scroll {
    position: relative;
    height: 520vh;
    background: var(--black);
    color: var(--white);
}

.curious-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.curious-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.curious-heading {
    align-self: center;
}

.curious-intro {
    max-width: 480px;
    margin-top: 40px;
    color: #a0a0a0;
    font-size: 18px;
    line-height: 1.7;
}

.curious-stages {
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.curious-stage {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0;
    transform: translateY(35px);
    pointer-events: none;
    transition:
        opacity 0.5s ease,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.curious-stage.active {
    opacity: 1;
    transform: translateY(0);
}

.curious-number {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition:
        background 0.4s ease,
        color 0.4s ease,
        border-color 0.4s ease;
}

.curious-stage.active .curious-number {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.curious-stage-content {
    max-width: 560px;
}

.curious-small {
    display: block;
    margin-bottom: 16px;
    color: var(--purple);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.curious-stage h3 {
    font-size: clamp(45px, 6vw, 85px);
    line-height: 0.9;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.curious-stage p {
    max-width: 420px;
    margin-top: 25px;
    color: #a0a0a0;
    font-size: 17px;
    line-height: 1.7;
}

/* ========================================
   CURIOUS MOBILE
======================================== */

@media (max-width: 768px) {

    .curious-scroll {
        height: 200vh;
    }

    .curious-sticky {
        height: 100vh;
    }

    .curious-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .curious-intro {
        margin-top: 25px;
        font-size: 16px;
    }

    .curious-stages {
        min-height: 320px;
    }

    .curious-stage {
        align-items: flex-start;
        gap: 18px;
    }

    .curious-number {
        width: 42px;
        height: 42px;
    }

    .curious-stage h3 {
        font-size: clamp(38px, 12vw, 65px);
    }

    .curious-stage p {
        font-size: 15px;
        margin-top: 18px;
    }
}

 /* ========================================
    CONTACT
 ======================================== */

.contact {
    position: relative;
    overflow: hidden;
    background: var(--black);
    color: var(--white);
}

.contact::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -250px;
    bottom: -300px;
    background: radial-gradient(
        circle,
        rgba(181, 127, 255, 0.14),
        transparent 70%
    );
    filter: blur(30px);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contact-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #777;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6dff78;
    box-shadow: 0 0 12px rgba(109, 255, 120, .7);
}

.contact-main {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 80px;
    align-items: end;
    margin-top: 100px;
}

.contact-title {
    font-size: clamp(70px, 11vw, 160px);
    line-height: 0.78;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.contact-title span {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}

.contact-side {
    padding-bottom: 8px;
}

.contact-text {
    max-width: 430px;
    color: var(--grey);
    font-size: 17px;
    line-height: 1.7;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
    padding: 18px 22px 18px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.contact-button:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-4px);
}

.contact-button-arrow {
    font-size: 18px;
    transition: transform 0.35s ease;
}

.contact-button:hover .contact-button-arrow {
    transform: translate(4px, -4px);
}

.contact-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 120px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    color: #555;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.contact-socials a {
    color: #777;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.contact-socials a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   CONTACT MOBILE
======================================== */

@media (max-width: 768px) {

    .contact-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .contact-main {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 70px;
    }

    .contact-title {
        font-size: clamp(60px, 18vw, 110px);
    }

    .contact-title span {
        -webkit-text-stroke: 1px var(--white);
    }

    .contact-text {
        font-size: 16px;
    }

    .contact-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-top: 80px;
    }

    .contact-socials {
        gap: 18px;
    }
}

/* ========================================
   FOOTER
======================================== */

.footer {
    padding: 35px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    color: var(--grey);
    font-size: 12px;
}

/* ========================================
   SCROLL REVEAL
======================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

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

    .nav {
        padding: 18px 0;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 10px;
    }

    .hero {
        min-height: 90vh;
        padding: 110px 0 80px;
    }

    .hero-title {
        font-size: clamp(65px, 19vw, 120px);
        line-height: 0.78;
    }

    .hero-title .outline {
        -webkit-text-stroke: 1px var(--white);
    }

    .hero-subtitle {
        font-size: 16px;
        margin-top: 35px;
    }

    .hero-glow {
        width: 450px;
        height: 450px;
        left: 70%;
    }

    .scroll-indicator {
        right: 16px;
        bottom: 25px;
        font-size: 9px;
    }

    .section {
        padding: 90px 0;
    }

    .section-title {
        font-size: clamp(50px, 15vw, 80px);
    }

    .cards {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }
   
    .card {
        min-height: 300px;
    }
   
    .card-content {
        padding-top: 55px;
    }

    .project-grid {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }
   
    .project-image {
        min-height: 280px;
    }
   
    .project-card-bottom {
        padding: 22px;
    }
   
    .project-info h3 {
        font-size: 28px;
    }
   
    .project-card-coming {
        min-height: 360px;
    }

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

    .journey-text {
        font-size: 18px;
    }

    .contact-title {
        font-size: clamp(55px, 17vw, 100px);
    }

    .footer-inner {
        flex-direction: column;
        gap: 10px;
    }
}
/* =========================================================
   PHASE 1 MOBILE SVG + RESPONSIVE FIXES
========================================================= */

.card-icon,
.project-arrow,
.contact-button-arrow {
    color: currentColor;
}

.card-icon svg,
.project-arrow svg,
.contact-button-arrow svg,
.icon-arrow-down {
    display: block;
    flex: 0 0 auto;
    max-width: none;
    visibility: visible;
    opacity: 1;
    color: currentColor;
}

.card-icon svg {
    width: 18px;
    height: 18px;
}

.project-arrow svg {
    width: 20px;
    height: 20px;
}

.contact-button-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.contact-button-arrow svg {
    width: 18px;
    height: 18px;
}

.icon-arrow-down {
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {

    .card-icon svg,
    .project-arrow svg,
    .contact-button-arrow svg,
    .icon-arrow-down {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-width: none !important;
    }

    .card-icon {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        transform: translateZ(0);
    }

    .project-arrow {
        width: 46px;
        height: 46px;
        flex-shrink: 0;
        transform: translateZ(0);
    }

    .contact-button-arrow {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        transform: translateZ(0);
    }

    .scroll-indicator {
        display: inline-flex !important;
        align-items: center;
        gap: 7px;
        right: 16px;
        bottom: 25px;
        font-size: 9px;
    }
}


/* =========================================================
   PHASE 2A HERO
========================================================= */

.hero-content {
    max-width: 1240px;
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 40px;
    position: relative;
}

.hero-copy {
    position: relative;
    z-index: 3;
    padding-right: 20px;
}

.hero-status-copy {
    display: inline-block;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
}

.hero-status-copy.is-changing {
    opacity: 0;
    transform: translateY(4px);
}

.hero-title.hero-reveal {
    opacity: 0;
    transform: none;
}

.hero-title.hero-reveal.hero-animate {
    animation: none;
    opacity: 1;
    transform: none;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(0.45em);
    filter: blur(8px);
}

.hero-title.hero-animate .hero-line {
    animation:
        heroLineIn
        0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

.hero-title.hero-animate .hero-line:nth-child(1) {
    animation-delay: 0.08s;
}

.hero-title.hero-animate .hero-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title.hero-animate .hero-line:nth-child(3) {
    animation-delay: 0.34s;
}

@keyframes heroLineIn {
    from {
        opacity: 0;
        transform: translateY(0.45em);
        filter: blur(8px);
    }

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

.hero-title {
    font-size: clamp(62px, 7vw, 112px);
    line-height: 0.84;
}

.hero-line-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}

.hero-line-accent {
    margin-top: 0.1em;
    color: var(--purple);
    font-size: 0.58em;
    letter-spacing: -0.045em;
}

.hero-subtitle {
    max-width: 600px;
    margin-top: 34px;
    font-size: 17px;
    line-height: 1.7;
}

.hero-visual {
    position: relative;
    align-self: stretch;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    z-index: 2;
}

.hero-halo {
    position: absolute;
    width: min(46vw, 620px);
    height: min(46vw, 620px);
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(181, 127, 255, 0.24) 0%,
            rgba(181, 127, 255, 0.13) 32%,
            rgba(181, 127, 255, 0.04) 58%,
            transparent 72%
        );
    filter: blur(28px);
    animation: heroHaloFloat 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: block;
    width: min(34vw, 500px);
    max-width: none;
    height: auto;
    max-height: 92%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(
        0 30px 45px rgba(0, 0, 0, 0.32)
    );
    transform: translateY(18px);
    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.6s ease;
}

.hero-visual:hover .hero-image {
    transform: translateY(10px) scale(1.015);
    filter:
        drop-shadow(0 32px 50px rgba(0, 0, 0, 0.35))
        drop-shadow(0 0 35px rgba(181, 127, 255, 0.12));
}

@keyframes heroHaloFloat {
    from {
        transform: translate(-50%, -50%) scale(0.94);
        opacity: 0.72;
    }

    to {
        transform: translate(-46%, -54%) scale(1.07);
        opacity: 1;
    }
}

@media (max-width: 900px) {

    .hero-content {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 70px;
    }

    .hero-copy {
        padding-right: 0;
    }

    .hero-visual {
        min-height: 480px;
        margin-top: -20px;
    }

    .hero-halo {
        width: 430px;
        height: 430px;
        top: 50%;
        left: 50%;
    }

    .hero-image {
        width: min(72vw, 500px);
        max-height: 520px;
        transform: translateY(0);
    }

    .hero-visual:hover .hero-image {
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {

    .hero {
        min-height: auto;
        padding: 108px 0 72px;
    }

    .hero-content {
        width: min(100% - 32px, 1200px);
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-label {
        font-size: 9px;
        letter-spacing: 1.45px;
        line-height: 1.4;
    }

    .hero-title {
        font-size: clamp(43px, 12.2vw, 78px);
        line-height: 0.87;
    }

    .hero-line-outline {
        -webkit-text-stroke: 1px var(--white);
    }

    .hero-line-accent {
        font-size: 0.57em;
        margin-top: 0.12em;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-top: 28px;
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-visual {
        min-height: 410px;
        margin-top: -4px;
    }

    .hero-halo {
        width: 340px;
        height: 340px;
    }

    .hero-image {
        width: min(82vw, 440px);
        max-height: 420px;
        transform: translateY(0);
    }

    .scroll-indicator {
        right: 16px;
        bottom: 20px;
    }
}


/* =========================================================
   PHASE 2C RIGHT NOW
========================================================= */

.right-now {
    background: var(--white);
    color: var(--black);
    overflow: hidden;
}

.right-now-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    margin-top: 70px;
}

.now-card {
    position: relative;
    min-height: 260px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 22px;
    background: #f7f7f7;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        background 0.35s ease;
}

.now-card:hover {
    transform: translateY(-7px);
    border-color: rgba(181, 127, 255, 0.42);
    background: #f1f1f1;
}

.now-card-large {
    min-height: 360px;
    grid-row: span 2;
}

.now-card-label {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #777781;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.now-card-dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #6dff78;
    box-shadow: 0 0 14px rgba(109, 255, 120, 0.65);
}

.now-card h3 {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-top: auto;
    color: var(--black);
    font-size: clamp(34px, 4.5vw, 64px);
    line-height: 0.9;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.now-card p {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-top: 18px;
    color: #5f5f68;
    font-size: 14px;
    line-height: 1.7;
}

.now-card-meta {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    color: #777781;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.now-card-project {
    background:
        linear-gradient(
            135deg,
            rgba(181, 127, 255, 0.12),
            transparent 60%
        ),
        #f7f7f7;
}

.now-card-project::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    bottom: -120px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(181, 127, 255, 0.22),
            transparent 68%
        );
    filter: blur(20px);
    pointer-events: none;
    transition: transform 0.6s ease;
}

.now-card-project:hover::before {
    transform: scale(1.15);
}

.now-card-update h3 {
    font-size: clamp(28px, 3.3vw, 46px);
}

.now-card-status {
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(109, 255, 120, 0.08),
            transparent 35%
        ),
        #f7f7f7;
}

.now-status-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.now-status-line strong {
    color: var(--black);
    font-size: clamp(24px, 3vw, 38px);
    letter-spacing: -0.05em;
}

.now-status-text {
    margin-top: 14px;
    color: #777781;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.now-card-project .now-card-meta {
    color: #7c3aed;
}

@media (max-width: 900px) {

    .right-now-grid {
        grid-template-columns: 1fr 1fr;
    }

    .now-card-large {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 320px;
    }

}

@media (max-width: 768px) {

    .right-now-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 45px;
    }

    .now-card,
    .now-card-large {
        min-height: 280px;
    }

    .now-card {
        padding: 24px;
        border-radius: 18px;
    }

    .now-card-large {
        min-height: 330px;
    }

    .now-card h3 {
        font-size: clamp(34px, 11vw, 58px);
    }

    .now-card-update h3 {
        font-size: clamp(28px, 9vw, 44px);
    }

    .now-status-line strong {
        font-size: 30px;
    }
}


/* =========================================================
   SECTION RHYTHM
   Black / white alternation
========================================================= */

.right-now .section-label,
.contact .section-label {
    color: #7c3aed;
}

.right-now .now-card-dot,
.contact .contact-status-dot {
    box-shadow: 0 0 12px rgba(109, 255, 120, 0.65);
}

.curious-scroll .section-label,
.curious-scroll .curious-small {
    color: var(--purple);
}




/* =========================================================
   LIVE ACTIVITY
========================================================= */

.status-live-section {
    overflow: hidden;
    background: var(--white);
}

.status-live-section .section-label {
    color: var(--purple);
}

.live-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-top: 26px;
}

.live-section-intro {
    max-width: 460px;
    margin-top: 22px;
    color: #686870;
    font-size: 14px;
    line-height: 1.7;
}

.live-pulse {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 170px;
    padding: 13px 15px;
    border: 1px solid rgba(0, 0, 0, 0.11);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.6);
}

.live-pulse > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.live-pulse strong {
    color: var(--black);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.live-pulse span:not(.now-card-dot) {
    color: #85858d;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.live-pulse .now-card-dot {
    width: 8px;
    height: 8px;
}

.live-ticker {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 46px;
    margin-top: 44px;
    padding: 0 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.11);
    border-bottom: 1px solid rgba(0, 0, 0, 0.11);
    color: #777781;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    overflow: hidden;
}

.live-ticker-label {
    color: var(--purple);
}

.live-ticker strong {
    max-width: 48%;
    overflow: hidden;
    color: var(--black);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-ticker-line {
    width: 22px;
    height: 1px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.18);
}

.live-ticker-dot {
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #6dff78;
    box-shadow: 0 0 10px rgba(109, 255, 120, 0.75);
    animation: livePulse 1.8s ease-in-out infinite;
}

.live-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.875fr));
    gap: 14px;
    margin-top: 14px;
}

.live-card {
    min-height: 300px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 18px;
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.live-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.28);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.live-card-main {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(181, 127, 255, 0.18),
            transparent 42%
        ),
        linear-gradient(145deg, #f8f8f8, #eeeeef);
}

.live-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.live-card-index {
    color: #c4c4ca;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.live-card-body {
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.live-card-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--purple);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.live-card h3 {
    max-width: 520px;
    color: var(--black);
    font-size: clamp(27px, 3vw, 48px);
    line-height: 0.9;
    letter-spacing: -0.065em;
    text-transform: uppercase;
}

.live-card-main h3 {
    font-size: clamp(38px, 4.4vw, 68px);
}

.live-card p {
    max-width: 460px;
    margin-top: 15px;
    color: #686870;
    font-size: 12px;
    line-height: 1.6;
}

.live-card-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    margin-top: 20px;
    color: var(--black);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.live-card-link span {
    color: var(--purple);
    font-size: 14px;
    transition: transform 0.2s ease;
}

.live-card-link:hover span {
    transform: translate(2px, -2px);
}

.live-card-scan {
    position: absolute;
    left: -20%;
    right: -20%;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.55),
        transparent
    );
    animation: liveScan 4s ease-in-out infinite;
    pointer-events: none;
}

.live-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 15px;
    color: #818189;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.live-footer > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 0.45;
        transform: scale(0.85);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes liveScan {
    0% {
        transform: translateX(-45%);
        opacity: 0;
    }

    20%, 70% {
        opacity: 1;
    }

    100% {
        transform: translateX(45%);
        opacity: 0;
    }
}

@media (max-width: 900px) {

    .live-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .live-pulse {
        min-width: 0;
    }

    .live-ticker {
        margin-top: 34px;
    }

    .live-grid {
        grid-template-columns: 1fr 1fr;
    }

    .live-card-main {
        grid-column: 1 / -1;
        min-height: 270px;
    }
}

@media (max-width: 600px) {

    .live-section-intro {
        max-width: none;
        font-size: 13px;
    }

    .live-ticker {
        gap: 9px;
        padding: 0 12px;
        font-size: 8px;
    }

    .live-ticker-line {
        width: 12px;
    }

    .live-ticker strong {
        max-width: 42%;
    }

    .live-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .live-card,
    .live-card-main {
        min-height: 250px;
        padding: 21px;
        border-radius: 16px;
    }

    .live-card-main h3 {
        font-size: clamp(36px, 12vw, 58px);
    }

    .live-card h3 {
        font-size: clamp(30px, 10vw, 48px);
    }

    .live-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
        line-height: 1.5;
    }
}

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

    .live-ticker-dot,
    .live-card-scan {
        animation: none;
    }

    .live-card {
        transition: none;
    }
}


/* =========================================================
   SECTION RHYTHM
   Black / white alternation
========================================================= */

.status-live-section .section-label,
.contact .section-label {
    color: #7c3aed;
}

.status-live-section .now-card-dot,
.contact .contact-status-dot {
    box-shadow: 0 0 12px rgba(109, 255, 120, 0.65);
}

.curious-scroll .section-label,
.curious-scroll .curious-small {
    color: var(--purple);
}


/* =========================================================
   SHARED MOBILE NAVIGATION
========================================================= */

.nav-mobile {
    display: none;
    position: relative;
    margin-left: auto;
}

.nav-mobile summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
}

.nav-mobile summary::-webkit-details-marker {
    display: none;
}

.nav-mobile-chevron {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}

.nav-mobile[open] .nav-mobile-chevron {
    transform: rotate(225deg) translate(-1px, -2px);
}

.nav-mobile-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(240px, calc(100vw - 32px));
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 15px;
    background: rgba(7, 7, 9, 0.96);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 1100;
}

.nav-mobile-panel a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 9px;
    color: #9a9aa5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.nav-mobile-panel a:hover,
.nav-mobile-panel a:focus-visible {
    background: rgba(181, 127, 255, 0.09);
    color: var(--white);
}

@media (max-width: 900px) {

    .nav {
        padding: 14px 0;
    }

    .nav > .container {
        width: min(100% - 24px, 1200px);
    }

    .nav-inner > nav {
        display: none !important;
    }

    .nav-mobile {
        display: block;
    }

    .nav-inner {
        min-height: 38px;
    }

    .logo {
        font-size: 18px;
    }
}

/* =========================================================
   FINAL SECTION COLOUR TUNING
   Curious is the white break between the dark sections.
   Keep the site purple consistent with the hero accent.
========================================================= */

.curious-scroll {
    background: var(--white);
    color: var(--black);
}

.curious-scroll .curious-intro,
.curious-scroll .curious-stage p {
    color: #5f5f68;
}

.curious-scroll .curious-number {
    border-color: rgba(0, 0, 0, 0.16);
}

.curious-scroll .curious-stage.active .curious-number {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.curious-scroll .section-label,
.curious-scroll .curious-small {
    color: var(--purple);
}

.contact .section-label {
    color: var(--purple) !important;
}
