@font-face {
    font-family: "Zync Tabler Icons";
    src: url("assets/fonts/TablerIcons.ttf") format("truetype");
    font-display: block;
    font-style: normal;
    font-weight: 400;
}

:root {
    color-scheme: light;
    --ink: #010f2f;
    --ink-soft: #162548;
    --text: #4d5b73;
    --text-soft: #69768c;
    --blue: #1a34fd;
    --blue-dark: #1028e4;
    --cyan: #00b8d4;
    --surface: #f4f7fc;
    --surface-high: #e9eef7;
    --blue-soft: #e9edff;
    --line: #d8dfea;
    --line-soft: #e8edf4;
    --white: #ffffff;
    --success: #168a46;
    --live: #d92d3d;
    --orange: #d96824;
    --font: "Avenir Next", Avenir, "Segoe UI Variable", "Segoe UI", sans-serif;
    --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 12px 34px rgba(1, 15, 47, 0.08);
    --shadow-lg: 0 30px 90px rgba(1, 15, 47, 0.16);
    --radius-xs: 6px;
    --radius-s: 10px;
    --radius-m: 14px;
    --radius-l: 16px;
    --radius-xl: 20px;
    --radius-xxl: 28px;
    --content: 1180px;
    --wide: 1392px;
}

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

html {
    min-width: 320px;
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
    background: var(--white);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

button {
    color: inherit;
    font: inherit;
    cursor: pointer;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

.mx-icon {
    display: inline-block;
    flex: 0 0 auto;
    font-family: "Zync Tabler Icons";
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

:focus-visible {
    border-radius: var(--radius-xs);
    outline: 3px solid rgba(26, 52, 253, 0.34);
    outline-offset: 4px;
}

::selection {
    color: var(--white);
    background: var(--blue);
}

.skip-link {
    position: fixed;
    z-index: 300;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-xs);
    color: var(--white);
    background: var(--ink);
    font-size: 0.8rem;
    font-weight: 800;
    transform: translateY(-170%);
    transition: transform 180ms var(--ease);
}

.skip-link:focus {
    transform: translateY(0);
}

.container,
.wide-container {
    width: min(var(--content), calc(100% - 48px));
    margin-inline: auto;
}

.wide-container {
    width: min(var(--wide), calc(100% - 48px));
}

.section {
    padding: 128px 0;
}

.eyebrow {
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1.4;
}

.eyebrow-light {
    color: #9aabff;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    color: var(--text);
    font-size: clamp(0.82rem, 0.9vw, 0.92rem);
    font-weight: 650;
    letter-spacing: 0.01em;
    line-height: 1.4;
    text-transform: none;
    gap: 8px;
}

.hero-kicker::before {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
    content: "";
}

.hero-kicker strong {
    color: var(--blue);
    font-weight: 780;
}

.brand-lockup {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    line-height: 1;
    user-select: none;
}

.brand-wordmark {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    font-size: 1.55rem;
    font-weight: 680;
    letter-spacing: -0.065em;
}

.brand-x {
    width: 0.84em;
    height: 0.84em;
    margin: 0.04em 0 0 0.08em;
    overflow: visible;
    color: var(--blue);
}

.brand-x path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 12;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    transition: background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.site-header.is-scrolled,
.site-header.is-menu-open,
.legal-page .site-header,
.product-page .site-header {
    border-color: rgba(216, 223, 234, 0.78);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 28px rgba(1, 15, 47, 0.04);
    backdrop-filter: blur(16px);
}

.site-header-inner {
    display: flex;
    height: 76px;
    align-items: center;
    gap: 32px;
}

.site-nav {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 30px;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--text);
    font-size: 0.79rem;
    font-weight: 680;
    transition: color 150ms ease;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    height: 1px;
    background: var(--blue);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta {
    display: inline-flex;
    min-height: 42px;
    padding: 0 17px;
    border: 1px solid var(--ink);
    border-radius: var(--radius-s);
    align-items: center;
    justify-content: center;
    font-size: 0.76rem;
    font-weight: 750;
    transition: color 160ms ease, background 160ms ease, transform 180ms var(--ease);
}

.header-cta:hover {
    color: var(--white);
    background: var(--ink);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-button span {
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms var(--ease);
}

.menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.25px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-nav {
    display: none;
}

.button {
    display: inline-flex;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-s);
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.82rem;
    font-weight: 780;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

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

.button-primary {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 14px 30px rgba(26, 52, 253, 0.2);
}

.button-primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 18px 36px rgba(26, 52, 253, 0.24);
}

.button-quiet {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.74);
}

.button-quiet:hover {
    border-color: var(--ink);
}

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

.button-white:hover {
    background: var(--surface);
}

.button-outline-light {
    border-color: rgba(255, 255, 255, 0.34);
    color: var(--white);
}

.button-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    border-bottom: 1px solid var(--line);
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 750;
    transition: color 150ms ease, border-color 150ms ease;
}

.text-link:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.text-link-light {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.text-link-light:hover {
    border-color: var(--white);
    color: var(--white);
}

/* Hero */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 132px 0 76px;
    border-bottom: 1px solid var(--line-soft);
    background: #fbfcff;
}

.hero-glow {
    position: absolute;
    top: -28%;
    right: -8%;
    width: min(70vw, 1060px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 52, 253, 0.09), rgba(26, 52, 253, 0) 67%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    min-height: 690px;
    grid-template-columns: minmax(410px, 0.84fr) minmax(590px, 1.16fr);
    align-items: center;
    gap: clamp(40px, 5vw, 86px);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 610px;
}

.hero-copy h1 {
    max-width: 660px;
    margin-top: 20px;
    font-size: clamp(3.65rem, 5.4vw, 5.8rem);
    font-weight: 620;
    letter-spacing: -0.072em;
    line-height: 0.94;
}

.hero-copy h1 span {
    color: var(--blue);
}

.hero-lead {
    max-width: 590px;
    margin-top: 28px;
    color: var(--text);
    font-size: clamp(1rem, 1.15vw, 1.13rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.72;
}

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

.hero-note {
    display: flex;
    margin-top: 24px;
    align-items: center;
    gap: 9px;
    color: var(--text-soft);
    font-size: 0.72rem;
    font-weight: 650;
    line-height: 1.5;
}

.hero-note > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(22, 138, 70, 0.1);
}

.hero-product {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.hero-product figcaption,
.representation-note {
    margin-top: 14px;
    color: var(--text-soft);
    font-size: 0.65rem;
    font-weight: 650;
    letter-spacing: 0.03em;
    text-align: center;
}

.product-stage {
    position: relative;
    overflow: hidden;
    min-height: 646px;
    border: 1px solid rgba(216, 223, 234, 0.9);
    border-radius: 36px;
    background: #eaf0fb;
    box-shadow: 0 34px 100px rgba(1, 15, 47, 0.13);
    isolation: isolate;
}

.product-stage::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(233,237,255,0.42) 42%, rgba(1,15,47,0.06));
    content: "";
    z-index: -2;
}

.product-stage::after {
    position: absolute;
    z-index: 0;
    top: -22%;
    right: -18%;
    width: 72%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 74, 255, 0.2), rgba(0, 184, 212, 0.06) 44%, transparent 70%);
    content: "";
    filter: blur(12px);
    opacity: 0.62;
    pointer-events: none;
}

