.public-site {
    --site-bg: #f6f8fb;
    --site-ink: #09111f;
    --site-ink-soft: #1f2b3d;
    --site-muted: #5c677d;
    --site-line: rgba(9, 17, 31, 0.08);
    --site-panel: rgba(255, 255, 255, 0.78);
    --site-panel-strong: #ffffff;
    --site-accent: #1d4ed8;
    --site-accent-soft: rgba(29, 78, 216, 0.12);
    --site-shadow: 0 28px 80px rgba(12, 20, 34, 0.08);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 32%),
        radial-gradient(circle at 88% 12%, rgba(14, 165, 233, 0.14), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #f3f6fb 46%, #eef2f8 100%);
    color: var(--site-ink);
    min-height: 100vh;
    font-family: "Manrope", "Segoe UI", sans-serif;
}

.public-site * {
    box-sizing: border-box;
}

.public-site a {
    color: inherit;
    text-decoration: none;
}

.site-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.public-announcement {
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(18px);
    background: rgba(248, 251, 255, 0.68);
}

.public-announcement-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    min-height: 42px;
    color: var(--site-muted);
    font-size: 0.84rem;
}

.announcement-pill,
.eyebrow,
.subtle-chip,
.product-chip,
.panel-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 800;
}

.announcement-pill,
.subtle-chip,
.panel-tag,
.product-chip {
    padding: 0.45rem 0.75rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(9, 17, 31, 0.07);
}

.eyebrow {
    color: var(--site-accent);
    margin-bottom: 20px;
}

.public-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(246, 248, 251, 0.82);
    border-bottom: 1px solid rgba(9, 17, 31, 0.06);
}

.public-header-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.site-brand,
.footer-brand-heading {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
    font-family: "Sora", sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.footer-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
}

.brand-lockup {
    display: grid;
    gap: 2px;
}

.brand-lockup strong,
.footer-brand-heading strong {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.brand-lockup small {
    color: var(--site-muted);
    font-size: 0.72rem;
}

.site-nav {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(9, 17, 31, 0.07);
    box-shadow: 0 16px 32px rgba(12, 20, 34, 0.05);
}

.site-nav a {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    color: var(--site-muted);
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--site-ink);
    background: rgba(9, 17, 31, 0.05);
}

.site-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.site-solid-button,
.site-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.15rem;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 800;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-solid-button {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.24);
}

.site-link-button {
    background: rgba(255, 255, 255, 0.8);
    color: var(--site-ink);
    border: 1px solid rgba(9, 17, 31, 0.08);
}

.site-solid-button:hover,
.site-link-button:hover {
    transform: translateY(-1px);
}

.public-main {
    padding-bottom: 96px;
}

.page-hero {
    padding: 64px 0 34px;
}

.subpage-hero {
    padding-bottom: 14px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 26px;
    align-items: center;
}

.slim-grid {
    align-items: end;
}

.hero-title,
.section-title {
    margin: 0;
    font-family: "Sora", sans-serif;
    letter-spacing: -0.045em;
    line-height: 1.08;
    color: var(--site-ink-soft);
}

.hero-title {
    font-size: clamp(2.25rem, 5.8vw, 4.45rem);
    max-width: 11ch;
}

.compact-title {
    font-size: clamp(1.92rem, 4.1vw, 3.18rem);
    max-width: 12ch;
}

.hero-copy,
.section-copy,
.muted-copy,
.feature-card p,
.signal-card p,
.process-card p,
.footer-brand-heading p,
.faq-item p {
    color: var(--site-muted);
    line-height: 1.75;
    font-size: 1rem;
}

.hero-copy {
    max-width: 50ch;
    margin: 16px 0 0;
    font-size: 0.98rem;
    line-height: 1.8;
}

