:root {
    --bg: #0b0908;
    --bg-elevated: #14100d;
    --bg-soft: #1c1713;
    --surface: rgba(255, 248, 239, 0.06);
    --surface-strong: rgba(255, 248, 239, 0.1);
    --text: #f8f1e7;
    --muted: #c9bbad;
    --muted-strong: #a69585;
    --line: rgba(255, 248, 239, 0.12);
    --accent: #da9654;
    --accent-soft: rgba(218, 150, 84, 0.18);
    --accent-strong: #f0c081;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max-width: 1180px;
    --header-offset: 88px;
}

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

html {
    background: #0b0908;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-offset);
}

body {
    min-height: 100vh;
    background-color: #0b0908;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(218, 150, 84, 0.22), transparent 34%),
        radial-gradient(circle at 85% 15%, rgba(255, 248, 239, 0.08), transparent 24%),
        linear-gradient(180deg, #080706 0%, #0b0908 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(to right, rgba(255, 248, 239, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 248, 239, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 85%);
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, transparent 48%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
    z-index: -1;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    background: none;
    border: 0;
    color: inherit;
}

.page-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.08;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1px),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1px),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1px);
    background-size: 150px 150px;
    mix-blend-mode: soft-light;
    z-index: 3;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
}

.section {
    padding: 7rem 0;
}

.section--tight {
    padding-top: 1rem;
    padding-bottom: 4.5rem;
}

.section--soft {
    position: relative;
}

.section--soft::before {
    content: "";
    position: absolute;
    inset: 8% 0;
    background: linear-gradient(180deg, rgba(255, 248, 239, 0.03), transparent);
    pointer-events: none;
}

.eyebrow,
.mini-label {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    max-width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.74rem;
    color: var(--accent-strong);
}

.eyebrow::before,
.mini-label::before {
    content: "";
    width: 2.6rem;
    height: 1px;
    background: currentColor;
    opacity: 0.75;
}

.mini-label {
    font-size: 0.68rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0.8rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #140f0b;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
    box-shadow: 0 16px 34px rgba(218, 150, 84, 0.22);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(218, 150, 84, 0.28);
}

.button--ghost {
    color: var(--text);
    background: rgba(255, 248, 239, 0.04);
    border-color: rgba(255, 248, 239, 0.16);
    box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
    background: rgba(255, 248, 239, 0.08);
    border-color: rgba(255, 248, 239, 0.26);
}

.button--small {
    min-height: 2.75rem;
    padding-inline: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    padding-top: 1.1rem;
}

.site-header.is-scrolled .header-inner {
    background: rgba(11, 9, 8, 0.9);
    border-color: rgba(255, 248, 239, 0.14);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid transparent;
    border-radius: 24px;
    backdrop-filter: blur(16px);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand__icon {
    width: 2.9rem;
    height: 2.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 248, 239, 0.12), rgba(255, 248, 239, 0.04));
    border: 1px solid rgba(255, 248, 239, 0.12);
}

.brand__icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.brand__text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.brand__text strong {
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    line-height: 1;
}

.brand__text span {
    color: var(--muted-strong);
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-nav a {
    color: var(--muted);
    font-size: 0.95rem;
    transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.menu-toggle {
    display: none;
    position: relative;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 248, 239, 0.14);
}

.menu-toggle span:not(.sr-only) {
    position: absolute;
    left: 50%;
    width: 1rem;
    height: 1.5px;
    background: var(--text);
    transform: translateX(-50%);
    transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(2) {
    top: 1.1rem;
}

.menu-toggle span:nth-child(3) {
    top: 1.65rem;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    top: 1.4rem;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 1.4rem;
    transform: translateX(-50%) rotate(-45deg);
}

.hero {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 2.5rem;
    align-items: center;
    min-height: calc(100vh - 8rem);
}

.hero-copy h1,
.section-heading h2,
.story-copy h2,
.process-copy h2,
.manifesto-copy h2,
.contact-panel h2 {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.025em;
}

.hero-copy h1 {
    max-width: 10ch;
    margin-top: 1.2rem;
    font-size: clamp(3rem, 7vw, 6.2rem);
}

.hero-lede,
.section-copy,
.story-copy p,
.founder-card__body p,
.service-card p,
.process-copy p,
.principle-card p,
.timeline-step p,
.manifesto-copy p,
.contact-panel p {
    color: var(--muted);
    font-size: 1rem;
}

.hero-lede {
    max-width: 38rem;
    margin-top: 1.4rem;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.4rem;
}

.stat-card {
    padding: 1.2rem;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 248, 239, 0.08), rgba(255, 248, 239, 0.03));
    border: 1px solid rgba(255, 248, 239, 0.12);
    box-shadow: var(--shadow);
}

