:root {
    --bg: #fbfbfd;
    --bg-soft: #f5f5f7;
    --surface: #ffffff;
    --surface-soft: #fafafa;
    --ink: #1d1d1f;
    --muted: #86868b;
    --line: rgba(0, 0, 0, 0.06);
    --line-strong: rgba(0, 0, 0, 0.1);
    --navy: #1d1d1f;
    --navy-strong: #1a1040;
    --purple: #2b1660;
    --teal: #0d8a7e;
    --teal-soft: #e8f8f5;
    --mint: #66d4c7;
    --orange: #f5a623;
    --orange-soft: #fef8ee;
    --white: #ffffff;
    --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-strong: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius-lg: 20px;
    --radius-xl: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    font-family: "Open Sans", -apple-system, "Helvetica Neue", sans-serif;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
}

p,
h1,
h2,
h3 {
    margin: 0;
}

h1,
h2,
h3 {
    font-family: "Open Sans", -apple-system, "Helvetica Neue", sans-serif;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.site-shell {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto;
    padding-bottom: 80px;
}

.topbar {
    position: sticky;
    top: 12px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    padding: 14px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

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

.brand-mark {
    position: relative;
    width: 36px;
    aspect-ratio: 1;
    border-radius: 10px;
    background: linear-gradient(135deg, #5ee8d0 0%, #0d8a7e 100%);
    overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    border-radius: 999px;
}

.brand-mark::before {
    inset: 8px 14px 8px 8px;
    background: rgba(255, 255, 255, 0.9);
}

.brand-mark::after {
    inset: 11px 8px 11px 12px;
    background: rgba(13, 138, 126, 0.25);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-copy strong {
    font-size: 0.98rem;
}

.brand-copy small,
.nav-links,
.footer p,
.footer-links,
.footer-meta,
.compact-copy,
.compact-note {
    color: var(--muted);
}

.brand-copy small {
    font-size: 0.74rem;
    letter-spacing: 0.01em;
}

.nav-links,
.nav-actions,
.hero-actions,
.cta-actions,
.footer-links,
.footer-meta,
.compact-actions,
.hero-highlights,
.chip-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    font-size: 0.92rem;
}

.nav-links a,
.footer-links a,
.footer-meta a {
    transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover,
.footer-meta a:hover {
    color: var(--navy);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 980px;
    border: none;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: opacity 200ms ease, transform 200ms ease;
}

.button:hover {
    opacity: 0.88;
}

.button-primary {
    color: var(--white);
    background: var(--ink);
}

.button-secondary,
.button-ghost {
    color: var(--ink);
    background: var(--bg-soft);
}

.button-light {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
}

.hero {
    padding-top: 48px;
}

.hero-banner {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    padding: 72px 64px;
    border-radius: 28px;
    color: var(--white);
    background: linear-gradient(160deg, #1a1040 0%, #1d2b52 50%, #0f3d4e 100%);
}

.hero-copy,
.hero-panel {
    position: relative;
    z-index: 1;
}

.eyebrow,
.panel-label,
.showcase-label,
.action-tag,
.proof-card span {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    margin-bottom: 12px;
    color: rgba(94, 232, 208, 0.9);
}

.hero-copy h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.lead,
.showcase-copy p,
.mvp-band p,
.contact-band p,
.compact-copy,
.compact-note {
    font-size: 1rem;
    line-height: 1.7;
}

.lead {
    max-width: 36ch;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
}

.hero-actions {
    flex-wrap: wrap;
    margin-top: 36px;
    gap: 14px;
}

.hero-highlights {
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-pill,
.chip-row span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 980px;
    font-size: 0.82rem;
    font-weight: 500;
}

.hero-pill {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-panel,
.proof-band,
.showcase-card,
.mvp-band,
.contact-band,
.compact-card {
    border-radius: var(--radius-xl);
    background: var(--surface);
}

.hero-panel {
    padding: 28px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.panel-label {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.metric-grid,
.proof-band,
.showcase-card,
.showcase-stack,
.cta-actions,
.trend-strip,
.signal-list,
.visual-summary,
.visual-surface,
.mvp-band,
.contact-band {
    display: grid;
    gap: 16px;
}

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

.metric-card,
.signal-item,
.action-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
}

.metric-card {
    padding: 18px;
}

.metric-card span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
}

.metric-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.trend-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: end;
    min-height: 100px;
    margin-top: 4px;
}

.trend-strip span {
    border-radius: 6px 6px 4px 4px;
    background: linear-gradient(180deg, rgba(94, 232, 208, 0.2) 0%, rgba(94, 232, 208, 0.7) 100%);
}

.signal-item {
    padding: 12px 14px;
    font-size: 0.88rem;
}

.signal-item-accent,
.action-card-accent {
    background: rgba(245, 166, 35, 0.1);
    border-color: rgba(245, 166, 35, 0.18);
}

.proof-band {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 56px;
    gap: 0;
}

.proof-card {
    padding: 32px 24px;
    text-align: center;
}

.proof-card:not(:last-child) {
    border-right: 1px solid var(--line);
}

.proof-card span {
    justify-content: center;
    color: var(--muted);
    font-size: 0.7rem;
}

.proof-card strong {
    display: block;
    margin-top: 10px;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 600;
    color: var(--ink);
}

.section {
    padding-top: 140px;
}

.section-intro {
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-intro .eyebrow,
.showcase-label,
.contact-band .eyebrow,
.mvp-band .eyebrow,
.compact-card .eyebrow {
    color: var(--teal);
}

.section-intro h2,
.mvp-band h2,
.contact-band h2,
.compact-card h1 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.showcase-stack {
    gap: 32px;
}

.showcase-card {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    padding: 48px;
    gap: 40px;
    border: 1px solid var(--line);
    border-radius: 24px;
}

.showcase-card-reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.showcase-card-reverse .showcase-copy {
    order: 2;
}

.showcase-card-reverse .showcase-visual {
    order: 1;
}

.showcase-label,
.action-tag {
    color: var(--teal);
}

.showcase-copy h3 {
    max-width: 18ch;
    margin-top: 10px;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.showcase-copy p,
.mvp-band p,
.contact-band p {
    max-width: 38ch;
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.65;
}

.chip-row {
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 8px;
}

.chip-row span {
    color: var(--muted);
    background: var(--bg-soft);
    border: none;
    font-weight: 500;
}

.showcase-visual {
    min-height: 300px;
    border-radius: 20px;
    background: var(--bg-soft);
    display: grid;
    place-items: center;
    padding: 28px;
}

.visual-window {
    width: min(100%, 400px);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 20px;
}

.visual-topline {
    height: 8px;
    width: 30%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--mint) 100%);
}

.visual-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 16px;
}

.visual-summary span {
    height: 60px;
    border-radius: 12px;
    background: var(--bg-soft);
}

.visual-surface {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    margin-top: 18px;
}

.visual-chart,
.visual-table {
    border-radius: 14px;
    background: var(--bg-soft);
}

.visual-chart {
    min-height: 150px;
    background:
        linear-gradient(180deg, rgba(13, 138, 126, 0.1) 0%, rgba(13, 138, 126, 0) 100%),
        var(--bg-soft);
}

.visual-table {
    padding: 14px;
    display: grid;
    gap: 10px;
}

.visual-table span {
    height: 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.04);
}

.action-visual {
    background: linear-gradient(160deg, #1a1040 0%, #1d3552 100%);
    padding: 36px;
}

.action-feed {
    width: min(100%, 400px);
    gap: 16px;
}

.action-card {
    padding: 20px 22px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.06);
}

.action-card strong {
    display: block;
    margin-top: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.5;
}

.mvp-band,
.contact-band,
.footer,
.cta-actions {
    align-items: center;
    justify-content: space-between;
}

.mvp-band,
.contact-band {
    padding: 48px 56px;
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 24px;
}

.mvp-band {
    color: var(--white);
    background: var(--ink);
}

.mvp-band .eyebrow {
    color: rgba(94, 232, 208, 0.8);
}

.mvp-band p {
    color: rgba(255, 255, 255, 0.6);
}

.contact-band {
    background: var(--bg-soft);
    border: 1px solid var(--line);
}

.footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-top: 140px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
    font-size: 0.88rem;
}

.footer strong {
    display: inline-block;
    margin-bottom: 8px;
}

.footer-links,
.footer-meta,
.cta-actions,
.compact-actions {
    flex-wrap: wrap;
}

.compact-page .site-shell {
    min-height: 100vh;
}

.compact-main {
    display: grid;
    place-items: center;
    padding: 84px 0 96px;
}

.compact-card {
    width: 100%;
    max-width: 720px;
    padding: 34px;
}

.compact-copy,
.compact-note {
    margin-top: 16px;
    color: var(--muted);
}

.redirect-pulse {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(51, 183, 170, 0.2) 0%, rgba(51, 183, 170, 0.08) 44%, rgba(51, 183, 170, 0) 72%);
}

.redirect-pulse::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 2px solid rgba(51, 183, 170, 0.72);
    animation: pulse 1.8s ease-out infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms cubic-bezier(0.25, 0.1, 0.25, 1), transform 600ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

@keyframes pulse {
    0% {
        transform: scale(0.72);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@media (max-width: 1120px) {
    .showcase-card,
    .showcase-card-reverse,
    .mvp-band,
    .contact-band {
        grid-template-columns: 1fr;
    }

    .showcase-card-reverse .showcase-copy,
    .showcase-card-reverse .showcase-visual {
        order: initial;
    }
}

@media (max-width: 940px) {
    .hero-banner {
        grid-template-columns: 1fr;
        padding: 56px 40px;
    }

@media (max-width: 940px) {
    .topbar,
    .nav-links,
    .nav-actions,
    .footer {
        flex-wrap: wrap;
    }

    .proof-band,
    .metric-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .site-shell {
        width: min(100% - 20px, 1180px);
    }

    .topbar {
        top: 8px;
        padding: 14px 16px;
    }

    .nav-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero-banner {
        padding: 48px 28px;
    }

    .hero-copy h1,
    .section-intro h2,
    .mvp-band h2,
    .contact-band h2,
    .compact-card h1,
    .showcase-copy h3 {
        max-width: none;
    }

    .section {
        padding-top: 80px;
    }

    .proof-band,
    .metric-grid,
    .visual-summary,
    .visual-surface {
        grid-template-columns: 1fr;
    }

    .proof-card:not(:last-child) {
        border-right: 0;
    }

    .showcase-card,
    .mvp-band,
    .contact-band,
    .compact-card {
        padding: 28px;
        border-radius: 20px;
    }

    .footer {
        margin-top: 80px;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}