.hero-kicker {
    margin: 0 0 12px;
    color: var(--site-muted);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-title-wide {
    max-width: 14ch;
}

.hero-copy-centered {
    margin-left: auto;
    margin-right: auto;
}

.home-hero-shell,
.product-hero-shell {
    display: grid;
    gap: 28px;
}

.home-launch-shell {
    display: grid;
    gap: 30px;
}

.launch-hero {
    padding-top: 70px;
}

.launch-intro {
    max-width: 900px;
}

.hero-intro-center {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 0;
    max-width: 820px;
    margin: 0 auto;
}

.product-intro-center {
    max-width: 860px;
}

.centered-actions {
    justify-content: center;
}

.hero-ribbon-grid,
.product-summary-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.product-ribbon-card,
.product-summary-card {
    padding: 18px 18px 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 56px rgba(12, 20, 34, 0.06);
    backdrop-filter: blur(18px);
}

.product-ribbon-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.product-ribbon-top span,
.product-summary-card strong,
.product-ribbon-card strong {
    font-family: "Sora", sans-serif;
}

.product-ribbon-top span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(29, 78, 216, 0.08);
    color: var(--site-accent);
    font-size: 0.82rem;
    font-weight: 800;
}

.product-ribbon-top small {
    color: var(--site-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-ribbon-card strong,
.product-summary-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 0.98rem;
    color: var(--site-ink-soft);
}

.product-ribbon-card p,
.product-summary-card p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.6;
    font-size: 0.92rem;
}

.narrative-metric-strip {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.launch-stage {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 38px;
    background: linear-gradient(145deg, #07101d 0%, #0d1d34 48%, #123154 100%);
    box-shadow: 0 40px 100px rgba(7, 16, 29, 0.24);
}

.launch-stage-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.55;
}

.launch-stage-glow-left {
    top: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.42), transparent 70%);
}

.launch-stage-glow-right {
    right: -70px;
    bottom: -140px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.34), transparent 68%);
}

.launch-stage-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 20px;
    align-items: stretch;
}

.launch-lead-panel {
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
}

.launch-lead-panel .panel-tag {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #dbeafe;
}

.launch-lead-panel h2 {
    margin: 18px 0 14px;
    max-width: 11ch;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 4.8vw, 3.5rem);
    letter-spacing: -0.05em;
    line-height: 1.04;
    color: #f8fbff;
}

.launch-lead-panel p {
    max-width: 44ch;
    margin: 0;
    color: rgba(226, 232, 240, 0.82);
    line-height: 1.8;
    font-size: 1rem;
}

.launch-stage-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.launch-stage-links .inline-link,
.launch-stage-links .prominent-link {
    margin-top: 0;
    color: #e0f2fe;
}

.launch-product-stack {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.launch-product-card {
    padding: 18px 18px 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
}

.launch-product-card .product-ribbon-top span {
    background: rgba(147, 197, 253, 0.14);
    color: #dbeafe;
}

.launch-product-card .product-ribbon-top small {
    color: rgba(226, 232, 240, 0.72);
}

.launch-product-card strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    color: #f8fbff;
}

.launch-product-card p {
    margin: 0;
    color: rgba(226, 232, 240, 0.76);
    line-height: 1.6;
    font-size: 0.92rem;
}

.launch-metric-strip {
    position: relative;
    z-index: 1;
    margin-top: 22px;
}

.launch-metric-strip .metric-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.launch-metric-strip .metric-card strong {
    color: #f8fbff;
}

.launch-metric-strip .metric-card span {
    color: #dbeafe;
}

.launch-metric-strip .metric-card p {
    color: rgba(226, 232, 240, 0.74);
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 34px;
    align-items: center;
}

.home-intro-block {
    position: relative;
    z-index: 1;
}

.refined-home-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1.06fr);
    align-items: start;
}

.home-manifesto-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.manifesto-item {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 38px rgba(12, 20, 34, 0.05);
}

.manifesto-item strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Sora", sans-serif;
    font-size: 0.98rem;
}

.manifesto-item p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.65;
    font-size: 0.94rem;
}

.home-architecture-stage {
    padding: 28px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(240, 246, 255, 0.84) 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 28px 72px rgba(12, 20, 34, 0.1);
}

.architecture-stage-head strong,
.release-note-panel h3 {
    display: block;
    margin: 14px 0 10px;
    font-family: "Sora", sans-serif;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
}

.architecture-stage-head p,
.release-note-panel p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.7;
}

.architecture-stage-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.architecture-row {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(9, 17, 31, 0.06);
}

.architecture-row-meta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 10px;
}

.architecture-row-meta span {
    color: var(--site-accent);
    font-family: "Sora", sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
}

.architecture-row-meta strong {
    font-size: 1rem;
}