.stat-card strong {
    display: block;
    margin-bottom: 0.45rem;
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-panel {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(160deg, rgba(255, 248, 239, 0.06), rgba(255, 248, 239, 0.02)),
        rgba(20, 16, 13, 0.78);
    border: 1px solid rgba(255, 248, 239, 0.12);
    box-shadow: var(--shadow);
    overflow: hidden;
    isolation: isolate;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: auto auto -16% -10%;
    width: 16rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(218, 150, 84, 0.44), transparent 72%);
    z-index: -1;
}

.hero-panel__orb {
    position: relative;
    display: grid;
    place-items: center;
    width: min(100%, 24rem);
    margin-inline: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(255, 248, 239, 0.08), transparent 48%),
        linear-gradient(180deg, rgba(255, 248, 239, 0.04), rgba(255, 248, 239, 0.01));
    border: 1px solid rgba(255, 248, 239, 0.08);
}

.hero-panel__orb::before,
.hero-panel__orb::after {
    content: "";
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    border: 1px solid rgba(255, 248, 239, 0.08);
}

.hero-panel__orb::after {
    inset: 22%;
}

.hero-panel__orb img {
    width: 58%;
    object-fit: contain;
}

.hero-panel__card {
    margin-top: 1.8rem;
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 248, 239, 0.05);
    border: 1px solid rgba(255, 248, 239, 0.12);
}

.hero-panel__card h2 {
    margin-top: 0.95rem;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.1;
}

.hero-panel__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.hero-panel__list article {
    padding: 1rem 0.95rem;
    border-radius: var(--radius-md);
    background: rgba(255, 248, 239, 0.04);
    border: 1px solid rgba(255, 248, 239, 0.08);
}

.hero-panel__list span,
.card-number,
.timeline-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.3rem;
    min-height: 2.3rem;
    padding: 0.3rem 0.5rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-weight: 800;
    letter-spacing: 0.03em;
}

.hero-panel__list p {
    margin-top: 0.85rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.section-heading {
    display: grid;
    gap: 1rem;
    max-width: 42rem;
    margin-bottom: 2.2rem;
}

.section-heading h2,
.story-copy h2,
.process-copy h2,
.manifesto-copy h2,
.contact-panel h2 {
    font-size: clamp(2.1rem, 5vw, 4rem);
}

.section-heading--inline {
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 20rem);
    align-items: end;
}

.section-heading--inline .section-copy {
    margin-bottom: 0.4rem;
}

.marquee {
    position: relative;
    overflow: hidden;
    padding: 1rem 0 0;
    mask-image: linear-gradient(90deg, transparent 0, black 10%, black 90%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    width: max-content;
    animation: marquee 26s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.client-pill {
    min-width: 15rem;
    min-height: 6rem;
    display: grid;
    place-items: center;
    padding: 1rem 1.6rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 248, 239, 0.05);
    border: 1px solid rgba(255, 248, 239, 0.1);
}

.client-pill img {
    max-height: 2.7rem;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.9;
}

.story-grid,
.manifesto-grid,
.process-grid {
    display: grid;
    gap: 2rem;
}

.story-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.8fr);
    align-items: start;
}

.story-copy {
    display: grid;
    gap: 1.1rem;
    padding-right: 1rem;
}

.meaning-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.meaning-grid article,
.principle-card,
.industry-cloud,
.service-card,
.timeline-step,
.contact-panel,
.founder-card {
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 248, 239, 0.08), rgba(255, 248, 239, 0.03));
    border: 1px solid rgba(255, 248, 239, 0.11);
    box-shadow: var(--shadow);
}

.meaning-grid article {
    padding: 1.25rem;
}

