:root {
    --page: #f5f7fb;
    --page-strong: #edf2f8;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-solid: #ffffff;
    --surface-soft: #f9fbff;
    --surface-accent: #fff6dc;
    --line: #d8e2ef;
    --line-strong: #c9d6e7;
    --ink: #24345f;
    --ink-strong: #16234a;
    --muted: #61708c;
    --muted-strong: #50607b;
    --brand: #25386f;
    --brand-strong: #1a2856;
    --accent: #f3bc16;
    --accent-strong: #e3a900;
    --accent-soft: #fff0bc;
    --success: #2e8d62;
    --shadow-sm: 0 14px 28px rgba(22, 35, 74, 0.06);
    --shadow-md: 0 22px 48px rgba(22, 35, 74, 0.09);
    --shadow-lg: 0 34px 76px rgba(22, 35, 74, 0.12);
    --radius-sm: 18px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --container: 1140px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Manrope", system-ui, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(243, 188, 22, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(37, 56, 111, 0.12), transparent 32%),
        linear-gradient(180deg, #fbfcff 0%, var(--page) 32%, var(--page-strong) 100%);
    line-height: 1.55;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: -1;
    border-radius: 999px;
    filter: blur(12px);
}

body::before {
    top: 6rem;
    right: -7rem;
    width: 18rem;
    height: 18rem;
    background: rgba(243, 188, 22, 0.12);
}

body::after {
    left: -7rem;
    bottom: 8rem;
    width: 16rem;
    height: 16rem;
    background: rgba(37, 56, 111, 0.08);
}

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

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

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

button {
    cursor: pointer;
}

::selection {
    color: var(--brand-strong);
    background: rgba(243, 188, 22, 0.3);
}

.container {
    width: min(var(--container), calc(100% - 1.5rem));
    margin-inline: auto;
}

.section-shell,
.site-footer {
    scroll-margin-top: 7rem;
}

.section-shell {
    padding: 1.1rem 0 3.8rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    color: var(--muted-strong);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0.28rem rgba(243, 188, 22, 0.18);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    min-height: 3.5rem;
    padding: 0.9rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.97rem;
    letter-spacing: -0.01em;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button:focus-visible,
.site-nav a:focus-visible,
.hero-pill:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 0.22rem rgba(255, 255, 255, 0.9),
        0 0 0 0.42rem rgba(37, 56, 111, 0.32);
}

.button--primary {
    color: #1b1b1b;
    background: linear-gradient(135deg, #ffd24f 0%, var(--accent) 50%, #efb000 100%);
    box-shadow: 0 16px 36px rgba(243, 188, 22, 0.26);
}

.button--primary:hover {
    box-shadow: 0 18px 40px rgba(243, 188, 22, 0.32);
}

.button--secondary {
    color: var(--brand-strong);
    background: rgba(255, 255, 255, 0.88);
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.button--ghost {
    color: var(--brand);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(37, 56, 111, 0.14);
}

.button--panel {
    width: 100%;
}

.button--compact {
    width: auto;
    min-height: 2.8rem;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
}

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

.site-header__inner {
    display: grid;
    gap: 0.9rem;
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 1.7rem;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(22, 35, 74, 0.08);
    transition:
        box-shadow 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.site-header.is-scrolled .site-header__inner {
    border-color: rgba(216, 226, 239, 0.92);
    box-shadow: 0 22px 42px rgba(22, 35, 74, 0.12);
}

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

.brand__icon {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 12px 20px rgba(243, 188, 22, 0.22));
}

.brand__copy {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.brand__copy strong {
    color: var(--ink-strong);
    font-family: "Sora", "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

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

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding-bottom: 0.15rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
    display: none;
}

.site-nav a {
    flex: 0 0 auto;
    color: var(--muted-strong);
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(37, 56, 111, 0.08);
    font-size: 0.92rem;
    font-weight: 700;
    transition:
        background-color 180ms ease,
        color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.site-nav a:hover {
    transform: translateY(-1px);
    color: var(--brand);
    border-color: rgba(37, 56, 111, 0.14);
    background: rgba(255, 255, 255, 0.88);
}

.site-nav .button {
    margin-left: 0.15rem;
}

.hero {
    padding-top: 1.35rem;
}

.hero__grid {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}

.hero__content,
.hero__visual {
    min-width: 0;
}

.brand-stage {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(37, 56, 111, 0.1);
    border-radius: 1.55rem;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-sm);
}

.brand-stage__mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    flex: 0 0 auto;
}

.brand-stage__mark img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-stage__pulse {
    position: absolute;
    inset: 0.4rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(243, 188, 22, 0.32), rgba(243, 188, 22, 0));
    animation: brandPulse 4.8s ease-in-out infinite;
}

.brand-stage__text {
    display: grid;
    gap: 0.25rem;
}

.brand-stage__eyebrow {
    color: var(--muted-strong);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.brand-stage__name {
    color: var(--ink-strong);
    font-family: "Sora", "Manrope", sans-serif;
    font-size: clamp(1.25rem, 4vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    opacity: 0;
    transform: translateY(0.5rem);
}

body.is-ready .brand-stage__name {
    animation: brandReveal 700ms ease-out forwards 120ms;
}

.hero__copy {
    margin-top: 1.3rem;
}

.hero__copy h1 {
    margin: 0;
    color: var(--ink-strong);
    font-family: "Sora", "Manrope", sans-serif;
    font-size: clamp(2.15rem, 9vw, 3.9rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.hero__copy p {
    max-width: 37rem;
    margin: 1rem 0 0;
    color: var(--muted-strong);
    font-size: 1rem;
}

.hero__actions {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.1rem;
}

.hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.72rem 0.95rem;
    border: 1px solid rgba(37, 56, 111, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--muted-strong);
    font-size: 0.85rem;
    font-weight: 700;
}

.hero__meta span::before {
    content: "";
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0.22rem rgba(46, 141, 98, 0.13);
}

.hero-card,
.value-card,
.prototype-panel,
.proof-panel,
.site-footer__inner {
    border: 1px solid rgba(37, 56, 111, 0.08);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.hero-card {
    padding: 1.15rem;
    overflow: hidden;
}

.hero-card__top {
    display: grid;
    gap: 1rem;
    align-items: center;
}

.hero-card__top h2 {
    margin: 0;
    color: var(--ink-strong);
    font-family: "Sora", "Manrope", sans-serif;
    font-size: clamp(1.2rem, 4.4vw, 1.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-card__wordmark {
    width: min(12.5rem, 100%);
    justify-self: start;
    filter: drop-shadow(0 12px 18px rgba(37, 56, 111, 0.08));
}

.hero-card__tabs {
    display: flex;
    gap: 0.55rem;
    margin-top: 1.2rem;
    padding-bottom: 0.2rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.hero-card__tabs::-webkit-scrollbar {
    display: none;
}

.hero-pill {
    flex: 0 0 auto;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(37, 56, 111, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--muted-strong);
    font-size: 0.9rem;
    font-weight: 800;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.hero-pill:hover {
    transform: translateY(-1px);
}

.hero-pill.is-active {
    color: var(--ink-strong);
    background: linear-gradient(135deg, rgba(243, 188, 22, 0.24), rgba(255, 255, 255, 0.96));
    border-color: rgba(243, 188, 22, 0.55);
}

.spotlights {
    margin-top: 1rem;
}

.spotlight-card {
    display: grid;
    gap: 1rem;
    padding: 1.1rem;
    border: 1px solid rgba(37, 56, 111, 0.08);
    border-radius: calc(var(--radius-lg) - 0.35rem);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 255, 0.96)),
        linear-gradient(135deg, rgba(243, 188, 22, 0.08), transparent 55%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

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

.spotlight-card__eyebrow {
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 800;
}

.spotlight-card__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    min-height: 2.25rem;
    padding: 0.4rem;
    border-radius: 50%;
    background: rgba(37, 56, 111, 0.08);
    color: var(--brand);
    font-weight: 800;
}

.spotlight-card__body h3 {
    margin: 0;
    color: var(--ink-strong);
    font-family: "Sora", "Manrope", sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.spotlight-card__body p {
    margin: 0.7rem 0 0;
    color: var(--muted-strong);
    font-size: 0.95rem;
}

.spotlight-list,
.feature-list {
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.spotlight-list li,
.feature-list li {
    position: relative;
    padding-left: 1.55rem;
    color: var(--ink);
    font-size: 0.92rem;
}

.spotlight-list li::before,
.feature-list li::before {
    content: "";
    position: absolute;
    top: 0.46rem;
    left: 0;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0%, var(--accent-strong) 70%, rgba(243, 188, 22, 0.12) 100%);
    box-shadow: 0 0 0 0.24rem rgba(243, 188, 22, 0.16);
}

.section-heading {
    max-width: 44rem;
    margin-bottom: 1.4rem;
}

.section-heading h2,
.prototype-panel__content h2,
.proof-panel__intro h2 {
    margin: 0;
    color: var(--ink-strong);
    font-family: "Sora", "Manrope", sans-serif;
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.section-heading p,
.prototype-panel__content p,
.proof-panel__intro p {
    margin: 0.9rem 0 0;
    color: var(--muted-strong);
    font-size: 1rem;
}

.value-grid {
    display: grid;
    gap: 1rem;
}

.value-card {
    padding: 1.35rem;
}

.value-card__top {
    display: grid;
    gap: 0.95rem;
    margin-bottom: 1rem;
}

.value-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(37, 56, 111, 0.08);
    color: var(--brand);
    font-family: "Sora", "Manrope", sans-serif;
    font-weight: 700;
}

.value-card__label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.45rem;
    color: var(--muted-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.value-card h3,
.tool-card h3 {
    margin: 0;
    color: var(--ink-strong);
    font-family: "Sora", "Manrope", sans-serif;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.value-card p,
.tool-card p {
    margin: 0 0 1rem;
    color: var(--muted-strong);
    font-size: 0.96rem;
}

.prototype-panel {
    display: grid;
    gap: 1.2rem;
    padding: 1.25rem;
    background:
        linear-gradient(135deg, rgba(255, 246, 220, 0.98), rgba(255, 255, 255, 0.94) 48%, rgba(244, 247, 252, 0.96) 100%);
}

.prototype-panel__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.15rem 0 1.25rem;
}

.prototype-panel__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 2.3rem;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(37, 56, 111, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--brand);
    font-size: 0.88rem;
    font-weight: 700;
}

.prototype-panel__board {
    display: grid;
    gap: 0.85rem;
}

.tool-card {
    padding: 1.15rem;
    border: 1px solid rgba(37, 56, 111, 0.08);
    border-radius: calc(var(--radius-md) - 0.1rem);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.tool-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.85rem;
}

.tool-card__marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background: rgba(37, 56, 111, 0.08);
    color: var(--brand);
    font-weight: 800;
}

.tool-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(243, 188, 22, 0.18);
    color: #775300;
    font-size: 0.8rem;
    font-weight: 800;
}

.proof-panel {
    display: grid;
    gap: 1.2rem;
    padding: 1.25rem;
}

.proof-grid {
    display: grid;
    gap: 0.85rem;
}

.proof-card {
    display: grid;
    gap: 0.45rem;
    padding: 1rem;
    border: 1px solid rgba(37, 56, 111, 0.08);
    border-radius: calc(var(--radius-md) - 0.3rem);
    background: rgba(255, 255, 255, 0.84);
}

.proof-card strong {
    color: var(--ink-strong);
    font-family: "Sora", "Manrope", sans-serif;
    font-size: clamp(1.2rem, 5vw, 1.95rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.proof-card span {
    color: var(--muted-strong);
    font-size: 0.92rem;
}

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

.site-footer__inner {
    display: grid;
    gap: 1.35rem;
    padding: 1.3rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 254, 0.95)),
        linear-gradient(135deg, rgba(243, 188, 22, 0.06), transparent 60%);
}

.brand--footer .brand__icon {
    width: 3.4rem;
    height: 3.4rem;
}

.legal-block {
    display: grid;
    gap: 0.35rem;
    margin: 0;
    color: var(--muted-strong);
    font-style: normal;
    font-size: 0.92rem;
}

body.is-ready [data-reveal] {
    opacity: 0;
    transform: translateY(1rem);
    transition:
        opacity 620ms ease,
        transform 620ms ease;
}

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

[hidden] {
    display: none !important;
}

@keyframes brandPulse {
    0%,
    100% {
        transform: scale(0.96);
        opacity: 0.65;
    }
    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

@keyframes brandReveal {
    from {
        opacity: 0;
        transform: translateY(0.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 760px) {
    .container {
        width: min(var(--container), calc(100% - 2.2rem));
    }

    .section-shell {
        padding: 1.5rem 0 5rem;
    }

    .site-header {
        padding-top: 1rem;
    }

    .site-header__inner {
        gap: 1.2rem;
        padding: 1rem 1.15rem;
    }

    .hero__actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-card,
    .value-card,
    .prototype-panel,
    .proof-panel,
    .site-footer__inner {
        padding: 1.6rem;
    }

    .spotlight-card {
        padding: 1.35rem;
    }

    .value-grid,
    .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__inner {
        grid-template-columns: auto 1fr;
        align-items: start;
        justify-content: space-between;
    }

    .legal-block {
        justify-self: end;
        text-align: right;
    }
}

@media (min-width: 980px) {
    .section-shell {
        padding: 1.75rem 0 5.6rem;
    }

    .site-header__inner {
        grid-template-columns: auto 1fr;
        align-items: center;
        padding: 1rem 1.3rem;
    }

    .site-nav {
        justify-content: flex-end;
        overflow: visible;
    }

    .hero__grid,
    .prototype-panel,
    .proof-panel {
        grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
        gap: 1.5rem;
    }

    .hero__grid {
        align-items: center;
    }

    .hero__copy p {
        font-size: 1.08rem;
    }

    .hero-card {
        padding: 1.45rem;
    }

    .hero-card__top {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 1.25rem;
    }

    .hero-card__wordmark {
        width: 14rem;
        justify-self: end;
    }

    .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .prototype-panel__board,
    .proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .proof-panel__intro {
        max-width: 28rem;
    }
}

@media (min-width: 1180px) {
    .hero__copy h1 {
        max-width: 11.6ch;
    }

    .hero-card,
    .value-card,
    .prototype-panel,
    .proof-panel,
    .site-footer__inner {
        border-radius: 2.2rem;
    }

    .spotlight-card {
        min-height: 23rem;
    }
}

@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;
    }
}