.architecture-row-meta small {
    color: var(--site-muted);
    font-size: 0.82rem;
}

.architecture-row p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.65;
}

.architecture-row-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.architecture-row-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(29, 78, 216, 0.08);
    color: var(--site-accent);
    font-size: 0.8rem;
    font-weight: 700;
}

.architecture-stage-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(9, 17, 31, 0.08);
}

.architecture-stage-foot span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(9, 17, 31, 0.04);
    color: var(--site-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.metric-strip {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.metric-card,
.hero-panel,
.feature-card,
.signal-card,
.process-card,
.cta-panel,
.forum-topic-list article {
    background: var(--site-panel);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--site-shadow);
    backdrop-filter: blur(20px);
}

.metric-card {
    padding: 16px 18px;
    border-radius: 20px;
}

.metric-card strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.34rem;
    margin-bottom: 8px;
}

.metric-card span {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
}

.metric-card p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.5;
    font-size: 0.92rem;
}

.hero-band-wrap {
    margin-top: 26px;
}

.kinetic-band {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(9, 17, 31, 0.06);
    box-shadow: 0 18px 50px rgba(12, 20, 34, 0.06);
}

.kinetic-track {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: max-content;
    padding-left: 22px;
    animation: drift-track 22s linear infinite;
}

.kinetic-track span,
.kinetic-track small,
.kinetic-track em {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    font-size: 0.84rem;
    white-space: nowrap;
}

.kinetic-track span {
    padding: 0 12px;
    background: rgba(29, 78, 216, 0.1);
    color: var(--site-accent);
    font-weight: 800;
}

.kinetic-track small {
    color: var(--site-ink);
    font-weight: 700;
}

.kinetic-track em {
    padding: 0 12px;
    background: rgba(9, 17, 31, 0.04);
    color: var(--site-muted);
    font-style: normal;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-device {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 520px;
}

.device-glow {
    position: absolute;
    inset: auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.22), transparent 68%);
    filter: blur(18px);
}

.device-screen {
    position: relative;
    width: min(100%, 460px);
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(238, 244, 252, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 40px 80px rgba(12, 20, 34, 0.12);
}

.mini-label {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--site-accent);
    margin-bottom: 18px;
}

.stack-rail {
    display: grid;
    gap: 14px;
}

.stack-row {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(9, 17, 31, 0.07);
}

.stack-row span,
.product-stack-header strong {
    font-family: "Sora", sans-serif;
    font-weight: 800;
}

.stack-row small {
    color: var(--site-muted);
    font-size: 0.84rem;
}

.hero-orbit {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(29, 78, 216, 0.16);
    animation: pulse-ring 7s ease-in-out infinite;
}

.orbit-ring-large {
    width: 440px;
    height: 440px;
}

.orbit-ring-small {
    width: 280px;
    height: 280px;
    animation-delay: -2s;
}

.orbit-core {
    position: relative;
    z-index: 2;
    width: min(100%, 320px);
    padding: 28px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 246, 255, 0.88) 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 80px rgba(12, 20, 34, 0.12);
    text-align: left;
}

.orbit-core strong {
    display: block;
    margin: 14px 0 10px;
    font-family: "Sora", sans-serif;
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.orbit-core p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.7;
}

.orbit-node {
    position: absolute;
    z-index: 3;
    width: 190px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 44px rgba(12, 20, 34, 0.08);
    backdrop-filter: blur(18px);
    animation: float-node 6s ease-in-out infinite;
}

.orbit-node span {
    display: inline-flex;
    margin-bottom: 10px;
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--site-accent);
}

.orbit-node strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
}

.orbit-node small {
    color: var(--site-muted);
    font-size: 0.82rem;
}

.orbit-node-0 {
    top: 12%;
    left: 4%;
}

.orbit-node-1 {
    top: 8%;
    right: 2%;
    animation-delay: -1.4s;
}

.orbit-node-2 {
    bottom: 12%;
    left: 6%;
    animation-delay: -2.2s;
}

.orbit-node-3 {
    bottom: 10%;
    right: 4%;
    animation-delay: -3.1s;
}

.content-section {
    padding: 26px 0 0;
}

.muted-section {
    margin-top: 18px;
    padding: 34px 0 0;
}

.section-head {
    margin-bottom: 22px;
}

