:root {
    --ink: #10100e;
    --muted: #6f6a5f;
    --paper: #f6efe2;
    --paper-strong: #fff9ec;
    --line: rgba(31, 28, 23, 0.12);
    --gold: #d89d34;
    --ember: #f45d35;
    --forest: #133d32;
    --shadow: 0 28px 90px rgba(37, 29, 18, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at 14% 14%, rgba(244, 93, 53, 0.18), transparent 32rem),
        radial-gradient(circle at 78% 18%, rgba(216, 157, 52, 0.22), transparent 30rem),
        linear-gradient(135deg, #fff8ec 0%, #f5ead7 48%, #e7d7bd 100%);
    overflow-x: hidden;
}

a {
    color: inherit;
}

.site-shell {
    position: relative;
    min-height: 100vh;
    isolation: isolate;
    overflow: hidden;
    padding: 28px;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(19, 61, 50, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(19, 61, 50, 0.055) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 86%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 86%);
}

.ambient {
    position: absolute;
    z-index: -1;
    width: 42vw;
    aspect-ratio: 1;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.62;
    animation: drift 12s ease-in-out infinite alternate;
}

.ambient-one {
    top: -18vw;
    right: -12vw;
    background: linear-gradient(135deg, rgba(244, 93, 53, 0.42), rgba(216, 157, 52, 0.08));
}

.ambient-two {
    bottom: -20vw;
    left: -12vw;
    background: linear-gradient(135deg, rgba(19, 61, 50, 0.22), rgba(216, 157, 52, 0.1));
    animation-delay: -5s;
}

@keyframes drift {
    from {
        transform: translate3d(-1.5rem, 0, 0) scale(1);
    }

    to {
        transform: translate3d(1.5rem, 2rem, 0) scale(1.06);
    }
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 0;
}

.logo,
.nav-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--paper-strong);
    background: var(--forest);
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(19, 61, 50, 0.24);
}

.nav-link {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 249, 236, 0.58);
    backdrop-filter: blur(18px);
    font-weight: 700;
    transition: transform 180ms ease, background 180ms ease;
}

.nav-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 249, 236, 0.9);
}

.nav-link:focus-visible,
.primary-button:focus-visible {
    outline: 3px solid rgba(244, 93, 53, 0.34);
    outline-offset: 4px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
    align-items: center;
    gap: clamp(32px, 6vw, 86px);
    width: min(1180px, 100%);
    min-height: calc(100vh - 118px);
    margin: 0 auto;
    padding: 58px 0 42px;
}

.hero-copy,
.launch-card {
    animation: rise 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.launch-card {
    animation-delay: 120ms;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

.launch-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 9px 15px;
    border: 1px solid rgba(19, 61, 50, 0.16);
    border-radius: 999px;
    background: rgba(255, 249, 236, 0.7);
    color: var(--forest);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--ember);
    box-shadow: 0 0 0 0 rgba(244, 93, 53, 0.48);
    animation: pulse 1.9s infinite;
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 9px rgba(244, 93, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 93, 53, 0);
    }
}

.eyebrow {
    margin: 34px 0 14px;
    color: var(--ember);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    max-width: 820px;
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(4rem, 10vw, 8.7rem);
    line-height: 0.88;
    letter-spacing: -0.07em;
}

.lede {
    max-width: 640px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    line-height: 1.75;
}

.actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 38px;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 58px;
    padding: 0 24px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #f04432, #c9151c);
    box-shadow: 0 18px 38px rgba(201, 21, 28, 0.28);
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(201, 21, 28, 0.34);
}

.supporting-text {
    color: var(--muted);
    font-size: 0.98rem;
    font-weight: 700;
}

.launch-card {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(31, 28, 23, 0.13);
    border-radius: 36px;
    background:
        linear-gradient(145deg, rgba(255, 249, 236, 0.92), rgba(246, 239, 226, 0.72)),
        rgba(255, 255, 255, 0.42);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.launch-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: -1;
    border-radius: 28px;
    border: 1px dashed rgba(19, 61, 50, 0.18);
}

.card-header,
.progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.card-header {
    margin-bottom: 32px;
}

.card-header span {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
}

.card-header strong {
    color: var(--forest);
    font-size: 1.1rem;
}

.progress-block {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(31, 28, 23, 0.08);
}

.progress-meta {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.progress-track {
    height: 12px;
    margin-top: 13px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(19, 61, 50, 0.12);
}

.progress-track span {
    display: block;
    width: 88%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--forest), var(--gold), var(--ember));
    animation: loadBar 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes loadBar {
    from {
        width: 16%;
    }

    to {
        width: 88%;
    }
}

.preview-panel {
    display: grid;
    gap: 13px;
    margin: 24px 0;
    padding: 22px;
    border-radius: 28px;
    background: var(--forest);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.preview-line,
.preview-window span {
    display: block;
    border-radius: 999px;
    background: rgba(255, 249, 236, 0.18);
}

.preview-line {
    height: 12px;
}

.preview-line.long {
    width: 86%;
}

.preview-line.medium {
    width: 64%;
}

.preview-line.short {
    width: 42%;
}

.preview-window {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.preview-window span {
    height: 88px;
    border-radius: 18px;
    background:
        linear-gradient(150deg, rgba(255, 249, 236, 0.22), rgba(216, 157, 52, 0.26)),
        rgba(255, 255, 255, 0.08);
}

.launch-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 700;
}

@media (max-width: 860px) {
    .site-shell {
        padding: 20px;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 64px;
    }

    .launch-card {
        max-width: 560px;
    }
}

@media (max-width: 560px) {
    .topbar {
        align-items: flex-start;
    }

    .nav-link {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.92rem;
    }

    h1 {
        font-size: clamp(3.25rem, 19vw, 5.2rem);
    }

    .primary-button,
    .actions {
        width: 100%;
    }

    .supporting-text {
        max-width: 260px;
    }

    .preview-window {
        grid-template-columns: 1fr;
    }

    .preview-window span {
        height: 58px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