.meaning-grid span {
    display: inline-block;
    margin-bottom: 0.7rem;
    font-family: "Outfit", sans-serif;
    font-size: 1.4rem;
}

.meaning-grid p {
    color: var(--muted);
    font-size: 0.95rem;
}

.founder-card {
    overflow: hidden;
}

.founder-card__media {
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
}

.founder-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-card__body {
    padding: 1.5rem;
}

.founder-card__body h3 {
    margin-top: 0.9rem;
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
}

.founder-role {
    margin-top: 0.35rem;
    color: var(--accent-strong);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.founder-card__body p:last-of-type {
    margin-top: 1rem;
}

.founder-card blockquote,
.manifesto-copy blockquote {
    margin-top: 1.2rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(218, 150, 84, 0.5);
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.3;
}

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

.service-card {
    position: relative;
    padding: 1.4rem;
    min-height: 16rem;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: auto -15% -25% auto;
    width: 10rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(218, 150, 84, 0.16), transparent 68%);
}

.service-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.card-tag {
    color: var(--muted-strong);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-card h3 {
    margin-top: 2rem;
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    line-height: 1.05;
}

.service-card p {
    margin-top: 0.9rem;
    max-width: 22rem;
}

.process-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.5rem 2rem;
    align-items: start;
}

.process-copy {
    display: grid;
    gap: 1.1rem;
}

.process-copy h2 {
    max-width: 12ch;
}

.principles-grid {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.principle-card {
    padding: 1.2rem 1.25rem;
}

.principle-card h3 {
    font-family: "Outfit", sans-serif;
    font-size: 1.2rem;
    line-height: 1.2;
}

.principle-card p {
    margin-top: 0.55rem;
}

.timeline {
    display: grid;
    gap: 0.9rem;
}

.timeline-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    padding: 1.2rem;
    align-items: start;
}

.timeline-step > div {
    min-width: 0;
}

.timeline-step h3 {
    font-family: "Outfit", sans-serif;
    font-size: 1.3rem;
    line-height: 1.15;
}

.timeline-step p {
    margin-top: 0.4rem;
}

.manifesto-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 25rem);
    align-items: start;
}

.manifesto-copy {
    display: grid;
    gap: 1.1rem;
}

.industry-cloud {
    padding: 1.5rem;
}

.industry-cloud__items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.industry-cloud__items span {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 248, 239, 0.05);
    border: 1px solid rgba(255, 248, 239, 0.12);
    color: var(--muted);
    font-size: 0.92rem;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
}

.contact-panel__actions {
    display: grid;
    gap: 0.85rem;
    justify-items: start;
}

.contact-note {
    color: var(--muted-strong);
    font-size: 0.9rem;
}

.site-footer {
    padding: 0 0 2.5rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 248, 239, 0.1);
    color: var(--muted-strong);
    font-size: 0.92rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 650ms ease,
        transform 650ms ease;
    transition-delay: var(--delay, 0s);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

@media (max-width: 980px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        display: grid;
        gap: 0.35rem;
        padding: 0.9rem;
        border-radius: 20px;
        background: rgba(20, 16, 13, 0.96);
        border: 1px solid rgba(255, 248, 239, 0.12);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav .button {
        margin-top: 0.4rem;
    }

    .hero-grid,
    .story-grid,
    .process-grid,
    .manifesto-grid,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .hero-panel__list,
    .hero-stats,
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading--inline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .section {
        padding: 5.5rem 0;
    }

    .eyebrow,
    .mini-label {
        gap: 0.5rem;
        letter-spacing: 0.16em;
        font-size: 0.68rem;
    }

    .eyebrow::before,
    .mini-label::before {
        width: 2rem;
    }

    .hero {
        padding-top: 2.4rem;
    }

    .hero-grid {
        min-height: auto;
    }

    .brand__text span {
        display: none;
    }

    .hero-panel,
    .contact-panel {
        padding: 1.35rem;
    }

    .hero-panel__list,
    .hero-stats,
    .meaning-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-copy h2 {
        max-width: none;
    }

    .timeline-step {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .timeline-step span {
        justify-self: start;
    }

    .timeline-step p,
    .principle-card p {
        overflow-wrap: anywhere;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