.centered-section-head {
    text-align: center;
}

.centered-section-head .section-title,
.centered-section-head .section-copy {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(1.58rem, 3vw, 2.44rem);
    max-width: 16ch;
}

.section-copy {
    max-width: 54ch;
    margin-top: 12px;
    font-size: 0.98rem;
}

.home-method-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 20px;
    align-items: start;
}

.story-section {
    padding-top: 14px;
}

.story-filmstrip {
    display: grid;
    gap: 24px;
}

.story-filmstrip-head {
    max-width: 760px;
}

.story-filmstrip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.story-film-card {
    min-height: 100%;
    padding: 24px 22px 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 22px 58px rgba(12, 20, 34, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.story-film-card:nth-child(2) {
    transform: translateY(18px);
}

.story-film-card:nth-child(3) {
    transform: translateY(36px);
}

.story-film-card:nth-child(4) {
    transform: translateY(54px);
}

.story-film-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 78px rgba(12, 20, 34, 0.1);
}

.story-film-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.story-film-top span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(29, 78, 216, 0.1);
    color: var(--site-accent);
    font-family: "Sora", sans-serif;
    font-weight: 800;
}

.story-film-top small {
    color: var(--site-muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.story-film-card h3 {
    margin: 0 0 10px;
    font-family: "Sora", sans-serif;
    font-size: 1.04rem;
    color: var(--site-ink-soft);
}

.story-film-card p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.7;
}

.story-film-card strong {
    display: inline-flex;
    margin-top: 16px;
    color: var(--site-ink-soft);
    font-size: 0.92rem;
}

.narrative-split {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: start;
}

.narrative-copy {
    padding-top: 10px;
}

.narrative-panel-list {
    display: grid;
    gap: 14px;
}

.narrative-panel {
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 54px rgba(12, 20, 34, 0.06);
}

.narrative-panel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.narrative-panel-top span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(29, 78, 216, 0.1);
    color: var(--site-accent);
    font-family: "Sora", sans-serif;
    font-weight: 800;
}

.narrative-panel-top small {
    color: var(--site-muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.narrative-panel h3 {
    margin: 0 0 8px;
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    color: var(--site-ink-soft);
}

.narrative-panel p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.65;
}

.method-statement {
    padding-top: 8px;
}

.method-stack {
    display: grid;
    gap: 18px;
}

.search-panel {
    padding: 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(243, 248, 255, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 26px 72px rgba(12, 20, 34, 0.08);
}

.search-toolbar {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.content-search-input {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(9, 17, 31, 0.1);
    background: rgba(255, 255, 255, 0.92);
    color: var(--site-ink);
    font: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.content-search-input:focus {
    outline: 2px solid rgba(29, 78, 216, 0.18);
    border-color: rgba(29, 78, 216, 0.3);
}

.filter-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(9, 17, 31, 0.08);
    background: rgba(255, 255, 255, 0.8);
    color: var(--site-muted);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 160ms ease;
}

.filter-chip.is-active,
.filter-chip:hover {
    color: var(--site-ink);
    background: rgba(29, 78, 216, 0.1);
    border-color: rgba(29, 78, 216, 0.16);
}

.search-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-top: 18px;
    color: var(--site-muted);
    font-size: 0.92rem;
}

.search-result-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.search-result-item {
    display: block;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 56px rgba(12, 20, 34, 0.06);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.search-result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 72px rgba(12, 20, 34, 0.09);
}

.search-result-item h3 {
    margin: 0 0 10px;
    font-family: "Sora", sans-serif;
    font-size: 1.02rem;
    letter-spacing: -0.03em;
}

.search-result-copy {
    margin: 0;
}

.search-empty-state {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px dashed rgba(9, 17, 31, 0.12);
    color: var(--site-muted);
}

.method-card {
    min-height: 100%;
}

.brand-principle-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.principle-card {
    min-height: 100%;
}

.principle-meta {
    margin-bottom: 14px;
}

.compact-case-card {
    min-height: 100%;
}

.evidence-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 18px;
    align-items: start;
}

.case-study-stack,
.release-note-list {
    display: grid;
    gap: 18px;
}

.case-study-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.release-note-panel {
    position: sticky;
    top: 120px;
}

.release-note-item {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(9, 17, 31, 0.06);
}

.release-note-item > span,
.phase-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(29, 78, 216, 0.12);
    color: var(--site-accent);
    font-family: "Sora", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
}