.stage-grid {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: linear-gradient(rgba(1, 15, 47, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(1, 15, 47, 0.05) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 84%);
    z-index: -1;
}

.device-frame {
    position: absolute;
    z-index: 1;
    overflow: hidden;
    width: 276px;
    padding: 9px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 38px;
    background: var(--ink);
    box-shadow: 0 28px 70px rgba(1, 15, 47, 0.27);
    transition: left 820ms var(--ease-out), box-shadow 520ms ease;
}

.product-stage.is-demo-merging .device-frame {
    box-shadow: 0 30px 84px rgba(26, 52, 253, 0.3);
}

.device-main {
    top: 24px;
    left: 63%;
    height: 548px;
    transform: translateX(-50%);
}

.device-frame::before {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 50%;
    width: 82px;
    height: 22px;
    border-radius: 20px;
    background: var(--ink);
    content: "";
    transform: translateX(-50%);
}

.device-screen {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 30px;
    background: #f7f9fd;
    transform: translate3d(0, 0, 0) scale(1);
    transform-origin: 50% 50%;
    transition: transform 700ms var(--ease-out), transform-origin 700ms var(--ease-out);
    will-change: transform;
}

.device-status {
    display: flex;
    height: 42px;
    padding: 0 18px;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.device-system-status,
.system-signal {
    display: inline-flex;
    align-items: flex-end;
}

.device-system-status {
    gap: 5px;
}

.system-signal {
    height: 8px;
    gap: 1px;
}

.system-signal b {
    width: 2px;
    border-radius: 2px;
    background: currentColor;
}

.system-signal b:nth-child(1) { height: 3px; }
.system-signal b:nth-child(2) { height: 5px; }
.system-signal b:nth-child(3) { height: 7px; }

.system-wifi {
    position: relative;
    width: 9px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-radius: 50%;
}

.system-wifi::before,
.system-wifi::after {
    position: absolute;
    left: 50%;
    border-radius: 50%;
    background: currentColor;
    content: "";
    transform: translateX(-50%);
}

.system-wifi::before { top: 2px; width: 5px; height: 2px; }
.system-wifi::after { top: 5px; width: 2px; height: 2px; }

.system-battery {
    position: relative;
    width: 12px;
    height: 7px;
    border: 1px solid currentColor;
    border-radius: 2px;
}

.system-battery::before {
    position: absolute;
    inset: 1px;
    border-radius: 1px;
    background: currentColor;
    content: "";
}

.system-battery::after {
    position: absolute;
    top: 2px;
    right: -3px;
    width: 2px;
    height: 3px;
    border-radius: 0 1px 1px 0;
    background: currentColor;
    content: "";
}

.zync-home-header {
    display: grid;
    padding: 4px 14px 11px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 9px;
}

.zync-profile-avatar {
    display: inline-flex;
    width: 39px;
    height: 39px;
    border: 2px solid #dce5ff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(145deg, #243869, #f09a69);
    box-shadow: 0 5px 14px rgba(1, 15, 47, 0.12);
    font-size: 0.66rem;
    font-weight: 800;
}

.zync-home-header p {
    color: #586780;
    font-size: 0.52rem;
    font-weight: 650;
}

.zync-home-header strong {
    display: block;
    margin-top: 1px;
    color: #111522;
    font-size: 0.86rem;
    letter-spacing: -0.035em;
}

.zync-notification {
    position: relative;
    display: inline-flex;
    width: 31px;
    height: 31px;
    align-items: center;
    justify-content: center;
    color: #121722;
    font-size: 1.08rem;
    font-weight: 800;
}

.zync-notification b {
    position: absolute;
    top: -3px;
    right: -2px;
    display: inline-flex;
    width: 15px;
    height: 15px;
    border: 2px solid #f7f9fd;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--blue);
    font-size: 0.4rem;
}

.zync-circles-rail {
    padding: 0 14px;
}

.zync-section-row {
    display: flex;
    margin-bottom: 8px;
    align-items: center;
    justify-content: space-between;
}

.zync-section-row strong {
    color: #171b25;
    font-size: 0.68rem;
    letter-spacing: -0.02em;
}

.zync-section-row span {
    color: var(--blue);
    font-size: 0.5rem;
    font-weight: 800;
}

.zync-circle-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.zync-circle-list > div {
    min-width: 0;
    text-align: center;
}

.zync-circle-logo {
    position: relative;
    display: inline-flex;
    width: 42px;
    height: 42px;
    border: 2px solid #dce4ff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(145deg, #f14d43, #7d0810);
    font-size: 0.51rem;
    font-weight: 850;
    box-shadow: 0 5px 13px rgba(1, 15, 47, 0.11);
}

.zync-circle-logo.badminton { background: linear-gradient(145deg, #6d4cc5, #253689); }
.zync-circle-logo.volleyball { background: linear-gradient(145deg, #65b97a, #11718a); }
.zync-circle-logo.football { background: linear-gradient(145deg, #ff9a29, #c63f22); }

.zync-circle-logo > .mx-icon {
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.08rem;
}

.zync-online-dot {
    position: absolute;
    top: 0;
    right: -2px;
    width: 9px;
    height: 9px;
    border: 2px solid #f7f9fd;
    border-radius: 50%;
    background: #24c96b;
}

.zync-circle-list small {
    display: block;
    overflow: hidden;
    margin-top: 4px;
    color: #526078;
    font-size: 0.42rem;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zync-live-match {
    margin: 13px 14px 0;
    padding: 12px;
    border-radius: 17px;
    color: var(--white);
    background: radial-gradient(circle at 20% 20%, rgba(36, 58, 202, 0.72), transparent 46%), linear-gradient(135deg, #071c68, #001033 74%);
    box-shadow: 0 12px 26px rgba(0, 25, 93, 0.22);
}

.zync-live-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 7px;
    font-size: 0.45rem;
}

.zync-live-top > strong {
    color: #d8d8ff;
    font-size: 0.49rem;
}

.zync-live-top > span:last-child {
    padding: 3px 7px;
    border: 1px solid rgba(193, 203, 255, 0.3);
    border-radius: 999px;
    color: #eef1ff;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 750;
}

.zync-live-pill {
    display: inline-flex;
    padding: 4px 7px;
    border-radius: 999px;
    align-items: center;
    background: #ff4d59;
    font-size: 0.43rem;
    font-weight: 800;
    gap: 4px;
}

.zync-live-pill .mx-icon {
    font-size: 0.56rem;
    animation: zyncBroadcastPulse 2.4s ease-in-out infinite;
}

.zync-live-top strong .mx-icon { margin-right: 2px; font-size: 0.58rem; }

.zync-live-match > p {
    margin-top: 8px;
    color: #aebbec;
    font-size: 0.48rem;
    font-weight: 700;
}

.zync-score-board {
    display: grid;
    margin-top: 7px;
    padding: 8px 9px;
    border: 1px solid rgba(207, 216, 255, 0.16);
    border-radius: 12px;
    background: rgba(0, 9, 35, 0.42);
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 7px;
}

.zync-score-board > div:last-child { text-align: right; }

.zync-score-board strong,
.zync-score-board small {
    display: block;
}

.zync-score-board strong { font-size: 0.46rem; }
.zync-score-board small { margin-top: 2px; color: #bac5e8; font-size: 0.39rem; }

.zync-score-board > b {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    font-size: 0.86rem;
    letter-spacing: -0.04em;
}

.zync-score-board > b small {
    margin: 0 0 1px;
    color: #c88aff;
    font-size: 0.37rem;
    letter-spacing: 0;
}

.zync-match-meta {
    display: flex;
    margin-top: 7px;
    justify-content: space-between;
    color: #bdc7e6;
    font-size: 0.4rem;
    font-weight: 650;
}

.zync-match-meta span,
.zync-rsvp-meta span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.zync-match-meta .mx-icon,
.zync-rsvp-meta .mx-icon {
    font-size: 0.53rem;
}

.zync-rsvp-card {
    margin: 9px 14px 0;
    padding: 11px 12px;
    border: 1px solid #e7ebf3;
    border-radius: 17px;
    background: #eef2f8;
}

.zync-rsvp-head,
.zync-rsvp-meta,
.zync-rsvp-actions {
    display: flex;
    align-items: center;
}

.zync-rsvp-head { justify-content: space-between; }

.zync-rsvp-head strong,
.zync-rsvp-head span { display: block; }
.zync-rsvp-head strong { color: #191d27; font-size: 0.57rem; }
.zync-rsvp-head span { margin-top: 2px; color: var(--blue); font-size: 0.43rem; font-weight: 750; }
.zync-rsvp-head > b { color: var(--blue); font-size: 0.53rem; }

.zync-rsvp-meta {
    margin-top: 7px;
    gap: 8px;
    color: #596983;
    font-size: 0.4rem;
    font-weight: 650;
}

.zync-rsvp-meta em {
    margin-left: auto;
    padding: 3px 6px;
    border: 1px solid #ffc965;
    border-radius: 999px;
    color: #ef9300;
    font-style: normal;
}

.zync-rsvp-actions {
    margin-top: 9px;
    gap: 5px;
}

.zync-rsvp-actions span {
    display: inline-flex;
    min-width: 0;
    height: 25px;
    border: 1px solid currentColor;
    border-radius: 999px;
    flex: 1;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.38);
    font-size: 0.41rem;
    font-weight: 750;
    gap: 3px;
}

.zync-rsvp-actions .mx-icon { font-size: 0.51rem; }

.zync-rsvp-actions .in { color: #10a954; }
.zync-rsvp-actions .out { color: #ed5960; }
.zync-rsvp-actions .maybe { color: #e99b08; }

.demo-projection-stack {
    position: absolute;
    z-index: 4;
    inset: 0;
    pointer-events: none;
}

.demo-projection {
    position: absolute;
    right: 20px;
    width: 226px;
    padding: 17px;
    border: 1px solid rgba(196, 207, 228, 0.94);
    border-radius: 20px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 62px rgba(1, 15, 47, 0.17), 0 0 0 1px rgba(255, 255, 255, 0.55) inset;
    opacity: 0;
    transform: translate3d(-28px, 0, 0) scale(0.84);
    transform-origin: left center;
    backdrop-filter: blur(18px);
}

.demo-projection::before {
    position: absolute;
    top: 50%;
    left: -30px;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, rgba(26, 52, 253, 0.08), rgba(26, 52, 253, 0.72));
    content: "";
}

.projection-hub { top: 92px; }
.projection-calendar { top: 205px; }
.projection-live { top: 155px; }
.projection-score-update { top: 188px; }
.projection-rsvp { top: 300px; }
.projection-community { top: 96px; }
.projection-ledger { top: 346px; }
.projection-family { top: 292px; }

.projection-live,
.projection-score-update,
.projection-community {
    right: auto;
    left: 20px;
    transform: translate3d(28px, 0, 0) scale(0.84);
    transform-origin: right center;
}

.projection-live::before,
.projection-score-update::before,
.projection-community::before {
    right: -30px;
    left: auto;
    background: linear-gradient(90deg, rgba(26, 52, 253, 0.72), rgba(26, 52, 253, 0.08));
}

.projection-kicker {
    display: flex;
    align-items: center;
    color: var(--blue);
    font-size: 0.52rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    gap: 6px;
}

.projection-kicker .mx-icon { font-size: 0.66rem; }

.projection-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--live);
    box-shadow: 0 0 0 4px rgba(255, 77, 89, 0.12);
}

.projection-match-head,
.projection-title-row,
.projection-money,
.projection-meta,
.projection-event-meta,
.projection-chat-head,
.projection-message,
.projection-sync {
    display: flex;
    align-items: center;
}

.projection-match-head {
    margin-top: 13px;
    justify-content: space-between;
}

.projection-match-head strong,
.projection-title-row strong,
.projection-chat-head strong {
    font-size: 0.72rem;
}

.projection-match-head span {
    color: var(--text-soft);
    font-size: 0.48rem;
    font-weight: 750;
}

.projection-score {
    display: grid;
    margin-top: 10px;
    padding: 11px 10px;
    border-radius: 13px;
    color: var(--white);
    background: linear-gradient(145deg, #071c68, #001033);
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 6px;
}

.projection-score > div:last-child { text-align: right; }
.projection-score strong,
.projection-score small,
.projection-score b { display: block; }
.projection-score strong { font-size: 0.47rem; }
.projection-score small { margin-top: 2px; color: #b9c5e8; font-size: 0.38rem; }
.projection-score b { color: var(--white); font-size: 1rem; text-align: center; }
.projection-score b small { color: #c88aff; font-size: 0.36rem; font-weight: 700; }

.projection-meta,
.projection-event-meta {
    margin-top: 9px;
    justify-content: space-between;
    color: var(--text-soft);
    font-size: 0.43rem;
    font-weight: 700;
}

.projection-score-moment {
    margin-top: 13px;
    padding: 15px;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, #1a34fd, #6c43e0);
}

.projection-score-moment span,
.projection-score-moment strong,
.projection-score-moment small { display: block; }
.projection-score-moment span { color: #dbe2ff; font-size: 0.45rem; font-weight: 750; }
.projection-score-moment strong { margin-top: 4px; font-size: 1.5rem; letter-spacing: -0.04em; }
.projection-score-moment small { margin-top: 2px; color: #e4e8ff; font-size: 0.43rem; }

.projection-sync {
    margin-top: 10px;
    color: #168a46;
    font-size: 0.46rem;
    font-weight: 800;
    gap: 5px;
}

.projection-title-row {
    margin-top: 14px;
    justify-content: space-between;
    gap: 12px;
}

.projection-title-row small,
.projection-chat-head small {
    display: block;
    margin-top: 2px;
    color: var(--text-soft);
    font-size: 0.43rem;
    font-weight: 700;
}

.projection-title-row em {
    padding: 4px 7px;
    border-radius: 999px;
    color: #168a46;
    background: rgba(34, 197, 94, 0.11);
    font-size: 0.43rem;
    font-style: normal;
    font-weight: 850;
}

.projection-rsvp-actions {
    display: grid;
    margin-top: 12px;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.projection-rsvp-actions span {
    display: flex;
    min-height: 27px;
    border: 1px solid var(--line);
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    font-size: 0.43rem;
    font-weight: 750;
    gap: 3px;
}

.projection-rsvp-actions .selected {
    border-color: #22c55e;
    color: var(--white);
    background: #22c55e;
}

.projection-chat-head {
    margin-top: 13px;
    gap: 9px;
}

.projection-avatar,
.projection-message > span {
    display: inline-flex;
    border-radius: 11px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(145deg, #6d4cc5, #253689);
    font-weight: 850;
}

.projection-avatar { width: 34px; height: 34px; font-size: 0.58rem; }

.projection-message {
    margin-top: 11px;
    padding: 9px;
    border-radius: 13px;
    background: #f0f3f9;
    gap: 8px;
}

.projection-message > span { width: 25px; height: 25px; font-size: 0.42rem; }
.projection-message strong,
.projection-message small { display: block; }
.projection-message strong { font-size: 0.52rem; }
.projection-message small { margin-top: 2px; color: var(--text-soft); font-size: 0.4rem; }

.projection-money {
    margin-top: 17px;
    align-items: baseline;
    justify-content: space-between;
}

.projection-money strong { font-size: 1.35rem; letter-spacing: -0.04em; }
.projection-money span { color: var(--text-soft); font-size: 0.43rem; font-weight: 750; }

.projection-progress {
    overflow: hidden;
    height: 6px;
    margin-top: 9px;
    border-radius: 999px;
    background: var(--surface-high);
}

.projection-progress span {
    display: block;
    width: 75%;
    height: 100%;
    border-radius: inherit;
    background: var(--blue);
}

.projection-hub-counts {
    display: grid;
    margin-top: 14px;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.projection-hub-counts span {
    padding: 9px 4px;
    border-radius: 11px;
    color: var(--text-soft);
    background: var(--surface);
    font-size: 0.38rem;
    font-weight: 750;
    text-align: center;
}

.projection-hub-counts b {
    display: block;
    margin-bottom: 2px;
    color: var(--ink);
    font-size: 0.7rem;
}

.projection-week {
    display: grid;
    margin-top: 14px;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}

.projection-week span {
    display: flex;
    min-height: 43px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-soft);
    background: var(--surface);
    gap: 3px;
}

.projection-week small { font-size: 0.36rem; font-weight: 750; }
.projection-week b { color: var(--ink); font-size: 0.52rem; }
.projection-week .selected { color: var(--white); background: var(--blue); }
.projection-week .selected b { color: var(--white); }

.projection-family-row {
    display: flex;
    margin-top: 15px;
    align-items: center;
}

.projection-family-row > span {
    display: inline-flex;
    width: 29px;
    height: 29px;
    margin-right: -7px;
    border: 2px solid var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--blue);
    font-size: 0.44rem;
    font-weight: 850;
}

.projection-family-row > span:nth-child(2) { background: #168a75; }
.projection-family-row > span:nth-child(3) { background: #6d4cc5; }
.projection-family-row > span:nth-child(4) { background: var(--orange); }
.projection-family-row p { margin-left: 16px; }
.projection-family-row strong,
.projection-family-row small { display: block; }
.projection-family-row strong { font-size: 0.54rem; }
.projection-family-row small { margin-top: 2px; color: var(--text-soft); font-size: 0.4rem; }

.zync-phone-surface {
    position: absolute;
    top: 42px;
    right: 0;
    bottom: 61px;
    left: 0;
    overflow: hidden;
    background: #f7f9fd;
    transform: translate3d(102%, 0, 0);
    visibility: hidden;
    will-change: transform;
}

.zync-scene-page {
    padding: 0 14px 12px;
}

.zync-phone-surface.is-phone-page-active {
    z-index: 2;
    transform: translate3d(0, 0, 0);
    visibility: visible;
}

.zync-phone-surface.is-phone-page-entering-forward,
.zync-phone-surface.is-phone-page-exiting-forward,
.zync-phone-surface.is-phone-page-entering-back,
.zync-phone-surface.is-phone-page-exiting-back {
    visibility: visible;
}

.zync-phone-surface.is-phone-page-entering-forward {
    z-index: 4;
    animation: zyncPhonePagePushIn 660ms cubic-bezier(0.22, 0.78, 0.2, 1) both;
}

.zync-phone-surface.is-phone-page-exiting-forward {
    z-index: 3;
    animation: zyncPhonePagePushUnder 660ms cubic-bezier(0.22, 0.78, 0.2, 1) both;
}

.zync-phone-surface.is-phone-page-entering-back {
    z-index: 3;
    animation: zyncPhonePageReturnUnder 660ms cubic-bezier(0.22, 0.78, 0.2, 1) both;
}

.zync-phone-surface.is-phone-page-exiting-back {
    z-index: 4;
    animation: zyncPhonePagePopOut 660ms cubic-bezier(0.22, 0.78, 0.2, 1) both;
}

@keyframes zyncPhonePagePushIn {
    from { transform: translate3d(102%, 0, 0); box-shadow: -18px 0 34px rgba(1, 15, 47, 0.2); }
    to { transform: translate3d(0, 0, 0); box-shadow: -5px 0 15px rgba(1, 15, 47, 0.08); }
}

@keyframes zyncPhonePagePushUnder {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(-18%, 0, 0) scale(0.985); }
}

@keyframes zyncPhonePageReturnUnder {
    from { transform: translate3d(-18%, 0, 0) scale(0.985); }
    to { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes zyncPhonePagePopOut {
    from { transform: translate3d(0, 0, 0); box-shadow: -5px 0 15px rgba(1, 15, 47, 0.08); }
    to { transform: translate3d(102%, 0, 0); box-shadow: -18px 0 34px rgba(1, 15, 47, 0.18); }
}

.scene-page-header {
    display: grid;
    height: 53px;
    grid-template-columns: 28px 1fr 28px;
    align-items: center;
    text-align: center;
}

.scene-page-header small,
.scene-page-header strong { display: block; }
.scene-page-header small { color: var(--text-soft); font-size: 0.4rem; font-weight: 700; }
.scene-page-header strong { margin-top: 1px; color: var(--ink); font-size: 0.68rem; }
.scene-back { color: var(--ink); font-size: 1rem; text-align: left; }
.scene-more { color: var(--text-soft); font-size: 0.58rem; letter-spacing: 0.08em; }
.scene-add { display: inline-flex; width: 25px; height: 25px; border-radius: 8px; align-items: center; justify-content: center; color: var(--white); background: var(--blue); font-size: 0.8rem; }

.scene-hub-hero {
    padding: 14px;
    border-radius: 16px;
    color: var(--white);
    background: radial-gradient(circle at 80% 0, rgba(109, 76, 197, 0.8), transparent 42%), linear-gradient(135deg, #071c68, #001033);
}

.scene-hub-hero span,
.scene-hub-hero strong,
.scene-hub-hero small { display: block; }
.scene-hub-hero span { color: #cdd6ff; font-size: 0.42rem; font-weight: 750; }
.scene-hub-hero strong { margin-top: 12px; font-size: 0.78rem; }
.scene-hub-hero small { margin-top: 3px; color: #bdc7e6; font-size: 0.42rem; }

.scene-hub-stats {
    display: grid;
    margin-top: 9px;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.scene-hub-stats div {
    padding: 9px 4px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--white);
    text-align: center;
}

.scene-hub-stats strong,
.scene-hub-stats small { display: block; }
.scene-hub-stats strong { color: var(--ink); font-size: 0.72rem; }
.scene-hub-stats small { margin-top: 2px; color: var(--text-soft); font-size: 0.38rem; }

.scene-page-section-title {
    display: flex;
    margin: 14px 1px 7px;
    align-items: center;
    justify-content: space-between;
}

.scene-page-section-title strong { color: var(--ink); font-size: 0.57rem; }
.scene-page-section-title span { color: var(--blue); font-size: 0.4rem; font-weight: 800; }

.scene-run-sheet,
.scene-agenda,
.scene-wallet-list,
.scene-family-list {
    display: grid;
    gap: 6px;
}

.scene-run-sheet > div,
.scene-agenda > div,
.scene-wallet-list > div,
.scene-family-list > div {
    display: flex;
    min-height: 48px;
    padding: 8px 9px;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    align-items: center;
    background: var(--white);
    gap: 8px;
}

.scene-run-sheet > div > span { color: var(--blue); font-size: 0.42rem; font-weight: 850; }
.scene-run-sheet p,
.scene-agenda p,
.scene-wallet-list p,
.scene-family-list p { min-width: 0; flex: 1; }
.scene-run-sheet strong,
.scene-run-sheet small,
.scene-agenda strong,
.scene-agenda small,
.scene-wallet-list strong,
.scene-wallet-list small,
.scene-family-list strong,
.scene-family-list small { display: block; }
.scene-run-sheet strong,
.scene-agenda strong,
.scene-wallet-list strong,
.scene-family-list strong { color: var(--ink); font-size: 0.49rem; }
.scene-run-sheet small,
.scene-agenda small,
.scene-wallet-list small,
.scene-family-list small { margin-top: 2px; color: var(--text-soft); font-size: 0.37rem; }
.scene-run-sheet .mx-icon { color: #22c55e; font-size: 0.62rem; }

.scene-calendar-tabs,
.scene-wallet-filters {
    display: grid;
    padding: 3px;
    border-radius: 10px;
    background: var(--surface-high);
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.scene-calendar-tabs span,
.scene-wallet-filters span {
    display: flex;
    min-height: 25px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    font-size: 0.4rem;
    font-weight: 800;
}

.scene-calendar-tabs .active,
.scene-wallet-filters .active { color: var(--blue); background: var(--white); box-shadow: 0 3px 9px rgba(1, 15, 47, 0.08); }

.scene-calendar-month {
    margin-top: 9px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
}

.scene-calendar-month > div:first-child { display: flex; align-items: center; justify-content: space-between; }
.scene-calendar-month > div:first-child strong { font-size: 0.56rem; }
.scene-calendar-month > div:first-child span { color: var(--blue); font-size: 0.39rem; font-weight: 800; }
.scene-calendar-week { display: grid; margin-top: 10px; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.scene-calendar-week > span { position: relative; display: flex; min-height: 43px; border-radius: 10px; align-items: center; justify-content: center; flex-direction: column; color: var(--text-soft); gap: 3px; }
.scene-calendar-week small { font-size: 0.34rem; font-weight: 750; }
.scene-calendar-week b { color: var(--ink); font-size: 0.49rem; }
.scene-calendar-week .selected { color: var(--white); background: var(--blue); }
.scene-calendar-week .selected b { color: var(--white); }
.scene-calendar-week i { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }

.scene-agenda .sport,
.scene-wallet-list > div > span,
.scene-family-list > div > span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: #6d4cc5;
    font-size: 0.56rem;
    font-weight: 850;
}

.scene-agenda .sport.football { background: var(--orange); }
.scene-agenda em,
.scene-family-list em { padding: 3px 6px; border-radius: 999px; color: #168a46; background: rgba(34, 197, 94, 0.1); font-size: 0.36rem; font-style: normal; font-weight: 850; }

.scene-wallet-card {
    padding: 14px;
    border-radius: 17px;
    color: var(--white);
    background: linear-gradient(135deg, #1a34fd, #5336c8);
}

.scene-wallet-card > small,
.scene-wallet-card > strong,
.scene-wallet-card > span { display: block; }
.scene-wallet-card > small { color: #dbe2ff; font-size: 0.4rem; }
.scene-wallet-card > strong { margin-top: 4px; font-size: 1.32rem; letter-spacing: -0.04em; }
.scene-wallet-card > span { color: #dbe2ff; font-size: 0.38rem; }
.scene-wallet-card > div { display: grid; margin-top: 12px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.2); grid-template-columns: 1fr 1fr; }
.scene-wallet-card p:last-child { text-align: right; }
.scene-wallet-card b,
.scene-wallet-card p small { display: block; }
.scene-wallet-card b { font-size: 0.56rem; }
.scene-wallet-card p small { margin-top: 2px; color: #dbe2ff; font-size: 0.35rem; }
.scene-wallet-filters { margin-top: 9px; }
.scene-wallet-list > div > span { color: var(--blue); background: #edf0ff; }
.scene-wallet-list em { color: #168a46; font-size: 0.43rem; font-style: normal; font-weight: 850; }
.scene-wallet-list em.owe { color: #ed5960; }

.scene-family-summary {
    display: flex;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 15px;
    align-items: center;
    background: var(--white);
    gap: 10px;
}

.scene-family-summary > span { display: inline-flex; width: 36px; height: 36px; border-radius: 12px; align-items: center; justify-content: center; color: var(--blue); background: #edf0ff; }
.scene-family-summary strong,
.scene-family-summary small { display: block; }
.scene-family-summary strong { font-size: 0.59rem; }
.scene-family-summary small { margin-top: 2px; color: var(--text-soft); font-size: 0.4rem; }
.scene-family-pills { display: flex; margin-top: 8px; gap: 4px; }
.scene-family-pills span { padding: 4px 6px; border-radius: 999px; color: var(--blue); background: #edf0ff; font-size: 0.35rem; font-weight: 800; }
.scene-family-list { gap: 5px; }
.scene-family-list > div { min-height: 43px; padding-block: 6px; }
.scene-family-list > div > span { border-radius: 50%; background: #6d4cc5; }
.scene-family-list > div > span.elizabeth { background: linear-gradient(145deg, #243869, #f09a69); }
.scene-family-list > div:nth-child(2) > span { background: #168a75; }
.scene-family-list > div:nth-child(4) > span { background: var(--orange); }
.scene-family-list i { color: var(--text-soft); font-size: 0.7rem; font-style: normal; }
.scene-family-list em.pending { color: #ef9300; background: rgba(255, 174, 42, 0.12); }

.product-stage:is([data-demo-scene="hub"], [data-demo-scene="calendar"], [data-demo-scene="ledger"], [data-demo-scene="family"]) .app-dock .active {
    color: var(--text-soft);
}

.product-stage:is([data-demo-scene="hub"], [data-demo-scene="calendar"], [data-demo-scene="ledger"]) .app-dock span:nth-child(3),
.product-stage[data-demo-scene="family"] .app-dock span:nth-child(5) {
    color: var(--blue);
}

.app-header {
    display: flex;
    padding: 8px 16px 13px;
    align-items: center;
    justify-content: space-between;
}

.app-header p,
.app-circle-head p,
.attendance-card p {
    color: var(--text-soft);
    font-size: 0.52rem;
    font-weight: 650;
}

.app-header strong {
    display: block;
    margin-top: 2px;
    font-size: 0.9rem;
    letter-spacing: -0.03em;
}

.avatar,
.avatar-stack span {
    display: inline-flex;
    width: 31px;
    height: 31px;
    border: 2px solid var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--blue);
    font-size: 0.48rem;
    font-style: normal;
    font-weight: 800;
}

.avatar.green,
.avatar-stack span:nth-child(2) {
    background: #168a75;
}

.avatar-stack span:nth-child(3) {
    background: var(--orange);
}

.avatar-stack span:nth-child(4) {
    color: var(--ink);
    background: var(--surface-high);
}

.app-circle-card,
.event-card,
.attendance-card {
    margin: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    background: var(--white);
}

.app-circle-card {
    padding: 13px;
}

.app-circle-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 9px;
}

.circle-mark {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--blue);
    font-size: 0.54rem;
    font-weight: 800;
}

.circle-mark.mint {
    background: #168a75;
}

.circle-mark.orange {
    background: var(--orange);
}

.app-circle-head strong {
    display: block;
    margin-top: 1px;
    font-size: 0.7rem;
    letter-spacing: -0.02em;
}

.circle-stats {
    display: flex;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--line-soft);
    gap: 18px;
    color: var(--text-soft);
    font-size: 0.5rem;
}

.circle-stats b {
    color: var(--ink);
}

.app-section-title {
    display: flex;
    padding: 17px 16px 9px;
    align-items: center;
    justify-content: space-between;
    font-size: 0.61rem;
}

.app-section-title span {
    color: var(--blue);
    font-size: 0.49rem;
    font-weight: 750;
}

.event-card {
    display: grid;
    padding: 11px;
    grid-template-columns: 43px 1fr;
    align-items: center;
    gap: 10px;
}

.date-tile {
    display: flex;
    height: 48px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    background: var(--ink);
}

.date-tile b {
    font-size: 0.9rem;
    line-height: 1;
}

.date-tile span {
    margin-top: 2px;
    font-size: 0.42rem;
    text-transform: uppercase;
}

.event-copy {
    min-width: 0;
}

.event-copy strong {
    display: block;
    margin-top: 5px;
    font-size: 0.66rem;
}

.event-copy p {
    margin-top: 2px;
    overflow: hidden;
    color: var(--text-soft);
    font-size: 0.46rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.status {
    display: inline-flex;
    width: max-content;
    min-height: 19px;
    padding: 0 7px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    font-size: 0.43rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.status-confirmed {
    color: #0b6a38;
    background: #e4f7eb;
}

.status-live {
    color: var(--live);
    background: #ffe8eb;
}

.status-live::before {
    width: 5px;
    height: 5px;
    margin-right: 5px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.attendance-card {
    display: flex;
    margin-top: 9px;
    padding: 12px;
    align-items: center;
    justify-content: space-between;
}

.attendance-card strong {
    display: block;
    margin-top: 3px;
    font-size: 0.57rem;
}

.avatar-stack {
    display: flex;
    padding-left: 10px;
}

.avatar-stack span {
    width: 25px;
    height: 25px;
    margin-left: -8px;
    font-size: 0.4rem;
}

.app-dock {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 61px;
    border-top: 1px solid var(--line);
    background: var(--white);
    grid-template-columns: repeat(5, 1fr);
}

.app-dock span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 700;
    gap: 2px;
}

.app-dock .mx-icon {
    font-size: 0.88rem;
    transition: transform 220ms var(--ease-out);
}

.app-dock span.active .mx-icon {
    transform: translateY(-1px) scale(1.06);
}

.app-dock span.active {
    color: var(--blue);
}

.app-dock small {
    font-size: 0.4rem;
    font-weight: 750;
}

.floating-card {
    position: absolute;
    z-index: 3;
    width: 246px;
    padding: 18px;
    border: 1px solid rgba(216, 223, 234, 0.9);
    border-radius: var(--radius-l);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    transition: opacity 240ms ease;
    will-change: transform;
}

.product-stage.has-demo-merged .floating-card {
    animation: none !important;
    opacity: 0;
    pointer-events: none;
}

.product-stage.has-demo-merged.is-demo-complete .floating-card {
    animation: zyncCardReturn 620ms var(--ease-out) both !important;
    filter: none;
    opacity: 1;
}

.product-stage.is-demo-complete .event-context-card { animation-delay: 260ms !important; }
.product-stage.is-demo-complete .chat-context-card { animation-delay: 320ms !important; }
.product-stage.is-demo-complete .live-card { animation-delay: 380ms !important; }
.product-stage.is-demo-complete .family-context-card { animation-delay: 440ms !important; }
.product-stage.is-demo-complete .cost-context-card { animation-delay: 500ms !important; }
.product-stage.is-demo-complete :is(.poll-card, .product-page-card) { animation-delay: 560ms !important; }

.product-stage.is-demo-merging .floating-card {
    animation: none !important;
    opacity: 0;
    filter: blur(1px);
    transform: translate3d(var(--card-merge-x, 0px), var(--card-merge-y, 0px), 0) scale(0.64);
    transition: opacity 680ms ease, filter 680ms ease, transform 780ms var(--ease);
}

.demo-context-card {
    display: grid;
    width: 194px;
    padding: 13px 14px;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
}

.chat-context-card {
    top: 98px;
    right: 20px;
}

.event-context-card {
    top: 28px;
    left: 28px;
}

.family-context-card {
    top: 335px;
    left: 24px;
}

.cost-context-card {
    bottom: 30px;
    left: 42px;
}

.context-card-icon {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--blue);
    font-size: 0.72rem;
    font-weight: 850;
}

.cost-context-card .context-card-icon { background: #168a75; }
.event-context-card .context-card-icon { background: #6d4cc5; }
.family-context-card .context-card-icon { background: var(--orange); }
.context-card-icon .mx-icon { font-size: 0.82rem; }

.demo-context-card strong,
.demo-context-card small {
    display: block;
}

.demo-context-card strong {
    margin-top: 3px;
    font-size: 0.66rem;
}

.demo-context-card small {
    margin-top: 1px;
    color: var(--text-soft);
    font-size: 0.47rem;
    font-weight: 650;
}

.live-card {
    top: 170px;
    left: 26px;
    transform: translate3d(var(--live-card-shift, 0px), var(--live-card-shift-y, 0px), 0);
}

.poll-card {
    right: 24px;
    bottom: 70px;
    transform: translate3d(var(--right-card-shift, 0px), var(--right-card-shift-y, 0px), 0);
}

.ui-row {
    display: flex;
    align-items: center;
}

.ui-row-between {
    justify-content: space-between;
}

.ui-meta {
    color: var(--text-soft);
    font-size: 0.54rem;
    font-weight: 650;
}

.mini-label {
    color: var(--text-soft);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.live-card > .mini-label {
    margin-top: 14px;
}

.score-line {
    display: grid;
    margin-top: 8px;
    grid-template-columns: 1fr auto auto auto 1fr;
    align-items: center;
    gap: 7px;
    font-size: 0.65rem;
}

.score-line strong:last-child {
    text-align: right;
}

.score-line b {
    font-size: 1.28rem;
}

.score-line span {
    color: var(--text-soft);
}

.match-pulse {
    display: flex;
    margin-top: 13px;
    align-items: center;
    gap: 6px;
}

.match-pulse span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--live);
}

.match-pulse i {
    width: 100%;
    height: 1px;
    background: var(--line);
}

.poll-card > strong {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
}

.poll-result {
    display: flex;
    margin-top: 16px;
    align-items: center;
    justify-content: space-between;
    font-size: 0.63rem;
}

.progress-track,
.ledger-progress {
    overflow: hidden;
    height: 6px;
    margin-top: 8px;
    border-radius: 999px;
    background: var(--surface-high);
}

.progress-track span {
    display: block;
    width: 64%;
    height: 100%;
    border-radius: inherit;
    background: var(--blue);
}

.poll-card > .ui-meta {
    display: block;
    margin-top: 9px;
}

.rsvp-mini-actions {
    display: grid;
    margin-top: 14px;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.rsvp-mini-actions span {
    display: inline-flex;
    min-height: 28px;
    border: 1px solid var(--line);
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: var(--surface);
    font-size: 0.48rem;
    font-weight: 750;
    gap: 3px;
}

.rsvp-mini-actions .mx-icon { font-size: 0.6rem; }

.demo-ledger-mini {
    display: none;
    margin-top: 13px;
}

.demo-ledger-mini > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.demo-ledger-mini b { font-size: 1.08rem; }
.demo-ledger-mini span { color: var(--text-soft); font-size: 0.5rem; font-weight: 700; }

.demo-ledger-mini > i {
    display: block;
    overflow: hidden;
    height: 5px;
    margin-top: 8px;
    border-radius: 999px;
    background: var(--surface-high);
}

.demo-ledger-mini > i span {
    display: block;
    width: 75%;
    height: 100%;
    border-radius: inherit;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 620ms var(--ease-out);
}

.product-page-card {
    transform: translate3d(var(--right-card-shift, 0px), var(--right-card-shift-y, 0px), 0);
    transition: opacity 240ms ease, border-color 320ms ease, box-shadow 360ms ease;
}

/* One composed entrance keeps the product presentation calm after it settles. */
.js .hero-product.is-visible .device-main,
.js .product-hero-visual.is-visible .device-main {
    animation: zyncDeviceSettle 760ms var(--ease-out) 80ms both;
}

.js .hero-product.is-visible .live-card,
.js .product-hero-visual.is-visible .live-card {
    animation: zyncCardRevealLeft 620ms var(--ease-out) 260ms both;
}

.js .hero-product.is-visible .poll-card,
.js .product-hero-visual.is-visible .product-page-card {
    animation: zyncCardRevealRight 620ms var(--ease-out) 380ms both;
}

.js .hero-product.is-visible .chat-context-card,
.js .product-hero-visual.is-visible .chat-context-card {
    animation: zyncCardRevealRight 620ms var(--ease-out) 440ms both;
}

.js .hero-product.is-visible .cost-context-card,
.js .product-hero-visual.is-visible .cost-context-card {
    animation: zyncCardRevealLeft 620ms var(--ease-out) 520ms both;
}

.js .hero-product.is-visible .event-context-card,
.js .product-hero-visual.is-visible .event-context-card {
    animation: zyncCardRevealLeft 620ms var(--ease-out) 200ms both;
}

.js .hero-product.is-visible .family-context-card,
.js .product-hero-visual.is-visible .family-context-card {
    animation: zyncCardRevealRight 620ms var(--ease-out) 470ms both;
}

@keyframes zyncDeviceSettle {
    from { opacity: 0; transform: translateX(-50%) translateY(22px) scale(0.985); }
    to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

@keyframes zyncCardRevealLeft {
    from { opacity: 0; transform: translate3d(calc(var(--live-card-shift, 0px) - 42px), calc(var(--live-card-shift-y, 0px) + 10px), 0); }
    to { opacity: 1; transform: translate3d(var(--live-card-shift, 0px), var(--live-card-shift-y, 0px), 0); }
}

@keyframes zyncCardRevealRight {
    from { opacity: 0; transform: translate3d(calc(var(--right-card-shift, 0px) + 42px), calc(var(--right-card-shift-y, 0px) + 10px), 0); }
    to { opacity: 1; transform: translate3d(var(--right-card-shift, 0px), var(--right-card-shift-y, 0px), 0); }
}

@keyframes zyncCardReturn {
    from { opacity: 0; filter: blur(2px); }
    to { opacity: 1; filter: blur(0); }
}

@keyframes zyncBroadcastPulse {
    0%, 100% { opacity: 0.78; }
    50% { opacity: 1; }
}

.zync-live-match,
.zync-rsvp-card,
.zync-home-header,
.zync-circles-rail,
.app-dock,
.zync-circle-logo,
.zync-score-board > b,
.zync-rsvp-actions .in,
.zync-rsvp-meta em,
.zync-notification b {
    transition: opacity 360ms ease, color 280ms ease, background 320ms ease, border-color 320ms ease, box-shadow 360ms ease, transform 420ms var(--ease-out);
}

.product-stage.has-demo-merged:is([data-demo-scene="hub"], [data-demo-scene="calendar"], [data-demo-scene="rsvp"], [data-demo-scene="ledger"], [data-demo-scene="family"]) .device-main {
    left: 41%;
}

.product-stage.has-demo-merged:is([data-demo-scene="live"], [data-demo-scene="score"], [data-demo-scene="community"]) .device-main {
    left: 61%;
}

.product-stage[data-demo-scene="live"] :is(.zync-home-header, .zync-circles-rail, .zync-rsvp-card, .app-dock),
.product-stage[data-demo-scene="score"] :is(.zync-home-header, .zync-circles-rail, .zync-rsvp-card, .app-dock) {
    opacity: 0.38;
}

.product-stage[data-demo-scene="rsvp"] :is(.zync-home-header, .zync-circles-rail, .zync-live-match, .app-dock) {
    opacity: 0.34;
}

.product-stage[data-demo-scene="community"] :is(.zync-live-match, .zync-rsvp-card, .app-dock) {
    opacity: 0.3;
}

.product-stage[data-demo-scene="ledger"] :is(.zync-home-header, .zync-circles-rail, .zync-live-match, .zync-rsvp-card, .app-dock) {
    opacity: 0.28;
}

.product-stage[data-demo-scene="live"] .zync-live-match,
.product-stage[data-demo-scene="score"] .zync-live-match {
    box-shadow: 0 18px 34px rgba(0, 25, 93, 0.3);
    transform: translateY(-2px);
}

.product-stage.is-demo-score-ready[data-demo-scene="score"] .zync-score-board > b {
    color: #ffffff;
    transform: translateY(-2px) scale(1.04);
}

.product-stage.is-demo-score-ready[data-demo-scene="score"] [data-demo-score] {
    display: inline-block;
    animation: zyncScoreCommit 480ms var(--ease-out) both;
}

@keyframes zyncScoreCommit {
    from { opacity: 0.35; transform: translateY(5px) scale(0.94); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.product-stage[data-demo-scene="rsvp"] .zync-rsvp-card {
    border-color: rgba(26, 52, 253, 0.3);
    box-shadow: 0 12px 24px rgba(26, 52, 253, 0.1);
    transform: translateY(-2px);
}

.product-stage[data-demo-scene="rsvp"] .zync-rsvp-actions .in {
    border-color: #22c55e;
    color: #ffffff;
    background: #22c55e;
}

.product-stage[data-demo-scene="rsvp"] .zync-rsvp-meta em {
    border-color: rgba(34, 197, 94, 0.42);
    color: #168a46;
    background: rgba(34, 197, 94, 0.09);
}

.product-stage[data-demo-scene="community"] .zync-circle-logo {
    border-color: rgba(26, 52, 253, 0.42);
    box-shadow: 0 8px 18px rgba(26, 52, 253, 0.18);
    transform: translateY(-2px);
}

.product-stage[data-demo-scene="community"] .zync-notification b {
    box-shadow: 0 0 0 4px rgba(26, 52, 253, 0.12);
}

.product-stage[data-demo-scene="ledger"] .poll-card .rsvp-mini-actions,
.product-stage[data-demo-scene="ledger"] .poll-card > .ui-meta {
    display: none;
}

.product-stage[data-demo-scene="ledger"] .demo-ledger-mini {
    display: block;
}

.product-stage[data-demo-scene="ledger"] .demo-ledger-mini > i span {
    transform: scaleX(1);
}

.product-stage[data-demo-scene="ledger"] .product-page-card {
    border-color: rgba(26, 52, 253, 0.28);
    box-shadow: 0 26px 70px rgba(26, 52, 253, 0.18);
}

.product-stage.is-demo-playing[data-demo-scene="hub"] [data-demo-projection="hub"],
.product-stage.is-demo-playing[data-demo-scene="calendar"] [data-demo-projection="calendar"],
.product-stage.is-demo-playing[data-demo-scene="live"] [data-demo-projection="live"],
.product-stage.is-demo-playing[data-demo-scene="score"] [data-demo-projection="score"],
.product-stage.is-demo-playing[data-demo-scene="rsvp"] [data-demo-projection="rsvp"],
.product-stage.is-demo-playing[data-demo-scene="community"] [data-demo-projection="community"],
.product-stage.is-demo-playing[data-demo-scene="ledger"] [data-demo-projection="ledger"],
.product-stage.is-demo-playing[data-demo-scene="family"] [data-demo-projection="family"] {
    animation: zyncProjectionOut 2.48s var(--ease-out) 380ms both;
}

.product-stage.is-demo-playing[data-demo-scene="live"] [data-demo-projection="live"],
.product-stage.is-demo-playing[data-demo-scene="score"] [data-demo-projection="score"],
.product-stage.is-demo-playing[data-demo-scene="community"] [data-demo-projection="community"] {
    animation-name: zyncProjectionOutLeft;
}

@keyframes zyncProjectionOut {
    0%, 100% { opacity: 0; filter: blur(2px); transform: translate3d(-28px, 0, 0) scale(0.84); }
    18%, 72% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes zyncProjectionOutLeft {
    0%, 100% { opacity: 0; filter: blur(2px); transform: translate3d(28px, 0, 0) scale(0.84); }
    18%, 72% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes zyncProjectionLift {
    0%, 100% { opacity: 0; filter: blur(2px); transform: translate3d(0, 24px, 0) scale(0.92); }
    18%, 72% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
}

/* Product proof */

.proof-section {
    overflow: hidden;
    padding: 132px 0 118px;
    color: var(--white);
    background: var(--ink);
}

.proof-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: end;
    gap: 80px;
}

.proof-intro h2 {
    max-width: 760px;
    margin-top: 16px;
    font-size: clamp(3rem, 5.2vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.proof-intro > p {
    color: #c1cbda;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.75;
}

.proof-window {
    display: grid;
    overflow: hidden;
    min-height: 610px;
    margin-top: 72px;
    border: 1px solid #2c4268;
    border-radius: var(--radius-xl);
    background: #071737;
    grid-template-columns: 230px minmax(500px, 1fr) 270px;
    box-shadow: 0 28px 100px rgba(0, 0, 0, 0.32);
}

.proof-sidebar,
.proof-activity {
    padding: 28px 22px;
}

.proof-sidebar {
    border-right: 1px solid #2c4268;
}

.proof-brand {
    display: flex;
    margin-bottom: 38px;
    align-items: center;
    gap: 10px;
}

.proof-brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.proof-brand strong {
    font-size: 1.03rem;
    letter-spacing: -0.03em;
}

.proof-sidebar .mini-label,
.proof-activity .mini-label,
.proof-main .mini-label {
    color: #8895aa;
}

.proof-sidebar ul {
    display: grid;
    margin-top: 14px;
    gap: 7px;
    list-style: none;
}

.proof-sidebar li {
    display: grid;
    padding: 10px;
    border-radius: 12px;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 9px;
}

.proof-sidebar li.active {
    background: #142a50;
}

.proof-sidebar li strong,
.proof-sidebar li small {
    display: block;
}

.proof-sidebar li strong {
    overflow: hidden;
    font-size: 0.65rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.proof-sidebar li small {
    margin-top: 2px;
    color: #8895aa;
    font-size: 0.5rem;
}

.sidebar-action {
    display: inline-flex;
    min-height: 40px;
    margin-top: 20px;
    align-items: center;
    color: #9aabff;
    font-size: 0.61rem;
    font-weight: 750;
}

.proof-main {
    padding: 38px;
}

.proof-main-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.proof-main-head p {
    color: #9aabff;
    font-size: 0.68rem;
    font-weight: 750;
}

.proof-main-head h3 {
    max-width: 480px;
    margin-top: 7px;
    font-size: clamp(1.7rem, 2.6vw, 2.6rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.proof-feature-grid {
    display: grid;
    min-height: 408px;
    margin-top: 34px;
    grid-template-columns: minmax(270px, 1.2fr) minmax(210px, 0.8fr);
    gap: 14px;
}

.next-event-panel,
.proof-mini-panel {
    border: 1px solid #2c4268;
    border-radius: var(--radius-l);
    background: #0d2045;
}

.next-event-panel {
    display: flex;
    padding: 28px;
    flex-direction: column;
}

.event-date-large {
    display: flex;
    width: 112px;
    height: 132px;
    margin-top: 22px;
    border: 1px solid #2c4268;
    border-radius: var(--radius-m);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #071737;
}

.event-date-large b {
    margin: 5px 0;
    font-size: 2.7rem;
    letter-spacing: -0.06em;
    line-height: 1;
}

.event-date-large span {
    color: #9aabff;
    font-size: 0.57rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.next-event-panel h4 {
    margin-top: 24px;
    font-size: 1.28rem;
    font-weight: 650;
    letter-spacing: -0.03em;
}

.next-event-panel > p:not(.mini-label) {
    margin-top: 7px;
    color: #c1cbda;
    font-size: 0.72rem;
}

.panel-footer {
    display: flex;
    margin-top: auto;
    padding-top: 24px;
    align-items: center;
    justify-content: space-between;
}

.panel-footer strong {
    font-size: 0.65rem;
}

.proof-side-stack {
    display: grid;
    grid-template-rows: 1fr 0.76fr;
    gap: 14px;
}

.proof-mini-panel {
    padding: 24px;
}

.proof-mini-panel > strong {
    display: block;
    margin: 15px 0 19px;
    font-size: 0.93rem;
}

.decision-row {
    display: flex;
    padding: 9px 0;
    border-top: 1px solid #2c4268;
    align-items: center;
    justify-content: space-between;
    color: #c1cbda;
    font-size: 0.65rem;
}

.decision-row b {
    color: var(--white);
}

.accent-panel {
    background: var(--blue);
    border-color: var(--blue);
}

.accent-panel .mini-label {
    color: rgba(255, 255, 255, 0.68);
}

.money-row {
    display: flex;
    margin-top: 20px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.money-row b {
    font-size: 1.45rem;
    letter-spacing: -0.05em;
}

.money-row span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.55rem;
}

.proof-activity {
    border-left: 1px solid #2c4268;
}

.proof-activity ol {
    display: grid;
    margin-top: 22px;
    gap: 0;
    list-style: none;
}

.proof-activity li {
    display: grid;
    padding: 21px 0;
    border-top: 1px solid #2c4268;
    grid-template-columns: auto 1fr;
    gap: 11px;
}

.activity-dot {
    width: 8px;
    height: 8px;
    margin-top: 4px;
    border-radius: 50%;
}

.activity-dot.blue { background: #6f85ff; }
.activity-dot.green { background: #35c7a5; }
.activity-dot.orange { background: #ff9e57; }

.proof-activity strong {
    font-size: 0.65rem;
}

.proof-activity p {
    margin-top: 4px;
    color: #c1cbda;
    font-size: 0.57rem;
    line-height: 1.5;
}

.proof-activity small {
    display: block;
    margin-top: 7px;
    color: #8895aa;
    font-size: 0.5rem;
}

.proof-section .representation-note {
    color: #8895aa;
}

/* Story explorer */

.story-section {
    background: var(--white);
}

.story-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    align-items: end;
    gap: 80px;
}

.story-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -56px;
}

.story-heading h2,
.approach-copy h2,
.company-intro h2,
.closing-card h2,
.product-hero-copy h1,
.product-section-heading h2 {
    font-size: clamp(3rem, 5.25vw, 5.15rem);
    font-weight: 600;
    letter-spacing: -0.067em;
    line-height: 0.98;
}

.story-heading > p:last-child {
    color: var(--text);
    font-size: 0.96rem;
    line-height: 1.75;
}

.story-explorer {
    display: grid;
    min-height: 660px;
    margin-top: 72px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--surface);
    grid-template-columns: 300px minmax(0, 1fr);
}

.story-tabs {
    display: flex;
    padding: 16px;
    border-right: 1px solid var(--line);
    flex-direction: column;
    gap: 4px;
}

.story-tabs button {
    display: grid;
    width: 100%;
    min-height: 122px;
    padding: 20px;
    border: 0;
    border-radius: var(--radius-m);
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto;
    align-content: center;
    text-align: left;
    background: transparent;
    transition: color 160ms ease, background 160ms ease;
}

.story-tabs button:hover {
    background: rgba(233, 237, 255, 0.72);
}

.story-tabs button[aria-selected="true"] {
    color: var(--white);
    background: var(--ink);
}

.story-tabs button > span {
    padding-top: 3px;
    color: var(--blue);
    font-size: 0.62rem;
    font-weight: 800;
}

.story-tabs button[aria-selected="true"] > span {
    color: #9aabff;
}

.story-tabs strong {
    font-size: 1rem;
    letter-spacing: -0.025em;
}

.story-tabs small {
    grid-column: 2;
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 0.66rem;
    font-weight: 600;
}

.story-tabs button[aria-selected="true"] small {
    color: #c1cbda;
}

.story-panels {
    min-width: 0;
}

.story-panel {
    display: grid;
    min-height: 658px;
    padding: clamp(38px, 5vw, 68px);
    grid-template-columns: minmax(250px, 0.75fr) minmax(370px, 1.25fr);
    align-items: center;
    gap: clamp(38px, 5vw, 70px);
}

.js .story-panel:not(.is-active) {
    display: none;
}

.story-copy h3 {
    max-width: 410px;
    margin-top: 15px;
    font-size: clamp(2.2rem, 4vw, 3.65rem);
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 1;
}

.story-copy > p:not(.eyebrow) {
    max-width: 410px;
    margin-top: 22px;
    color: var(--text);
    font-size: 0.89rem;
    line-height: 1.72;
}

.story-copy .text-link {
    margin-top: 24px;
}

.story-visual {
    position: relative;
    min-height: 470px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.visual-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.visual-toolbar strong {
    font-size: 1.18rem;
}

.visual-toolbar span {
    display: inline-flex;
    min-height: 36px;
    padding: 0 12px;
    border-radius: var(--radius-s);
    align-items: center;
    color: var(--white);
    background: var(--blue);
    font-size: 0.62rem;
    font-weight: 750;
}

.calendar-strip {
    display: grid;
    margin-top: 26px;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.calendar-strip > span {
    display: flex;
    min-height: 74px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-s);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: var(--surface);
}

.calendar-strip > span.selected {
    border-color: var(--ink);
    color: var(--white);
    background: var(--ink);
}

.calendar-strip small {
    color: var(--text-soft);
    font-size: 0.55rem;
    font-weight: 700;
}

.calendar-strip .selected small {
    color: #c1cbda;
}

.calendar-strip b {
    font-size: 0.84rem;
}

.schedule-item {
    display: grid;
    margin-top: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
}

.schedule-item.muted {
    background: var(--surface);
}

.time-block {
    display: flex;
    width: 45px;
    height: 48px;
    border-radius: var(--radius-s);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    background: var(--blue);
    font-size: 0.7rem;
    font-weight: 800;
}

.time-block small {
    font-size: 0.42rem;
}

.schedule-item b {
    font-size: 0.74rem;
}

.schedule-item p {
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 0.58rem;
}

.play-visual {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
}

.score-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.score-header p {
    color: #c1cbda;
    font-size: 0.62rem;
}

.score-board {
    display: grid;
    margin: 45px 0 40px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.score-board > div {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 9px;
    text-align: center;
}

.team-badge {
    display: inline-flex;
    width: 58px;
    height: 58px;
    border-radius: 17px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--blue);
    font-size: 1.18rem;
    font-weight: 800;
}

.team-badge.away {
    color: var(--ink);
    background: var(--white);
}

.score-board strong {
    font-size: 0.72rem;
}

.score-board > p {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 11px;
}

.score-board > p b {
    font-size: 2.5rem;
    letter-spacing: -0.06em;
}

.score-board > p span {
    color: #9aabff;
    font-size: 0.6rem;
    font-weight: 750;
}

.match-event {
    display: grid;
    padding: 15px 0;
    border-top: 1px solid #2c4268;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 11px;
}

.match-event > span {
    display: inline-flex;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #142a50;
    font-size: 0.72rem;
}

.match-event b {
    font-size: 0.68rem;
}

.match-event p {
    margin-top: 3px;
    color: #c1cbda;
    font-size: 0.56rem;
}

.connect-visual {
    padding-top: 38px;
}

.chat-row {
    display: grid;
    margin-bottom: 14px;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

.chat-row > div {
    padding: 13px 15px;
    border-radius: 5px var(--radius-m) var(--radius-m) var(--radius-m);
    background: var(--surface);
}

.chat-row b,
.chat-row strong {
    font-size: 0.65rem;
}

.chat-row p {
    margin-top: 4px;
    color: var(--text);
    font-size: 0.66rem;
    line-height: 1.5;
}

.chat-row small {
    display: block;
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 0.48rem;
}

.inline-poll {
    margin: 20px 0 0 40px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
}

.inline-poll > p {
    margin-bottom: 9px;
    font-size: 0.72rem;
    font-weight: 750;
}

.inline-poll > div {
    display: flex;
    padding: 9px 0;
    border-top: 1px solid var(--line-soft);
    align-items: center;
    justify-content: space-between;
    color: var(--text);
    font-size: 0.62rem;
}

.coordinate-visual {
    padding-top: 38px;
}

.ledger-total {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 8px 16px;
}

.ledger-total p {
    grid-column: 1 / -1;
    color: var(--text-soft);
    font-size: 0.65rem;
    font-weight: 700;
}

.ledger-total strong {
    font-size: 2.5rem;
    letter-spacing: -0.06em;
}

.ledger-progress {
    margin: 22px 0 30px;
}

.ledger-progress span {
    display: block;
    width: 75%;
    height: 100%;
    border-radius: inherit;
    background: var(--success);
}

.ledger-row {
    display: grid;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.ledger-row b {
    font-size: 0.68rem;
}

.ledger-row p,
.ledger-row small {
    display: block;
    margin-top: 3px;
    color: var(--text-soft);
    font-size: 0.52rem;
}

.ledger-row > strong {
    color: var(--success);
    font-size: 0.72rem;
    text-align: right;
}

/* Astricx approach and company */

.approach-section {
    color: var(--white);
    background: #071737;
}

.approach-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
    align-items: start;
    gap: clamp(80px, 10vw, 140px);
}

.approach-copy {
    position: sticky;
    top: 120px;
}

.approach-copy h2 {
    margin-top: 17px;
}

.approach-copy > p:not(.eyebrow) {
    max-width: 540px;
    margin-top: 26px;
    color: #c1cbda;
    font-size: 0.94rem;
    line-height: 1.78;
}

.approach-copy .text-link {
    margin-top: 26px;
}

.approach-steps {
    border-top: 1px solid #2c4268;
    list-style: none;
}

.approach-steps li {
    display: grid;
    min-height: 172px;
    padding: 34px 0;
    border-bottom: 1px solid #2c4268;
    grid-template-columns: 54px 1fr;
    align-content: center;
    gap: 20px;
}

.approach-steps li > span {
    padding-top: 5px;
    color: #9aabff;
    font-size: 0.62rem;
    font-weight: 800;
}

.approach-steps h3 {
    font-size: 1.28rem;
    font-weight: 650;
    letter-spacing: -0.035em;
}

.approach-steps p {
    max-width: 470px;
    margin-top: 9px;
    color: #c1cbda;
    font-size: 0.83rem;
    line-height: 1.68;
}

.company-section {
    background: var(--surface);
}

.company-intro {
    max-width: 850px;
    margin-inline: auto;
    text-align: center;
}

.company-intro h2 {
    margin-top: 17px;
}

.company-intro > p:last-child {
    max-width: 700px;
    margin: 25px auto 0;
    color: var(--text);
    font-size: 0.96rem;
    line-height: 1.75;
}

.principle-grid {
    display: grid;
    margin-top: 72px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    grid-template-columns: repeat(3, 1fr);
}

.principle-grid article {
    min-height: 270px;
    padding: 32px;
    border-right: 1px solid var(--line);
}

.principle-grid article:last-child {
    border-right: 0;
}

.principle-grid article > span {
    color: var(--blue);
    font-size: 0.64rem;
    font-weight: 800;
}

.principle-grid h3 {
    max-width: 280px;
    margin-top: 54px;
    font-size: 1.4rem;
    font-weight: 650;
    letter-spacing: -0.04em;
    line-height: 1.18;
}

.principle-grid p {
    margin-top: 14px;
    color: var(--text);
    font-size: 0.82rem;
    line-height: 1.67;
}

.closing-section {
    padding: 32px 0;
    background: var(--surface);
}

.closing-card {
    display: grid;
    min-height: 430px;
    padding: clamp(44px, 7vw, 82px);
    border-radius: var(--radius-xxl);
    color: var(--white);
    background: var(--blue);
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    align-items: end;
    gap: 70px;
}

.closing-card h2 {
    max-width: 760px;
    margin-top: 16px;
}

.closing-card p:not(.eyebrow) {
    max-width: 650px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.7;
}

.closing-actions {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
}

/* Footer */

.site-footer {
    color: var(--white);
    background: var(--ink);
}

.site-footer .brand-wordmark {
    color: var(--white);
}

.footer-main {
    display: grid;
    padding: 76px 0 62px;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.footer-brand > p {
    max-width: 330px;
    margin-top: 17px;
    color: #c1cbda;
    font-size: 0.83rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 0.65fr 0.9fr 1.25fr;
    gap: 34px;
}

.footer-links > div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.footer-links > div > p {
    margin-bottom: 7px;
    color: #8895aa;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-links a,
.footer-office address {
    color: #c1cbda;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 580;
    line-height: 1.65;
}

.footer-links a {
    min-height: 32px;
    transition: color 150ms ease;
}

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

.footer-bottom {
    display: flex;
    min-height: 78px;
    border-top: 1px solid #2c4268;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom > p {
    color: #8895aa;
    font-size: 0.69rem;
    font-weight: 650;
}

.footer-bottom nav {
    display: flex;
    gap: 26px;
}

.footer-bottom nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: #c1cbda;
    font-size: 0.69rem;
    font-weight: 700;
    transition: color 150ms ease;
}

.footer-bottom nav a:hover {
    color: var(--white);
}

/* Progressive reveal */

.js [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Product page */

.product-page-main {
    padding-top: 76px;
}

.product-hero {
    position: relative;
    overflow: hidden;
    padding: 102px 0 112px;
    background: var(--surface);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: minmax(420px, 0.8fr) minmax(580px, 1.2fr);
    align-items: center;
    gap: clamp(56px, 7vw, 106px);
}

.product-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-kicker img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.product-kicker strong {
    font-size: 1rem;
}

.product-hero-copy h1 {
    margin-top: 24px;
    font-size: clamp(3rem, 4.7vw, 4.8rem);
}

.product-hero-copy > p:not(.eyebrow) {
    max-width: 590px;
    margin-top: 26px;
    color: var(--text);
    font-size: 1.04rem;
    line-height: 1.76;
}

.compact-copy {
    display: none;
}

.product-hero-copy .hero-actions {
    margin-top: 30px;
}

.product-hero-visual {
    position: relative;
    min-height: 650px;
}

.product-hero-visual .product-stage {
    min-height: 650px;
}

.product-hero-visual .device-main {
    left: 63%;
}

.product-page-card {
    right: 28px;
    bottom: 72px;
    width: 280px;
}

.product-page-card .money-row {
    color: var(--ink);
}

.product-page-card .money-row span {
    color: var(--text-soft);
}

.product-summary-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.summary-grid article {
    min-height: 170px;
    padding: 34px 28px;
    border-right: 1px solid var(--line);
}

.summary-grid article:last-child {
    border-right: 0;
}

.summary-grid span {
    color: var(--blue);
    font-size: 0.62rem;
    font-weight: 800;
}

.summary-grid h2 {
    margin-top: 24px;
    font-size: 1.1rem;
    font-weight: 650;
}

.summary-grid p {
    margin-top: 8px;
    color: var(--text);
    font-size: 0.74rem;
    line-height: 1.6;
}

.product-workflows {
    background: var(--white);
}

.product-section-heading {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 80px;
}

.product-section-heading h2 {
    margin-top: 16px;
}

.product-section-heading > p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.75;
}

.workflow-list {
    display: grid;
    margin-top: 94px;
    gap: 128px;
}

.workflow-row {
    display: grid;
    grid-template-columns: minmax(330px, 0.72fr) minmax(520px, 1.28fr);
    align-items: center;
    gap: clamp(70px, 10vw, 142px);
    scroll-margin-top: 110px;
}

.workflow-row:nth-child(even) {
    grid-template-columns: minmax(520px, 1.28fr) minmax(330px, 0.72fr);
}

.workflow-row:nth-child(even) .workflow-copy {
    order: 2;
}

.workflow-copy > span {
    color: var(--blue);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.workflow-copy h3 {
    margin-top: 19px;
    font-size: clamp(2.5rem, 4.1vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 1;
}

.workflow-copy > p {
    margin-top: 21px;
    color: var(--text);
    font-size: 0.91rem;
    line-height: 1.74;
}

.workflow-copy ul {
    display: grid;
    margin-top: 24px;
    gap: 10px;
    list-style: none;
}

.workflow-copy li {
    position: relative;
    padding-left: 18px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 650;
}

.workflow-copy li::before {
    position: absolute;
    top: 0.48em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    content: "";
}

.workflow-visual {
    min-height: 520px;
    padding: 54px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--surface);
}

.workflow-visual .story-visual {
    min-height: 410px;
}

.use-cases-section {
    color: var(--white);
    background: var(--ink);
}

.use-cases-heading {
    max-width: 800px;
}

.use-cases-heading h2 {
    margin-top: 16px;
    font-size: clamp(3rem, 5.4vw, 5.2rem);
    font-weight: 600;
    letter-spacing: -0.066em;
    line-height: 0.98;
}

.use-case-grid {
    display: grid;
    margin-top: 72px;
    border-top: 1px solid #2c4268;
    border-bottom: 1px solid #2c4268;
    grid-template-columns: repeat(3, 1fr);
}

.use-case-grid article {
    min-height: 280px;
    padding: 34px;
    border-right: 1px solid #2c4268;
}

.use-case-grid article:last-child {
    border-right: 0;
}

.use-case-grid span {
    color: #9aabff;
    font-size: 0.64rem;
    font-weight: 800;
}

.use-case-grid h3 {
    margin-top: 50px;
    font-size: 1.35rem;
    font-weight: 650;
}

.use-case-grid p {
    margin-top: 13px;
    color: #c1cbda;
    font-size: 0.82rem;
    line-height: 1.68;
}

.product-principles {
    background: var(--surface);
}

.product-principles-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}

.product-principles-copy h2 {
    margin-top: 16px;
    font-size: clamp(2.8rem, 4.8vw, 4.7rem);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 1;
}

.product-principles-copy > p:not(.eyebrow) {
    margin-top: 23px;
    color: var(--text);
    font-size: 0.91rem;
    line-height: 1.74;
}

.product-principle-list {
    border-top: 1px solid var(--line);
}

.product-principle-list article {
    display: grid;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 210px 1fr;
    gap: 24px;
}

.product-principle-list h3 {
    font-size: 1.02rem;
    font-weight: 650;
}

.product-principle-list p {
    color: var(--text);
    font-size: 0.8rem;
    line-height: 1.66;
}

.availability-section {
    padding: 32px 0;
    background: var(--surface);
}

.availability-card {
    display: grid;
    min-height: 390px;
    padding: clamp(42px, 6vw, 74px);
    border-radius: var(--radius-xxl);
    color: var(--white);
    background: var(--blue);
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 72px;
}

.availability-card h2 {
    max-width: 680px;
    margin-top: 16px;
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.availability-card p:not(.eyebrow) {
    max-width: 650px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    line-height: 1.7;
}

.availability-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Responsive */

@media (min-width: 1041px) {
    .hero-section {
        overflow: clip;
        height: calc(100vh + 460px);
        min-height: 1180px;
        padding: 0;
    }

    .hero-grid {
        position: sticky;
        top: 76px;
        min-height: calc(100vh - 76px);
    }

    .hero-product .product-stage {
        min-height: 590px;
    }

    .hero-grid,
    .product-hero-grid {
        padding-left: clamp(0px, calc((100vw - 1228px) / 2), 106px);
    }
}

@media (max-width: 1220px) {
    .hero-grid {
        grid-template-columns: minmax(380px, 0.9fr) minmax(530px, 1.1fr);
        gap: 30px;
    }

    .floating-card {
        width: 218px;
    }

    .live-card { left: 12px; }
    .poll-card { right: 12px; }

    .proof-window {
        grid-template-columns: 210px minmax(500px, 1fr);
    }

    .proof-activity {
        display: none;
    }

    .proof-main {
        padding: 32px;
    }
}

@media (max-width: 1040px) {
    .section { padding: 108px 0; }

    .hero-section { padding-top: 124px; }

    .hero-grid,
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-grid {
        min-height: 0;
    }

    .hero-copy {
        max-width: 780px;
    }

    .hero-copy h1 {
        max-width: 840px;
    }

    .hero-product,
    .product-hero-visual {
        width: min(100%, 790px);
        margin-inline: auto;
    }

    .device-main {
        height: 568px;
    }

    .hero-product .device-main,
    .product-hero-visual .device-main {
        left: 50%;
    }

    .product-stage.has-demo-merged:is([data-demo-scene="hub"], [data-demo-scene="calendar"], [data-demo-scene="rsvp"], [data-demo-scene="ledger"], [data-demo-scene="family"]) .device-main {
        left: 40%;
    }

    .product-stage.has-demo-merged:is([data-demo-scene="live"], [data-demo-scene="score"], [data-demo-scene="community"]) .device-main {
        left: 60%;
    }

    .product-stage {
        min-height: 620px;
    }

    .proof-intro,
    .story-heading,
    .product-section-heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .story-heading .eyebrow {
        grid-column: auto;
        margin-bottom: -12px;
    }

    .story-heading > p:last-child,
    .product-section-heading > p {
        max-width: 700px;
    }

    .story-explorer {
        grid-template-columns: 230px minmax(0, 1fr);
    }

    .story-panel {
        padding: 36px;
        grid-template-columns: 1fr;
        align-content: center;
        gap: 32px;
    }

    .story-visual {
        min-height: 390px;
    }

    .approach-grid,
    .product-principles-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .approach-copy {
        position: static;
        max-width: 760px;
    }

    .principle-grid article {
        padding: 26px;
    }

    .closing-card,
    .availability-card {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .closing-actions,
    .availability-actions {
        max-width: 390px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .workflow-row,
    .workflow-row:nth-child(even) {
        grid-template-columns: minmax(280px, 0.75fr) minmax(420px, 1.25fr);
        gap: 60px;
    }

    .workflow-row:nth-child(even) .workflow-copy {
        order: 0;
    }

    .workflow-visual {
        padding: 34px;
    }
}

@media (max-width: 820px) {
    .site-nav,
    .header-cta {
        display: none;
    }

    .site-header-actions {
        margin-left: auto;
    }

    .menu-button {
        display: flex;
    }

    .mobile-nav {
        display: grid;
        overflow: hidden;
        max-height: 0;
        border-bottom: 1px solid transparent;
        background: rgba(255, 255, 255, 0.98);
        opacity: 0;
        visibility: hidden;
        transition: max-height 320ms var(--ease), opacity 180ms ease, border-color 180ms ease;
        backdrop-filter: blur(16px);
    }

    .mobile-nav.is-open {
        max-height: calc(100vh - 68px);
        border-color: var(--line);
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-inner {
        display: flex;
        min-height: 390px;
        padding: 18px 0 34px;
        flex-direction: column;
    }

    .mobile-nav a {
        display: flex;
        min-height: 58px;
        border-bottom: 1px solid var(--line-soft);
        align-items: center;
        justify-content: space-between;
        font-size: 1rem;
        font-weight: 680;
    }

    .mobile-nav a:last-child {
        min-height: 50px;
        margin-top: auto;
        border: 0;
        border-radius: var(--radius-s);
        justify-content: center;
        color: var(--white);
        background: var(--blue);
        font-size: 0.8rem;
    }

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

    .proof-sidebar {
        display: none;
    }

    .story-explorer {
        display: block;
        overflow: hidden;
    }

    .story-tabs {
        display: grid;
        overflow-x: auto;
        padding: 12px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        grid-template-columns: repeat(4, minmax(144px, 1fr));
        scrollbar-width: none;
    }

    .story-tabs::-webkit-scrollbar {
        display: none;
    }

    .story-tabs button {
        min-height: 88px;
        padding: 14px;
        grid-template-columns: 24px 1fr;
    }

    .story-tabs small {
        display: none;
    }

    .principle-grid,
    .summary-grid,
    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .principle-grid article,
    .summary-grid article,
    .use-case-grid article {
        min-height: auto;
        padding: 30px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .principle-grid article:last-child,
    .summary-grid article:last-child,
    .use-case-grid article:last-child {
        border-bottom: 0;
    }

    .principle-grid h3,
    .use-case-grid h3 {
        margin-top: 28px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-office {
        grid-column: 1 / -1;
    }

    .workflow-list {
        gap: 92px;
    }

    .workflow-row,
    .workflow-row:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .workflow-visual {
        order: 2;
    }

    .product-principle-list article {
        grid-template-columns: 160px 1fr;
    }
}

@media (max-width: 600px) {
    .container,
    .wide-container {
        width: min(100% - 32px, var(--content));
    }

    .wide-container {
        width: min(100% - 24px, var(--wide));
    }

    .section {
        padding: 84px 0;
    }

    .site-header-inner {
        height: 68px;
    }

    .brand-wordmark {
        font-size: 1.4rem;
    }

    .hero-section {
        padding: 108px 0 64px;
    }

    .hero-grid {
        gap: 32px;
    }

    .hero-copy h1 {
        font-size: clamp(3.05rem, 14.7vw, 4rem);
        line-height: 0.95;
    }

    .hero-lead {
        margin-top: 23px;
        font-size: 0.96rem;
        line-height: 1.68;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-section .hero-actions .button-quiet,
    .hero-section .hero-note {
        display: none;
    }

    .product-hero .hero-actions .button-quiet {
        display: none;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-note {
        align-items: flex-start;
    }

    .hero-note > span {
        margin-top: 0.46em;
        flex: 0 0 auto;
    }

    .product-stage {
        min-height: 538px;
        border-radius: 24px;
    }

    .device-frame {
        width: 254px;
        border-radius: 31px;
    }

    .device-main {
        top: 20px;
        height: 498px;
    }

    .device-screen {
        border-radius: 24px;
    }

    .device-frame::before {
        width: 70px;
        height: 18px;
    }

    .floating-card {
        width: 196px;
        padding: 15px;
    }

    .demo-context-card {
        width: 164px;
        padding: 10px 11px;
        gap: 8px;
    }

    .chat-context-card {
        top: 92px;
        right: -10px;
    }

    .event-context-card {
        top: 16px;
        left: -8px;
    }

    .family-context-card {
        top: 272px;
        left: -10px;
    }

    .cost-context-card {
        bottom: 20px;
        left: -10px;
    }

    .context-card-icon {
        width: 26px;
        height: 26px;
        border-radius: 8px;
    }

    .live-card {
        top: 146px;
        left: -18px;
    }

    .poll-card {
        right: -18px;
        bottom: 42px;
    }

    .hero-product figcaption {
        padding-inline: 12px;
        line-height: 1.5;
    }

    .proof-section {
        padding: 88px 0 80px;
    }

    .proof-intro h2,
    .story-heading h2,
    .approach-copy h2,
    .company-intro h2,
    .closing-card h2,
    .product-section-heading h2,
    .use-cases-heading h2 {
        font-size: clamp(2.7rem, 12.8vw, 3.6rem);
    }

    .proof-window {
        min-height: 560px;
        margin-top: 48px;
        border-radius: var(--radius-l);
    }

    .proof-main {
        padding: 22px;
    }

    .proof-main-head {
        display: block;
    }

    .proof-main-head .status {
        margin-top: 14px;
    }

    .proof-feature-grid {
        display: block;
        margin-top: 24px;
    }

    .next-event-panel {
        min-height: 382px;
        padding: 22px;
    }

    .proof-side-stack {
        display: none;
    }

    .story-heading {
        gap: 22px;
    }

    .story-explorer {
        min-height: 0;
        margin-top: 48px;
    }

    .story-tabs {
        grid-template-columns: repeat(4, 132px);
    }

    .story-panel {
        min-height: 0;
        padding: 28px 20px 20px;
    }

    .story-copy h3 {
        font-size: 2.55rem;
    }

    .story-visual {
        min-height: 390px;
        padding: 18px;
        border-radius: var(--radius-l);
    }

    .calendar-strip {
        gap: 4px;
    }

    .calendar-strip > span {
        min-height: 62px;
    }

    .schedule-item {
        padding: 12px;
        grid-template-columns: auto 1fr;
    }

    .schedule-item > :last-child {
        display: none;
    }

    .score-board {
        gap: 10px;
    }

    .score-board > p b {
        font-size: 1.75rem;
    }

    .team-badge {
        width: 48px;
        height: 48px;
    }

    .inline-poll {
        margin-left: 0;
    }

    .approach-grid {
        gap: 46px;
    }

    .approach-steps li {
        min-height: 150px;
        grid-template-columns: 38px 1fr;
    }

    .company-intro {
        text-align: left;
    }

    .principle-grid {
        margin-top: 48px;
    }

    .closing-section,
    .availability-section {
        padding: 16px 0;
    }

    .closing-card,
    .availability-card {
        min-height: 0;
        padding: 42px 24px 24px;
        border: 1px solid rgba(26, 52, 253, 0.12);
        border-radius: var(--radius-xl);
        color: var(--ink);
        background: radial-gradient(circle at 92% 0, rgba(26, 52, 253, 0.12), transparent 38%), linear-gradient(145deg, #ffffff, #f0f3ff);
        box-shadow: 0 22px 54px rgba(1, 15, 47, 0.09);
        gap: 38px;
    }

    .closing-card .eyebrow-light,
    .availability-card .eyebrow-light {
        color: var(--blue);
    }

    .closing-card p:not(.eyebrow),
    .availability-card p:not(.eyebrow) {
        color: var(--text);
    }

    .closing-card .button-white,
    .availability-card .button-white {
        color: var(--white);
        background: var(--blue);
        box-shadow: 0 12px 26px rgba(26, 52, 253, 0.18);
    }

    .closing-card .button-outline-light,
    .availability-card .button-outline-light {
        border-color: rgba(26, 52, 253, 0.24);
        color: var(--blue);
        background: rgba(255, 255, 255, 0.58);
    }

    .footer-main {
        padding: 58px 0 44px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-office {
        grid-column: auto;
    }

    .footer-bottom {
        padding: 20px 0;
        align-items: flex-start;
        flex-direction: column-reverse;
    }

    .footer-bottom nav {
        width: 100%;
        justify-content: space-between;
    }

    .product-page-main {
        padding-top: 68px;
    }

    .product-hero {
        padding: 64px 0 80px;
    }

    .product-hero-grid {
        gap: 32px;
    }

    .product-hero-copy h1 {
        font-size: clamp(3.1rem, 14vw, 4rem);
    }

    .product-hero-visual {
        min-height: 540px;
    }

    .product-hero-visual .product-stage {
        min-height: 540px;
    }

    .product-hero-visual .device-main {
        left: 48%;
    }

    .hero-product .product-stage.has-demo-merged:not([data-demo-scene="overview"]) .device-main {
        left: 50%;
    }

    .product-hero-visual .product-stage.has-demo-merged:not([data-demo-scene="overview"]) .device-main {
        left: 48%;
    }

    .demo-projection {
        top: auto;
        right: 14px;
        bottom: 18px;
        left: 14px;
        width: auto;
        padding: 14px;
        transform-origin: center bottom;
    }

    .demo-projection::before {
        display: none;
    }

    .product-stage.is-demo-playing[data-demo-scene="hub"] [data-demo-projection="hub"],
    .product-stage.is-demo-playing[data-demo-scene="calendar"] [data-demo-projection="calendar"],
    .product-stage.is-demo-playing[data-demo-scene="live"] [data-demo-projection="live"],
    .product-stage.is-demo-playing[data-demo-scene="score"] [data-demo-projection="score"],
    .product-stage.is-demo-playing[data-demo-scene="rsvp"] [data-demo-projection="rsvp"],
    .product-stage.is-demo-playing[data-demo-scene="community"] [data-demo-projection="community"],
    .product-stage.is-demo-playing[data-demo-scene="ledger"] [data-demo-projection="ledger"],
    .product-stage.is-demo-playing[data-demo-scene="family"] [data-demo-projection="family"] {
        animation-name: zyncProjectionLift;
    }

    .product-page-card {
        right: -16px;
        bottom: 38px;
    }

    .summary-grid article {
        min-height: 150px;
        padding: 28px 0;
    }

    .product-section-heading {
        gap: 24px;
    }

    .workflow-list {
        margin-top: 64px;
        gap: 84px;
    }

    .workflow-copy h3 {
        font-size: 2.8rem;
    }

    .workflow-visual {
        min-height: 0;
        padding: 12px;
        border-radius: var(--radius-l);
    }

    .workflow-visual .story-visual {
        min-height: 410px;
    }

    .use-case-grid {
        margin-top: 50px;
    }

    .product-principles-grid {
        gap: 46px;
    }

    .product-principle-list article {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 370px) {
    .wide-copy {
        display: none;
    }

    .compact-copy {
        display: inline;
    }

    .hero-copy h1,
    .product-hero-copy h1 {
        font-size: 2.7rem;
    }

    .floating-card {
        width: 180px;
    }

    .device-frame {
        width: 238px;
    }

    .product-page-card {
        width: 184px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .product-stage::after,
    .device-main,
    .live-card,
    .poll-card,
    .product-page-card,
    .zync-live-match,
    .zync-live-pill .mx-icon,
    .zync-online-dot,
    .zync-notification b {
        animation: none !important;
    }
}

@media (min-width: 1041px) and (prefers-reduced-motion: reduce) {
    .hero-section {
        height: auto;
        min-height: 0;
        padding: 132px 0 76px;
    }

    .hero-grid {
        position: relative;
        top: auto;
        min-height: 690px;
    }
}
