:root {
    --bg: #0c0a09;
    --bg-deep: #090707;
    --ink: #f5efe8;
    --muted: rgba(245, 239, 232, 0.7);
    --muted-strong: rgba(245, 239, 232, 0.55);
    --accent: #ffb24a;
    --accent-strong: #e15a63;
    --card: rgba(22, 14, 14, 0.88);
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

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

body {
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(1200px 800px at 80% -20%, rgba(255, 178, 74, 0.35), transparent 60%),
        radial-gradient(900px 600px at 10% 15%, rgba(225, 90, 99, 0.32), transparent 60%),
        linear-gradient(180deg, #100b0b 0%, #120b0b 50%, var(--bg-deep) 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: "";
    position: fixed;
    inset: -15%;
    background:
        radial-gradient(800px 520px at 15% 20%, rgba(255, 178, 74, 0.18), transparent 65%),
        radial-gradient(700px 520px at 80% 10%, rgba(225, 90, 99, 0.16), transparent 70%);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    animation: drift 48s ease-in-out infinite alternate;
}

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

.page {
    position: relative;
    z-index: 1;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    width: 56px;
    height: 56px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-name {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.brand-tag {
    font-size: 0.85rem;
    color: var(--muted-strong);
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.header-link {
    font-size: 0.95rem;
    color: var(--muted);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.header-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.hero {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    align-items: center;
    padding: 64px 0 96px;
    position: relative;
}

.hero-text {
    grid-column: span 7;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-strong);
}

h1 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    line-height: 1.05;
    font-weight: 600;
}

.lead {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 32rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
}

.btn {
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #1b0f0f;
    box-shadow: 0 14px 30px rgba(225, 90, 99, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(225, 90, 99, 0.45);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

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

.hero-card {
    grid-column: span 5;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.hero-card h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.playbook {
    list-style: none;
    display: grid;
    gap: 12px;
    color: var(--muted);
    font-size: 0.95rem;
}

.playbook li {
    padding-left: 18px;
    position: relative;
}

.playbook li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
}

.card-footer {
    margin-top: 18px;
    color: var(--muted-strong);
    font-size: 0.9rem;
}

.section {
    margin-bottom: 88px;
}

.section-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-heading h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 2rem;
    font-weight: 600;
}

.section-heading p {
    color: var(--muted);
    max-width: 28rem;
}

.journey-track {
    --progress: 0;
    position: relative;
    display: grid;
    gap: 28px;
    padding-left: 64px;
}

.journey-track::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 178, 74, 0) 0%, rgba(255, 178, 74, 0.5) 20%, rgba(225, 90, 99, 0.75) 55%, rgba(255, 178, 74, 0.5) 80%, rgba(255, 178, 74, 0) 100%);
    z-index: 0;
}

.journey-track::after {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 178, 74, 0.9) 0%, rgba(225, 90, 99, 0.85) 65%, rgba(255, 178, 74, 0.4) 100%);
    transform: scaleY(var(--progress));
    transform-origin: top;
    box-shadow: 0 0 18px rgba(255, 178, 74, 0.35);
    z-index: 1;
}

.journey-flow {
    position: absolute;
    left: 23px;
    top: -25%;
    width: 4px;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 178, 74, 0) 0%, rgba(255, 178, 74, 0.9) 50%, rgba(225, 90, 99, 0) 100%);
    filter: blur(0.5px);
    animation: journey-flow 7s ease-in-out infinite;
    z-index: 2;
}

.journey-orb {
    position: absolute;
    left: 18px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 20px rgba(255, 178, 74, 0.6), 0 0 40px rgba(225, 90, 99, 0.35);
    animation: journey-orbit 7s ease-in-out infinite;
    z-index: 3;
}

.journey-step {
    position: relative;
    padding: 22px 26px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    display: grid;
    gap: 10px;
    z-index: 2;
}

.journey-step::before {
    content: "";
    position: absolute;
    left: -46px;
    top: 28px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(255, 178, 74, 0.15), 0 0 18px rgba(255, 178, 74, 0.45);
    animation: pulse 5s ease-in-out infinite;
    animation-delay: var(--pulse-delay, 0s);
}

.journey-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--muted-strong);
}

.journey-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

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

.cta-card {
    padding: 36px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(400px 240px at 80% 10%, rgba(255, 178, 74, 0.18), transparent 60%),
        rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow);
}

.cta-card h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 2rem;
    margin-bottom: 14px;
}

.cta-card p {
    color: var(--muted);
    max-width: 34rem;
}

footer {
    padding: 32px 0 48px;
    color: var(--muted-strong);
    font-size: 0.9rem;
    text-align: center;
}

.footer-links {
    margin-top: 10px;
    display: inline-flex;
    gap: 12px;
    color: var(--muted-strong);
    font-size: 0.85rem;
}

.footer-links a {
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.animate-in {
    opacity: 0;
    transform: translateY(16px);
    animation: rise 0.9s ease forwards;
    animation-delay: var(--delay, 0s);
}

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

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

@keyframes journey-flow {
    0% {
        top: -30%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes journey-orbit {
    0% {
        top: 0;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    100% {
        top: calc(100% - 14px);
        opacity: 0;
    }
}

@keyframes drift {
    0% {
        transform: translate3d(-2%, -1%, 0);
    }
    50% {
        transform: translate3d(1.5%, 1%, 0);
    }
    100% {
        transform: translate3d(-1%, 2%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate-in {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .journey-track::after,
    .journey-orb,
    .journey-step::before,
    .journey-flow,
    body::after {
        animation: none;
    }
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-text,
    .hero-card {
        grid-column: span 1;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 640px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .brand-tag {
        letter-spacing: 0.12em;
    }

    .hero {
        padding: 48px 0 72px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .journey-track {
        padding-left: 44px;
    }

    .journey-track::before {
        left: 18px;
    }

    .journey-track::after {
        left: 18px;
    }

    .journey-orb {
        left: 12px;
    }

    .journey-step {
        margin-left: 0;
    }

    .journey-step::before {
        left: -32px;
    }

    .journey-flow {
        left: 17px;
    }
}