.release-note-item strong {
    display: block;
    margin: 12px 0 8px;
    font-family: "Sora", sans-serif;
    font-size: 0.96rem;
}

.release-note-item p {
    margin: 0;
}

.system-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 20px;
    align-items: start;
}

.system-story-panel {
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(243, 248, 255, 0.78) 100%);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 26px 72px rgba(12, 20, 34, 0.08);
    position: sticky;
    top: 120px;
}

.story-signal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.story-signal-grid div {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(9, 17, 31, 0.06);
}

.story-signal-grid strong {
    display: block;
    font-family: "Sora", sans-serif;
    margin-bottom: 8px;
}

.story-signal-grid span {
    color: var(--site-muted);
    line-height: 1.6;
    font-size: 0.92rem;
}

.flow-cards {
    display: grid;
    gap: 18px;
}

.flow-step-card {
    padding: 20px 20px 18px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 56px rgba(12, 20, 34, 0.07);
    backdrop-filter: blur(18px);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.flow-step-card:nth-child(2n) {
    transform: translateX(28px);
}

.flow-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 72px rgba(12, 20, 34, 0.1);
}

.flow-step-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.flow-step-top span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(29, 78, 216, 0.12);
    color: var(--site-accent);
    font-family: "Sora", sans-serif;
    font-weight: 800;
}

.flow-step-top small {
    color: var(--site-muted);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.flow-step-card h3 {
    margin: 0 0 10px;
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
}

.flow-step-card p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.7;
}

.flow-step-card strong {
    display: inline-flex;
    margin-top: 16px;
    color: var(--site-ink);
    font-size: 0.92rem;
}

.product-mosaic {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.product-mosaic-card {
    grid-column: span 6;
    padding: 22px;
    border-radius: 28px;
}

.product-mosaic-vgs,
.product-mosaic-vls {
    grid-column: span 7;
}

.product-mosaic-lpf,
.product-mosaic-vts {
    grid-column: span 5;
}

.capability-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.capability-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(29, 78, 216, 0.08);
    color: var(--site-accent);
    font-size: 0.84rem;
    font-weight: 700;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.role-card {
    min-height: 100%;
}

.compact-tag-row {
    margin-bottom: 14px;
}

.destination-grid .feature-card,
.role-card,
.product-mosaic-card {
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.destination-grid .feature-card:hover,
.role-card:hover,
.product-mosaic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 76px rgba(12, 20, 34, 0.1);
}

.card-grid,
.signal-grid,
.process-grid {
    display: grid;
    gap: 18px;
}

.card-grid.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three-up,
.signal-grid,
.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.signal-card,
.process-card,
.forum-topic-list article {
    padding: 20px;
    border-radius: 22px;
}

.feature-card h3,
.signal-card h3,
.process-card h3,
.forum-topic-list h3,
.faq-item summary,
.product-stack h3 {
    margin: 0 0 12px;
    font-family: "Sora", sans-serif;
    font-size: 1.04rem;
    letter-spacing: -0.03em;
    color: var(--site-ink-soft);
}

.meta-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    align-items: center;
}

.article-meta {
    color: var(--site-muted);
    font-size: 0.85rem;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(9, 17, 31, 0.04);
    color: var(--site-muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.bullet-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--site-muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.tight-list {
    margin-top: 10px;
}

.inline-link,
.prominent-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--site-accent);
    font-weight: 800;
}

.inline-link::after,
.prominent-link::after {
    content: "→";
}

.inline-cta-row {
    padding-top: 16px;
}

.product-overview-panel,
.highlighted-panel,
.newsletter-panel {
    min-height: 100%;
}

.hero-panel,
.cta-panel {
    padding: 22px;
    border-radius: 26px;
}

.hero-panel strong,
.cta-panel .section-title {
    display: block;
    margin: 14px 0 10px;
    font-family: "Sora", sans-serif;
    font-size: 1.16rem;
    color: var(--site-ink-soft);
}

.product-stack {
    display: grid;
    gap: 18px;
}

.anchored-card {
    padding: 22px;
    border-radius: 28px;
}

.product-stack-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.case-detail-grid {
    align-items: stretch;
}

.support-phase-grid {
    align-items: stretch;
}

.support-phase-card {
    min-height: 100%;
}

.phase-meta {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.phase-meta small {
    color: var(--site-muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.support-output {
    display: inline-flex;
    margin-top: 16px;
    color: var(--site-ink);
    font-size: 0.92rem;
    font-weight: 800;
}

.detail-grid h4 {
    margin: 0 0 10px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--site-accent);
}

.process-card span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 18px;
    background: var(--site-accent-soft);
    color: var(--site-accent);
    font-family: "Sora", sans-serif;
    font-weight: 800;
}

.featured-story {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 18px;
    align-items: stretch;
}

.forum-topic-list {
    display: grid;
    gap: 16px;
}

.forum-topic-list article span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--site-accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(9, 17, 31, 0.08);
    padding: 18px 20px;
    box-shadow: 0 20px 52px rgba(12, 20, 34, 0.06);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 12px 0 0;
}

.cta-section {
    padding-top: 34px;
}

.cta-panel {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.cta-panel .section-title {
    max-width: 14ch;
}

.public-footer {
    margin-top: 96px;
    padding: 44px 0 28px;
    border-top: 1px solid rgba(9, 17, 31, 0.08);
    background: rgba(255, 255, 255, 0.55);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.public-footer h4 {
    margin: 0 0 14px;
    font-family: "Sora", sans-serif;
    font-size: 0.9rem;
    color: var(--site-ink-soft);
}

.public-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.public-footer li,
.public-footer p,
.footer-bottom-row {
    color: var(--site-muted);
    line-height: 1.7;
}

.footer-bottom-row {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(9, 17, 31, 0.06);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    font-size: 0.92rem;
}

@keyframes drift-track {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes float-node {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-ring {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.7;
    }
}

@media (max-width: 1120px) {
    .public-header-inner {
        grid-template-columns: 1fr;
        justify-items: start;
        padding: 16px 0;
    }

    .site-nav {
        justify-self: stretch;
        flex-wrap: wrap;
    }

    .hero-grid,
    .home-hero-grid,
    .refined-home-grid,
    .launch-stage-grid,
    .hero-ribbon-grid,
    .product-summary-rail,
    .featured-story,
    .footer-grid,
    .cta-panel,
    .system-story-grid,
    .home-method-grid,
    .evidence-grid,
    .brand-principle-grid,
    .narrative-split {
        grid-template-columns: 1fr;
    }

    .site-actions,
    .cta-panel {
        width: 100%;
    }

    .system-story-panel {
        position: relative;
        top: auto;
    }

    .release-note-panel {
        position: relative;
        top: auto;
    }

    .flow-step-card:nth-child(2n) {
        transform: none;
    }

    .product-mosaic-card,
    .product-mosaic-vgs,
    .product-mosaic-lpf,
    .product-mosaic-vts,
    .product-mosaic-vls {
        grid-column: span 12;
    }
}

@media (max-width: 820px) {
    .site-container {
        width: min(100% - 28px, 1180px);
    }

    .metric-strip,
    .card-grid.two-up,
    .card-grid.three-up,
    .signal-grid,
    .process-grid,
    .detail-grid,
    .story-signal-grid,
    .story-filmstrip-grid,
    .role-grid,
    .brand-principle-grid,
    .hero-ribbon-grid,
    .product-summary-rail {
        grid-template-columns: 1fr;
    }

    .architecture-row-meta,
    .case-study-meta {
        grid-template-columns: 1fr;
        display: grid;
    }

    .public-announcement-inner,
    .footer-bottom-row,
    .search-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-visual,
    .hero-device,
    .hero-orbit {
        min-height: 360px;
    }

    .orbit-node {
        position: relative;
        inset: auto;
        width: 100%;
        margin-top: 12px;
    }

    .orbit-ring {
        display: none;
    }

    .cta-actions,
    .site-actions {
        width: 100%;
    }

    .architecture-stage-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .story-film-card:nth-child(2),
    .story-film-card:nth-child(3),
    .story-film-card:nth-child(4) {
        transform: none;
    }

    .site-solid-button,
    .site-link-button {
        flex: 1 1 180px;
    }
}