:root {
    --ink: #111a44;
    --ink-deep: #0b1235;
    --ink-soft: #465070;
    --muted: #6d7692;
    --violet: #6a4df7;
    --violet-dark: #583bf0;
    --violet-soft: #f0edff;
    --blue: #4776ef;
    --green: #16a66a;
    --orange: #ed8b3d;
    --surface: #ffffff;
    --surface-soft: #f6f7fb;
    --surface-tint: #fafaff;
    --line: #e6e9f2;
    --line-dark: rgba(255, 255, 255, .14);
    --shadow-sm: 0 12px 32px rgba(17, 26, 68, .07);
    --shadow-md: 0 28px 80px rgba(17, 26, 68, .13);
    --shadow-violet: 0 18px 45px rgba(106, 77, 247, .28);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--surface);
    font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.modal-open,
body.nav-open {
    overflow: hidden;
}

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

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

button,
summary {
    -webkit-tap-highlight-color: transparent;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
p,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3,
strong {
    letter-spacing: -.025em;
}

::selection {
    color: #fff;
    background: var(--violet);
}

:focus-visible {
    outline: 3px solid rgba(106, 77, 247, .34);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #fff;
    background: var(--ink-deep);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

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

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

.announcement-bar {
    position: relative;
    z-index: 52;
    color: rgba(255, 255, 255, .84);
    background: var(--ink-deep);
    font-size: 12px;
    font-weight: 600;
}

.announcement-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.announcement-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #76e0ae;
    box-shadow: 0 0 0 4px rgba(118, 224, 174, .12);
}

.announcement-inner a {
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fff;
}

.announcement-inner a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.announcement-inner svg {
    width: 14px;
    height: 14px;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    height: 76px;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
    border-color: rgba(230, 233, 242, .92);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 28px rgba(17, 26, 68, .05);
}

.nav-shell {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -.04em;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--ink-deep);
}

.brand-mark svg {
    width: 100%;
    height: 100%;
}

.brand-mark.has-image {
    overflow: hidden;
    border-radius: 10px;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    font-size: 17px;
}

.nav-menu {
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 36px;
}

.nav-links,
.nav-actions {
    display: flex;
    align-items: center;
}

.nav-links {
    gap: 30px;
}

.nav-links a {
    position: relative;
    color: #4e5878;
    font-size: 13px;
    font-weight: 600;
    transition: color .2s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--violet);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    gap: 8px;
}

.nav-toggle {
    width: 42px;
    height: 42px;
    display: none;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 1.5px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform .2s ease, top .2s ease;
}

.nav-toggle span:nth-child(2) {
    top: 15px;
}

.nav-toggle span:nth-child(3) {
    top: 24px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    top: 19px;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}

.button {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}

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

.button svg {
    width: 17px;
    height: 17px;
}

.button-primary {
    color: #fff;
    background: var(--violet);
    box-shadow: 0 9px 24px rgba(106, 77, 247, .22);
}

.button-primary:hover {
    background: var(--violet-dark);
    box-shadow: var(--shadow-violet);
}

.button-secondary {
    color: var(--ink);
    border-color: var(--line);
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 8px 22px rgba(17, 26, 68, .05);
}

.button-secondary:hover {
    border-color: #ccd1e0;
    background: #fff;
}

.button-quiet {
    min-height: 40px;
    color: var(--ink);
    background: transparent;
}

.button-quiet:hover {
    color: var(--violet);
    transform: none;
}

.button-small {
    min-height: 42px;
    padding-inline: 17px;
}

.button-large {
    min-height: 52px;
    padding-inline: 22px;
    border-radius: 14px;
    font-size: 14px;
}

.button-white {
    color: var(--ink-deep);
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.button-white:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.button-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .07);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .12);
}

.button-full {
    width: 100%;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0 0;
    background:
        linear-gradient(180deg, #fbfbff 0%, #fff 72%),
        #fff;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 540px;
    pointer-events: none;
    background-image: radial-gradient(rgba(106, 77, 247, .1) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .38), transparent 76%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.hero-orb-one {
    top: -310px;
    right: -230px;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(106, 77, 247, .13), transparent 68%);
}

.hero-orb-two {
    top: 210px;
    left: -360px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(71, 118, 239, .08), transparent 68%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
    align-items: center;
    gap: 52px;
}

.hero-copy {
    padding: 38px 0 70px;
}

.eyebrow {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--violet-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 20px;
    height: 1px;
    display: inline-block;
    background: currentColor;
}

.eyebrow-light {
    color: var(--violet);
}

.eyebrow-dark {
    color: #bdb3ff;
}

.hero-copy h1 {
    max-width: 650px;
    margin-bottom: 24px;
    color: var(--ink-deep);
    font-size: clamp(52px, 5vw, 74px);
    font-weight: 800;
    letter-spacing: -.065em;
    line-height: 1.02;
}

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

.hero-lead {
    max-width: 610px;
    margin-bottom: 30px;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.72;
}

.hero-actions,
.access-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.hero-note {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.hero-avatars {
    display: flex;
    padding-left: 7px;
}

.hero-avatars span {
    width: 32px;
    height: 32px;
    margin-left: -7px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: #6b56cf;
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
}

.hero-avatars span:nth-child(2) {
    background: #4776ef;
}

.hero-avatars span:nth-child(3) {
    color: var(--ink);
    background: #eef0f6;
}

.hero-note p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.hero-note strong {
    color: var(--ink);
    font-size: 12px;
}

.hero-visual {
    position: relative;
    min-height: 585px;
    overflow: hidden;
    border: 1px solid #dfe3ee;
    border-radius: 32px 32px 0 0;
    background:
        radial-gradient(circle at 50% 54%, rgba(106, 77, 247, .1), transparent 34%),
        linear-gradient(180deg, #f8f9fc, #f3f5fa);
    box-shadow: 0 35px 90px rgba(17, 26, 68, .16);
}

.hero-visual::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 410px;
    height: 410px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(106, 77, 247, .045), transparent 67%);
    transform: translate(-50%, -41%);
}

.hero-visual-grid {
    position: absolute;
    z-index: 0;
    inset: 0;
    opacity: .22;
    background-image:
        radial-gradient(circle, rgba(106, 77, 247, .14) 1px, transparent 1.25px);
    background-size: 22px 22px;
    mask-image: linear-gradient(to bottom, transparent 5%, #000 24%, #000 86%, transparent 100%);
}

.hero-sync-heading {
    position: absolute;
    z-index: 6;
    top: 0;
    right: 0;
    left: 0;
    min-height: 68px;
    padding: 0 24px;
    border-bottom: 1px solid #e6e8f1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #7b84a1;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    font-size: 10px;
    font-weight: 700;
}

.hero-sync-brand,
.hero-sync-heading-meta,
.hero-sync-live {
    display: inline-flex;
    align-items: center;
}

.hero-sync-brand {
    gap: 9px;
}

.hero-sync-brand-mark {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
}

.hero-sync-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-sync-brand strong {
    color: var(--ink-deep);
    font-size: 13px;
    font-weight: 800;
}

.hero-sync-heading-meta {
    gap: 14px;
}

.hero-sync-live {
    gap: 7px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #19855a;
    background: #e8f8f0;
    text-transform: uppercase;
}

.hero-sync-live i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    background: #16a66a;
    box-shadow: 0 0 0 4px rgba(22, 166, 106, .1);
}

.hero-sync-heading time {
    font-style: normal;
    white-space: nowrap;
}

.hero-sync-scene {
    position: absolute;
    z-index: 3;
    inset: 68px 14px 12px;
}

.hero-sync-connector,
.hero-sync-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-sync-connector {
    z-index: 1;
    pointer-events: none;
}

.hero-sync-connector::before,
.hero-sync-connector::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border: 3px solid #f5f6fb;
    border-radius: 50%;
    background: #8a72f8;
    box-shadow: 0 0 0 4px rgba(106, 77, 247, .1);
}

.hero-sync-connector-horizontal {
    width: calc(100% - 74px);
    height: 1px;
    border-top: 1px dashed #ccc7ee;
}

.hero-sync-connector-horizontal::before {
    top: -5px;
    left: 0;
}

.hero-sync-connector-horizontal::after {
    top: -5px;
    right: 0;
}

.hero-sync-connector-vertical {
    width: 1px;
    height: calc(100% - 68px);
    border-left: 1px dashed #ccc7ee;
}

.hero-sync-connector-vertical::before {
    top: 0;
    left: -5px;
}

.hero-sync-connector-vertical::after {
    bottom: 0;
    left: -5px;
}

.hero-sync-core {
    z-index: 3;
    width: 218px;
    height: 190px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 28px;
    display: grid;
    grid-template-rows: auto auto auto auto;
    place-items: center;
    align-content: center;
    color: #fff;
    background: linear-gradient(145deg, #6a4df7, #784af4 58%, #8c55f1);
    box-shadow: 0 24px 48px rgba(106, 77, 247, .28), inset 0 1px 0 rgba(255, 255, 255, .22);
}

.hero-sync-logo {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: #fff;
    box-shadow: 0 10px 24px rgba(47, 28, 128, .2);
}

.hero-sync-logo svg,
.hero-sync-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-sync-core > small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .9);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero-sync-core > strong {
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.13;
    text-align: center;
}

.hero-sync-core > em {
    margin-top: 9px;
    padding: 5px 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .86);
    background: rgba(35, 22, 96, .18);
    font-size: 8.5px;
    font-style: normal;
    font-weight: 700;
}

.hero-sync-core > em i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #68e2ad;
}

.hero-sync-modules {
    position: absolute;
    z-index: 4;
    inset: 0;
}

.hero-sync-card {
    position: absolute;
    width: 188px;
    min-height: 96px;
    padding: 14px;
    border: 1px solid #e3e6f0;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 14px 34px rgba(17, 26, 68, .1);
}

.hero-sync-rota {
    top: 32px;
    left: 8px;
}

.hero-sync-clock {
    top: 32px;
    right: 8px;
}

.hero-sync-leave {
    bottom: 32px;
    left: 8px;
}

.hero-sync-updates {
    right: 8px;
    bottom: 32px;
}

.hero-sync-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--violet);
    background: var(--violet-soft);
}

.hero-sync-icon.blue {
    color: var(--blue);
    background: #eaf1ff;
}

.hero-sync-icon.orange {
    color: var(--orange);
    background: #fff0e5;
}

.hero-sync-icon.green {
    color: var(--green);
    background: #e8f8f0;
}

.hero-sync-icon svg {
    width: 18px;
    height: 18px;
}

.hero-sync-card small,
.hero-sync-card strong,
.hero-sync-card em {
    display: block;
}

.hero-sync-card small {
    margin-bottom: 3px;
    color: #626c8a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero-sync-card strong {
    overflow: hidden;
    color: var(--ink-deep);
    font-size: 10.5px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-sync-card em {
    width: fit-content;
    margin-top: 7px;
    padding: 3px 6px;
    border-radius: 999px;
    color: #148159;
    background: #e8f8f0;
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
}

.hero-sync-card em svg,
.hero-sync-card em i {
    width: 8px;
    height: 8px;
    margin-right: 3px;
    display: inline-block;
    vertical-align: -2px;
}

.hero-sync-card em i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    vertical-align: 0;
}

.hero-sync-leave em {
    color: #9b4a12;
    background: #fff0e5;
}

.hero-proof {
    position: relative;
    z-index: 2;
    min-height: 112px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.hero-proof p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.proof-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 36px;
    color: #6d7590;
    font-size: 13px;
    font-weight: 700;
}

.proof-list span {
    position: relative;
}

.proof-list span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #c7cbda;
}

.section {
    padding: 120px 0;
}

.section-heading {
    margin-bottom: 54px;
}

.section-heading h2,
.workflow-copy h2,
.faq-intro h2,
.access-copy h2 {
    margin-bottom: 20px;
    color: var(--ink-deep);
    font-size: clamp(38px, 4vw, 55px);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1.1;
}

.section-heading p,
.workflow-copy > p,
.faq-intro > p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.75;
}

.section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
    align-items: end;
    gap: 64px;
}

.section-heading-split .eyebrow,
.center-heading .eyebrow,
.workflow-copy .eyebrow,
.faq-intro .eyebrow {
    margin-bottom: 19px;
}

.section-heading-split h2,
.center-heading h2 {
    margin-bottom: 0;
}

.center-heading {
    max-width: 770px;
    margin-inline: auto;
    text-align: center;
}

.center-heading p {
    max-width: 630px;
    margin: 20px auto 0;
}

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

.product-window {
    overflow: hidden;
    border: 1px solid #dfe3ee;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 32px 90px rgba(17, 26, 68, .14);
}

.window-bar {
    height: 50px;
    padding: 0 17px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr minmax(220px, 420px) 1fr;
    align-items: center;
    background: #fbfcfe;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d9dde8;
}

.window-dots span:first-child {
    background: #ff8c82;
}

.window-dots span:nth-child(2) {
    background: #f4ca64;
}

.window-dots span:nth-child(3) {
    background: #78d49b;
}

.window-address {
    height: 28px;
    border: 1px solid #e8eaf1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #8a91a7;
    background: #fff;
    font-size: 9px;
    font-weight: 600;
}

.window-address svg {
    width: 10px;
    height: 10px;
}

.window-avatar {
    width: 25px;
    height: 25px;
    margin-left: auto;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--violet);
    font-size: 8px;
    font-weight: 800;
}

.app-preview {
    min-height: 635px;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    background: var(--surface-soft);
}

.preview-sidebar {
    padding: 21px 13px 14px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    background: #fff;
}

.preview-brand {
    padding: 0 8px 17px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-deep);
    font-size: 12px;
}

.preview-brand > span {
    width: 25px;
    height: 25px;
    color: var(--ink-deep);
}

.preview-brand svg {
    width: 100%;
    height: 100%;
}

.preview-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preview-company {
    margin-bottom: 16px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fbfbfd;
}

.preview-company > span {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, var(--violet), #8a78ff);
    font-size: 7px;
    font-weight: 800;
}

.preview-company strong,
.preview-company small {
    display: block;
}

.preview-company strong {
    margin-bottom: 1px;
    color: var(--ink);
    font-size: 8px;
}

.preview-company small {
    color: var(--muted);
    font-size: 6px;
}

.preview-nav {
    display: grid;
    gap: 2px;
}

.preview-nav span {
    height: 27px;
    padding: 0 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #6d7590;
    font-size: 8.5px;
    font-weight: 600;
}

.preview-nav-label {
    margin: 7px 10px 2px;
    color: #9aa2bb;
    font-size: 6.5px;
    font-weight: 800;
    letter-spacing: .09em;
    line-height: 1;
    text-transform: uppercase;
}

.preview-nav span.active {
    color: var(--violet-dark);
    background: var(--violet-soft);
}

.preview-nav svg {
    width: 14px;
    height: 14px;
}

.preview-sidebar-foot {
    margin-top: auto;
    padding: 10px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 7px;
}

.online-dot {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    background: #28bd79;
    box-shadow: 0 0 0 3px rgba(40, 189, 121, .12);
}

.preview-main {
    min-width: 0;
    padding: 29px 30px 34px;
}

.preview-main-head {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.preview-main-head small,
.preview-main-head h3 {
    display: block;
}

.preview-main-head small {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 8px;
}

.preview-main-head h3 {
    margin: 0;
    color: var(--ink-deep);
    font-size: 19px;
    font-weight: 800;
}

.preview-add-shift {
    height: 34px;
    padding: 0 13px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    background: var(--violet);
    font-size: 8px;
    font-weight: 700;
}

.metric-row {
    margin-bottom: 17px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.metric-row > div {
    position: relative;
    min-height: 112px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
}

.metric-icon {
    position: absolute;
    top: 13px;
    right: 13px;
    width: 29px;
    height: 29px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: var(--violet);
    background: var(--violet-soft);
}

.metric-icon.blue {
    color: var(--blue);
    background: #edf3ff;
}

.metric-icon.green {
    color: var(--green);
    background: #eaf8f1;
}

.metric-icon.orange {
    color: var(--orange);
    background: #fff3e9;
}

.metric-icon svg {
    width: 14px;
    height: 14px;
}

.metric-row small,
.metric-row strong,
.metric-row em {
    display: block;
}

.metric-row small {
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 7px;
    font-weight: 600;
}

.metric-row strong {
    color: var(--ink-deep);
    font-size: 22px;
    font-style: normal;
    line-height: 1.1;
}

.metric-row em {
    margin-top: 9px;
    color: #8a91a7;
    font-size: 6px;
    font-style: normal;
}

.metric-row em i {
    width: 5px;
    height: 5px;
    margin-right: 4px;
    display: inline-block;
    border-radius: 50%;
    background: var(--green);
}

.preview-panels {
    display: grid;
    grid-template-columns: minmax(0, 1.48fr) minmax(215px, .72fr);
    gap: 12px;
}

.today-panel,
.attention-panel {
    min-width: 0;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.panel-heading {
    min-height: 38px;
    margin-bottom: 7px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.panel-heading strong,
.panel-heading small {
    display: block;
}

.panel-heading strong {
    margin-bottom: 2px;
    color: var(--ink);
    font-size: 10px;
}

.panel-heading small {
    color: var(--muted);
    font-size: 6px;
}

.panel-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--violet);
    font-size: 6px;
    font-weight: 700;
}

.panel-heading > span svg {
    width: 9px;
    height: 9px;
}

.shift-row {
    min-height: 58px;
    border-top: 1px solid #eef0f5;
    display: grid;
    grid-template-columns: 42px 29px minmax(78px, 1fr) 54px 65px;
    align-items: center;
    gap: 8px;
}

.shift-time {
    color: var(--ink);
    font-size: 8px;
    font-weight: 700;
}

.person-avatar {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: #50437f;
    background: #eeeaff;
    font-size: 7px;
    font-style: normal;
    font-weight: 800;
}

.person-avatar.blue {
    color: #2f5fb7;
    background: #e8f0ff;
}

.person-avatar.peach {
    color: #a65433;
    background: #ffece3;
}

.person-avatar.green {
    color: #267959;
    background: #e5f6ed;
}

.shift-row > div strong,
.shift-row > div small {
    display: block;
}

.shift-row > div strong {
    margin-bottom: 1px;
    overflow: hidden;
    color: var(--ink);
    font-size: 7px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shift-row > div small {
    overflow: hidden;
    color: var(--muted);
    font-size: 5.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shift-pill {
    padding: 4px 5px;
    border-radius: 999px;
    color: #654bc9;
    background: #f0edff;
    font-size: 5.5px;
    font-weight: 700;
    text-align: center;
}

.shift-pill.day {
    color: #2f65bd;
    background: #eaf1ff;
}

.shift-pill.evening {
    color: #aa6331;
    background: #fff0e5;
}

.shift-state {
    color: var(--green);
    font-size: 5.5px;
    font-weight: 700;
    text-align: right;
}

.shift-state i {
    width: 4px;
    height: 4px;
    display: inline-block;
    border-radius: 50%;
    background: var(--green);
}

.shift-state.scheduled {
    color: var(--muted);
}

.attention-item {
    min-height: 60px;
    border-top: 1px solid #eef0f5;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 13px;
    align-items: center;
    gap: 8px;
}

.attention-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--violet);
    background: var(--violet-soft);
}

.attention-icon.orange {
    color: var(--orange);
    background: #fff2e8;
}

.attention-icon.blue {
    color: var(--blue);
    background: #edf3ff;
}

.attention-icon svg {
    width: 13px;
    height: 13px;
}

.attention-item strong,
.attention-item small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.attention-item strong {
    margin-bottom: 2px;
    color: var(--ink);
    font-size: 7px;
}

.attention-item small {
    color: var(--muted);
    font-size: 5.5px;
}

.attention-arrow {
    color: #a2a8ba;
}

.attention-arrow svg {
    width: 11px;
    height: 11px;
}

.coverage-card {
    margin-top: 9px;
    padding: 12px;
    border-radius: 10px;
    background: var(--surface-soft);
}

.coverage-card > div:first-child {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 6px;
}

.coverage-card > div strong {
    color: var(--ink);
    font-size: 7px;
}

.coverage-track {
    height: 4px;
    margin: 8px 0 5px;
    overflow: hidden;
    border-radius: 999px;
    background: #dde1eb;
}

.coverage-track span {
    width: 96%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--violet), #8f7bff);
}

.coverage-card > small {
    display: block;
    color: var(--muted);
    font-size: 5.5px;
}

/* Multi-location workforce operations preview */
.preview-main {
    min-width: 0;
    padding: 24px 25px 28px;
    display: grid;
    grid-template-rows: auto 46px minmax(0, 1fr);
    gap: 14px;
}

.preview-main-head {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.preview-main-head small,
.preview-main-head h3 {
    display: block;
}

.preview-main-head small {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 9.5px;
    font-weight: 600;
}

.preview-main-head h3 {
    margin: 0;
    color: var(--ink-deep);
    font-size: 20px;
    font-weight: 800;
}

.preview-head-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
}

.preview-filter,
.preview-publish {
    min-height: 34px;
    padding: 0 10px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 8.5px;
    font-weight: 700;
}

.preview-filter {
    border: 1px solid var(--line);
    color: #59627e;
    background: #fff;
}

.preview-publish {
    color: #fff;
    background: linear-gradient(135deg, var(--violet), #8153f5);
    box-shadow: 0 9px 20px rgba(106, 77, 247, .2);
}

.preview-filter svg,
.preview-publish svg {
    width: 12px;
    height: 12px;
}

.preview-filter svg:last-child {
    width: 9px;
    height: 9px;
}

.preview-tabs {
    min-width: 0;
    min-height: 46px;
    padding: 4px 7px;
    border: 1px solid var(--line);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(255, 255, 255, .9);
}

.preview-tabs > div {
    display: flex;
    align-items: center;
    gap: 3px;
}

.preview-tabs span {
    min-height: 32px;
    padding: 0 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    color: #717994;
    font-size: 8.5px;
    font-weight: 700;
    white-space: nowrap;
}

.preview-tabs span.active {
    color: var(--violet-dark);
    background: var(--violet-soft);
}

.preview-tabs em {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #66708c;
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
    white-space: nowrap;
}

.preview-tabs em i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(22, 166, 106, .1);
}

.preview-panels {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 12px;
}

.rota-board,
.operations-panel {
    min-width: 0;
    min-height: 0;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
}

.rota-board {
    overflow: hidden;
    padding: 15px;
}

.rota-board-head {
    min-height: 45px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.rota-board-head strong,
.rota-board-head small {
    display: block;
}

.rota-board-head strong {
    margin-bottom: 2px;
    color: var(--ink-deep);
    font-size: 11px;
}

.rota-board-head small {
    color: var(--muted);
    font-size: 8px;
}

.rota-board-head > span {
    min-height: 28px;
    padding: 0 9px;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #66708c;
    font-size: 7.5px;
    font-weight: 700;
    white-space: nowrap;
}

.rota-board-head > span svg {
    width: 10px;
    height: 10px;
}

.rota-board-grid {
    min-width: 0;
}

.rota-board-days,
.rota-location-row {
    display: grid;
    grid-template-columns: 118px repeat(7, minmax(60px, 1fr));
}

.rota-board-days {
    min-height: 42px;
    border-radius: 9px;
    align-items: center;
    color: #78819b;
    background: var(--surface-soft);
}

.rota-board-days > span {
    padding: 0 6px;
    text-align: center;
}

.rota-board-days > span:first-child {
    padding-left: 12px;
    color: #68718e;
    font-size: 7.5px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
}

.rota-board-days strong,
.rota-board-days small {
    display: block;
}

.rota-board-days strong {
    color: var(--ink);
    font-size: 8.5px;
}

.rota-board-days small {
    margin-top: 1px;
    font-size: 7px;
}

.rota-location-row {
    min-height: 113px;
    border-bottom: 1px solid #eef0f5;
    align-items: stretch;
}

.rota-location-row:last-child {
    border-bottom: 0;
}

.rota-location {
    min-width: 0;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rota-location > span {
    width: 29px;
    height: 29px;
    flex: 0 0 auto;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: var(--violet-dark);
    background: var(--violet-soft);
    font-size: 7px;
    font-weight: 800;
}

.rota-location strong,
.rota-location small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rota-location strong {
    color: var(--ink);
    font-size: 9px;
}

.rota-location small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 7px;
}

.rota-shift {
    min-width: 0;
    min-height: 72px;
    margin: 10px 3px;
    padding: 10px 7px;
    border: 1px solid #ded8ff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #5942b4;
    background: #f2efff;
}

.rota-shift.blue {
    border-color: #dbe6ff;
    color: #3464b8;
    background: #edf3ff;
}

.rota-shift.green {
    border-color: #d5f0e3;
    color: #267b59;
    background: #ebf8f2;
}

.rota-shift.orange {
    border-color: #f4dfcf;
    color: #9b581f;
    background: #fff2e8;
}

.rota-shift strong,
.rota-shift small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rota-shift strong {
    font-size: 8px;
    line-height: 1.3;
}

.rota-shift small {
    margin-top: 5px;
    opacity: .8;
    font-size: 6.5px;
    font-weight: 700;
}

.operations-panel {
    padding: 14px;
}

.operations-heading {
    min-height: 43px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.operations-heading strong,
.operations-heading small {
    display: block;
}

.operations-heading strong {
    margin-bottom: 2px;
    color: var(--ink-deep);
    font-size: 11px;
}

.operations-heading small {
    color: var(--muted);
    font-size: 7px;
}

.operations-heading > span {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: var(--violet);
    background: var(--violet-soft);
}

.operations-heading svg {
    width: 13px;
    height: 13px;
}

.operation-item {
    min-height: 58px;
    border-top: 1px solid #eef0f5;
    display: grid;
    grid-template-columns: 29px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
}

.operation-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--violet);
    background: var(--violet-soft);
}

.operation-icon.blue {
    color: var(--blue);
    background: #edf3ff;
}

.operation-icon.green {
    color: var(--green);
    background: #eaf8f1;
}

.operation-icon.orange {
    color: var(--orange);
    background: #fff2e8;
}

.operation-icon svg {
    width: 13px;
    height: 13px;
}

.operation-item strong,
.operation-item small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.operation-item strong {
    color: var(--ink);
    font-size: 8px;
}

.operation-item small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 6.5px;
}

.operation-item em {
    padding: 3px 5px;
    border-radius: 999px;
    color: #56617c;
    background: #f0f2f7;
    font-size: 6.25px;
    font-style: normal;
    font-weight: 800;
}

.operation-item em.ready {
    color: #187851;
    background: #e8f8f0;
}

.operation-item em.review {
    color: #9b581f;
    background: #fff2e8;
}

.operation-item em.draft {
    color: var(--violet-dark);
    background: var(--violet-soft);
}

.multi-site-card {
    min-height: 116px;
    margin-top: 10px;
    padding: 13px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 29px minmax(0, 1fr);
    gap: 8px;
    color: #fff;
    background: linear-gradient(145deg, #6a4df7, #8450f3);
    box-shadow: 0 15px 28px rgba(106, 77, 247, .2);
}

.multi-site-card > span {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .16);
}

.multi-site-card svg {
    width: 13px;
    height: 13px;
}

.multi-site-card strong {
    display: block;
    font-size: 8.5px;
}

.multi-site-card p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, .75);
    font-size: 7px;
    line-height: 1.5;
}

.multi-site-card em {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    color: #fff;
    font-size: 6.5px;
    font-style: normal;
    font-weight: 800;
}

.multi-site-card em svg {
    width: 9px;
    height: 9px;
}

.product-caption {
    max-width: 710px;
    margin: 34px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.product-caption > span {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--violet);
    background: var(--violet-soft);
}

.product-caption svg {
    width: 17px;
    height: 17px;
}

.product-caption p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.product-caption strong {
    color: var(--ink);
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    position: relative;
    min-height: 425px;
    overflow: hidden;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 16px 40px rgba(17, 26, 68, .04);
}

.feature-card-large {
    min-height: 520px;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(300px, .75fr) minmax(480px, 1.25fr);
    align-items: center;
    gap: 60px;
}

.feature-card-wide {
    min-height: 350px;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(390px, 1fr);
    align-items: center;
    gap: 70px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 24px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--violet);
    background: var(--violet-soft);
}

.feature-icon.blue {
    color: var(--blue);
    background: #edf3ff;
}

.feature-icon.green {
    color: var(--green);
    background: #eaf8f1;
}

.feature-icon.orange {
    color: var(--orange);
    background: #fff2e8;
}

.feature-icon svg {
    width: 21px;
    height: 21px;
}

.feature-kicker {
    margin-bottom: 9px;
    display: block;
    color: var(--violet);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.feature-card h3 {
    max-width: 520px;
    margin-bottom: 14px;
    color: var(--ink-deep);
    font-size: 27px;
    font-weight: 800;
    line-height: 1.2;
}

.feature-card p {
    max-width: 520px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.75;
}

.feature-list {
    padding: 0;
    margin: 25px 0 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3e4868;
    font-size: 12px;
    font-weight: 600;
}

.feature-list svg {
    width: 16px;
    height: 16px;
    color: var(--green);
}

.mini-rota {
    position: relative;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(17, 26, 68, .1);
    transform: rotate(1deg);
}

.mini-rota::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 30px -35px -35px 30px;
    border-radius: 22px;
    background: var(--violet-soft);
    transform: rotate(-3deg);
}

.mini-rota-head {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-rota-head strong,
.mini-rota-head small {
    display: block;
}

.mini-rota-head strong {
    margin-bottom: 3px;
    font-size: 13px;
}

.mini-rota-head small {
    color: var(--muted);
    font-size: 8px;
}

.mini-rota-head > span {
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--green);
    background: #e9f8f0;
    font-size: 7px;
    font-weight: 700;
}

.mini-days {
    min-height: 42px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 90px repeat(5, minmax(0, 1fr));
    gap: 4px;
    align-items: center;
    color: var(--muted);
    font-size: 7px;
    text-align: center;
}

.mini-days b {
    color: var(--ink);
    font-size: 9px;
}

.mini-person {
    min-height: 60px;
    border-bottom: 1px solid #eef0f5;
    display: grid;
    grid-template-columns: 30px 56px repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 4px;
}

.mini-person:last-child {
    border-bottom: 0;
}

.mini-person > strong {
    overflow: hidden;
    color: var(--ink);
    font-size: 7px;
    text-overflow: ellipsis;
}

.mini-shift {
    padding: 7px 3px;
    border-radius: 6px;
    color: #6450bd;
    background: #eeeaff;
    font-size: 6px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
}

.mini-shift.blue {
    color: #3563ad;
    background: #e8f0ff;
}

.mini-shift.green {
    color: #2e765a;
    background: #e8f7ef;
}

.mini-shift.pale {
    color: #a1a7b8;
    background: #f5f6f9;
}

.feature-track,
.feature-leave {
    padding-bottom: 190px;
}

.clock-widget,
.leave-widget {
    position: absolute;
    right: 36px;
    bottom: 34px;
    left: 36px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 26, 68, .09);
}

.clock-widget {
    padding: 18px 19px;
}

.clock-widget > div {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--green);
    font-size: 8px;
    font-weight: 700;
}

.clock-widget > strong,
.clock-widget > small {
    display: block;
}

.clock-widget > strong {
    margin: 7px 0 1px;
    color: var(--ink-deep);
    font-size: 26px;
}

.clock-widget > small {
    color: var(--muted);
    font-size: 7px;
}

.clock-action {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 8px 11px;
    border-radius: 8px;
    color: #fff;
    background: var(--violet);
    font-size: 7px;
    font-weight: 700;
}

.leave-widget {
    min-height: 95px;
    padding: 18px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
}

.leave-widget .person-avatar {
    width: 38px;
    height: 38px;
    border-radius: 12px;
}

.leave-widget strong,
.leave-widget small {
    display: block;
}

.leave-widget strong {
    margin-bottom: 3px;
    color: var(--ink);
    font-size: 10px;
}

.leave-widget small {
    color: var(--muted);
    font-size: 7px;
}

.approve-pill {
    padding: 7px 9px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--green);
    background: #eaf8f1;
    font-size: 7px;
    font-weight: 700;
}

.approve-pill svg {
    width: 10px;
    height: 10px;
}

.feature-connect {
    color: #fff;
    border-color: #252d5d;
    background: var(--ink-deep);
}

.feature-connect h3 {
    color: #fff;
}

.feature-connect p {
    color: rgba(255, 255, 255, .65);
}

.announcement-widget {
    position: relative;
    z-index: 2;
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
    backdrop-filter: blur(12px);
    transform: rotate(-1deg);
}

.announcement-widget-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.announcement-widget-head strong,
.announcement-widget-head small {
    display: block;
}

.announcement-widget-head strong {
    color: #fff;
    font-size: 9px;
}

.announcement-widget-head small {
    color: rgba(255, 255, 255, .5);
    font-size: 6px;
}

.announcement-widget-head i {
    margin-left: auto;
    padding: 4px 7px;
    border-radius: 999px;
    color: #c9c0ff;
    background: rgba(106, 77, 247, .28);
    font-size: 6px;
    font-style: normal;
    font-weight: 700;
}

.announcement-widget > p {
    margin: 18px 0;
    padding: 17px 0;
    border-block: 1px solid rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .82);
    font-size: 10px;
    line-height: 1.65;
}

.reaction-row {
    display: flex;
    gap: 9px;
}

.reaction-row span {
    padding: 5px 8px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .62);
    background: rgba(255, 255, 255, .07);
    font-size: 6px;
}

.connect-lines span {
    position: absolute;
    border-radius: 50%;
    background: rgba(106, 77, 247, .14);
}

.connect-lines span:first-child {
    top: -100px;
    right: -40px;
    width: 280px;
    height: 280px;
}

.connect-lines span:nth-child(2) {
    right: 260px;
    bottom: -150px;
    width: 230px;
    height: 230px;
}

.connect-lines span:nth-child(3) {
    top: 80px;
    left: 45%;
    width: 8px;
    height: 8px;
    background: #8e7cff;
    box-shadow: 0 0 0 8px rgba(142, 124, 255, .1);
}

.workflow-section {
    background: #fff;
}

.workflow-grid {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(500px, 1.22fr);
    align-items: start;
    gap: 100px;
}

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

.workflow-copy .text-link,
.faq-intro .text-link {
    margin-top: 27px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--violet);
    font-size: 13px;
    font-weight: 800;
}

.text-link svg {
    width: 16px;
    height: 16px;
    transition: transform .2s ease;
}

.text-link:hover svg {
    transform: translateX(4px);
}

.workflow-steps {
    padding: 0;
    margin: 0;
    display: grid;
    list-style: none;
}

.workflow-steps li {
    position: relative;
    min-height: 176px;
    padding: 0 0 54px 96px;
    display: grid;
    grid-template-columns: 1fr;
}

.workflow-steps li:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 60px;
    bottom: 0;
    left: 29px;
    width: 1px;
    background: linear-gradient(var(--violet), rgba(106, 77, 247, .12));
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border: 1px solid #ddd8ff;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--violet);
    background: var(--violet-soft);
    font-size: 12px;
    font-weight: 800;
}

.workflow-steps h3 {
    margin: 5px 0 10px;
    color: var(--ink-deep);
    font-size: 22px;
    font-weight: 800;
}

.workflow-steps p {
    max-width: 530px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.75;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.team-grid article {
    min-height: 255px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.team-grid article:hover {
    border-color: #d6d1ff;
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.team-icon {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #a15d2e;
    background: #fff0e4;
    font-size: 10px;
    font-weight: 800;
}

.team-icon.violet {
    color: var(--violet);
    background: var(--violet-soft);
}

.team-icon.blue {
    color: var(--blue);
    background: #eaf1ff;
}

.team-icon.green {
    color: var(--green);
    background: #e8f8f0;
}

.team-grid h3 {
    margin-bottom: 9px;
    color: var(--ink-deep);
    font-size: 17px;
    font-weight: 800;
}

.team-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.story-section {
    background: #fff;
}

.story-card {
    position: relative;
    overflow: hidden;
    min-height: 470px;
    padding: 76px;
    border-radius: 32px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
    align-items: center;
    gap: 100px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 10%, rgba(106, 77, 247, .44), transparent 32%),
        radial-gradient(circle at 20% 120%, rgba(71, 118, 239, .24), transparent 38%),
        var(--ink-deep);
    box-shadow: 0 35px 80px rgba(11, 18, 53, .2);
}

.story-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .18;
    background-image: radial-gradient(rgba(255, 255, 255, .4) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(90deg, transparent, #000);
}

.story-quote-mark {
    position: absolute;
    top: -46px;
    left: 45px;
    color: rgba(255, 255, 255, .05);
    font-family: Georgia, serif;
    font-size: 300px;
    line-height: 1;
}

.story-copy,
.story-principles {
    position: relative;
    z-index: 2;
}

.story-copy blockquote {
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(29px, 3.2vw, 42px);
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: 1.26;
}

.story-copy > p {
    max-width: 650px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    line-height: 1.8;
}

.story-author {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-author > span {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    font-size: 10px;
    font-weight: 800;
}

.story-author strong,
.story-author small {
    display: block;
}

.story-author strong {
    margin-bottom: 2px;
    color: #fff;
    font-size: 11px;
}

.story-author small {
    color: rgba(255, 255, 255, .46);
    font-size: 8px;
}

.story-principles {
    padding: 8px 0;
    display: grid;
}

.story-principles > div {
    min-height: 91px;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
}

.story-principles > div:last-child {
    border-bottom: 0;
}

.story-principles > div > span {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #c0b6ff;
    background: rgba(255, 255, 255, .06);
}

.story-principles svg {
    width: 17px;
    height: 17px;
}

.story-principles p,
.story-principles strong,
.story-principles small {
    display: block;
    margin: 0;
}

.story-principles strong {
    margin-bottom: 4px;
    color: #fff;
    font-size: 12px;
}

.story-principles small {
    color: rgba(255, 255, 255, .52);
    font-size: 9px;
    line-height: 1.5;
}

.access-section {
    padding-top: 20px;
    background: #fff;
}

.access-card {
    position: relative;
    min-height: 495px;
    overflow: hidden;
    padding: 76px;
    border-radius: 32px;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: 60px;
    color: #fff;
    background: linear-gradient(135deg, #684bf4, #5437e9 60%, #4428cf);
    box-shadow: 0 32px 75px rgba(89, 61, 229, .26);
}

.access-pattern {
    position: absolute;
    inset: 0;
    opacity: .36;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at 78% 50%, #000, transparent 60%);
}

.access-copy,
.access-card-stack {
    position: relative;
    z-index: 2;
}

.access-copy h2 {
    max-width: 640px;
    color: #fff;
}

.access-copy > p {
    max-width: 640px;
    margin-bottom: 27px;
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    line-height: 1.8;
}

.access-notes {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}

.access-notes span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .65);
    font-size: 9px;
    font-weight: 600;
}

.access-notes svg {
    width: 12px;
    height: 12px;
    color: #acffce;
}

.access-card-stack {
    min-height: 315px;
}

.access-card-stack::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    transform: translateX(-50%);
}

.access-preview-card {
    position: absolute;
    width: 300px;
    min-height: 94px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 17px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 25px 55px rgba(25, 11, 102, .22);
    backdrop-filter: blur(14px);
}

.access-preview-card > span {
    width: 39px;
    height: 39px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--violet);
    background: var(--violet-soft);
}

.access-preview-card svg {
    width: 19px;
    height: 19px;
}

.access-preview-card small,
.access-preview-card strong,
.access-preview-card em {
    display: block;
}

.access-preview-card small {
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 7px;
}

.access-preview-card strong {
    margin-bottom: 2px;
    color: var(--ink);
    font-size: 11px;
}

.access-preview-card em {
    color: #8a91a7;
    font-size: 7px;
    font-style: normal;
}

.card-one {
    z-index: 3;
    top: 10px;
    right: 12px;
    transform: rotate(2.5deg);
}

.card-two {
    z-index: 2;
    top: 113px;
    left: 1px;
    transform: rotate(-2deg);
}

.card-three {
    z-index: 1;
    right: 2px;
    bottom: 0;
    opacity: .84;
    transform: rotate(1deg);
}

.faq-section {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(310px, .72fr) minmax(520px, 1.28fr);
    align-items: start;
    gap: 110px;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

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

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--ink-deep);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary > span {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: var(--violet);
    background: #fff;
    transition: transform .2s ease, background .2s ease;
}

.faq-list summary svg {
    width: 15px;
    height: 15px;
}

.faq-list details[open] summary > span {
    color: #fff;
    background: var(--violet);
    transform: rotate(45deg);
}

.faq-list details > p {
    max-width: 680px;
    padding: 0 54px 26px 0;
    margin: -4px 0 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.8;
}

.site-footer {
    padding: 72px 0 24px;
    color: #fff;
    background: var(--ink-deep);
}

.footer-grid {
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(500px, 1fr);
    gap: 80px;
}

.brand-light {
    color: #fff;
}

.brand-light .brand-mark {
    color: #fff;
}

.footer-brand p {
    max-width: 290px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

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

.footer-links strong {
    margin-bottom: 6px;
    color: #fff;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255, 255, 255, .52);
    font-size: 11px;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    min-height: 54px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .34);
    font-size: 9px;
}

.waitlist-modal {
    position: fixed;
    z-index: 200;
    inset: 0;
    padding: 24px;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}

.waitlist-modal:target,
.waitlist-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.waitlist-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 12, 37, .74);
    backdrop-filter: blur(10px);
}

.waitlist-dialog {
    position: relative;
    z-index: 2;
    width: min(980px, 100%);
    max-height: min(720px, calc(100vh - 48px));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 28px;
    display: grid;
    grid-template-columns: minmax(330px, .84fr) minmax(440px, 1.16fr);
    background: #fff;
    box-shadow: 0 40px 100px rgba(7, 12, 37, .38);
    transform: translateY(16px) scale(.985);
    transition: transform .22s ease;
}

.waitlist-modal:target .waitlist-dialog,
.waitlist-modal.is-open .waitlist-dialog {
    transform: translateY(0) scale(1);
}

.waitlist-close {
    position: absolute;
    z-index: 4;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, .9);
    transition: color .2s ease, transform .2s ease;
}

.waitlist-close:hover {
    color: var(--ink);
    transform: rotate(4deg);
}

.waitlist-close svg {
    width: 18px;
    height: 18px;
}

.waitlist-aside {
    position: relative;
    overflow: hidden;
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgba(106, 77, 247, .55), transparent 38%),
        var(--ink-deep);
}

.waitlist-aside::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -150px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 50px rgba(255, 255, 255, .025), 0 0 0 100px rgba(255, 255, 255, .018);
}

.waitlist-aside > * {
    position: relative;
    z-index: 2;
}

.modal-step {
    margin-bottom: 13px;
    display: block;
    color: var(--violet);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.waitlist-aside .modal-step {
    color: #bdb3ff;
}

.waitlist-aside h2,
.modal-heading h2,
.waitlist-success h2 {
    margin-bottom: 16px;
    color: inherit;
    font-size: 31px;
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.2;
}

.waitlist-aside > div > p {
    margin: 0;
    color: rgba(255, 255, 255, .59);
    font-size: 11px;
    line-height: 1.75;
}

.waitlist-aside ul {
    padding: 0;
    margin: 0;
    display: grid;
    gap: 11px;
    list-style: none;
}

.waitlist-aside li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .7);
    font-size: 10px;
    font-weight: 600;
}

.waitlist-aside li svg {
    width: 14px;
    height: 14px;
    color: #8ee6b7;
}

.waitlist-form-panel {
    min-width: 0;
    overflow-y: auto;
    padding: 58px 56px 48px;
    color: var(--ink);
    background: #fff;
}

.modal-heading {
    margin-bottom: 24px;
}

.modal-heading h2,
.waitlist-success h2 {
    color: var(--ink-deep);
}

.modal-heading > p,
.waitlist-success > p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.waitlist-flash {
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid #ffd3d8;
    border-radius: 11px;
    color: #a83c4b;
    background: #fff1f3;
    font-size: 10px;
    line-height: 1.5;
}

.waitlist-form {
    display: grid;
    gap: 17px;
}

.form-field {
    display: grid;
    gap: 7px;
}

.form-field > span {
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid #dfe3ed;
    border-radius: 11px;
    color: var(--ink);
    background: #fbfcfe;
    font-size: 11px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-field input {
    height: 48px;
    padding: 0 14px;
}

.form-field textarea {
    min-height: 112px;
    padding: 13px 14px;
    line-height: 1.6;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #a0a6b8;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--violet);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(106, 77, 247, .1);
}

.form-field > small {
    color: #9299ac;
    font-size: 8px;
}

.privacy-note {
    margin: -2px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #9299ac;
    font-size: 8px;
    text-align: center;
}

.privacy-note svg {
    width: 11px;
    height: 11px;
}

.waitlist-success {
    min-height: 470px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.success-mark {
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--green);
    background: #e8f8f0;
    box-shadow: 0 12px 28px rgba(22, 166, 106, .12);
}

.success-mark svg {
    width: 27px;
    height: 27px;
}

.waitlist-success .button {
    margin-top: 25px;
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 20px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, .85fr) minmax(470px, 1.15fr);
        gap: 24px;
    }

    .hero-copy h1 {
        font-size: 58px;
    }

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

    .hero-sync-core {
        width: 194px;
        height: 178px;
    }

    .hero-sync-card {
        width: 164px;
        min-height: 92px;
        padding: 12px;
    }

    .feature-card-large {
        gap: 32px;
    }

    .feature-card-wide {
        gap: 42px;
    }

    .workflow-grid,
    .faq-grid {
        gap: 70px;
    }

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

    .team-grid article {
        min-height: 220px;
    }

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

    .operations-panel {
        display: none;
    }

    .story-card,
    .access-card {
        padding: 60px;
        gap: 60px;
    }
}

@media (max-width: 940px) {
    .nav-toggle {
        position: relative;
        display: block;
    }

    .nav-menu {
        position: fixed;
        z-index: 60;
        top: 111px;
        right: 16px;
        left: 16px;
        max-height: calc(100vh - 128px);
        overflow-y: auto;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 18px;
        display: grid;
        gap: 14px;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 24px 60px rgba(17, 26, 68, .18);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    }

    .site-header.is-scrolled .nav-menu {
        top: 84px;
    }

    .nav-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links,
    .nav-actions {
        display: grid;
    }

    .nav-links {
        gap: 2px;
    }

    .nav-links a {
        padding: 12px;
        border-radius: 10px;
        font-size: 14px;
    }

    .nav-links a:hover {
        background: var(--surface-soft);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-actions {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

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

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

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-copy {
        max-width: 700px;
        padding: 32px 0 46px;
        text-align: center;
        justify-self: center;
    }

    .hero-copy h1,
    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-note {
        justify-content: center;
    }

    .hero-visual {
        width: min(720px, 100%);
        min-height: 560px;
        justify-self: center;
    }

    .hero-proof {
        padding: 31px 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .proof-list {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 12px;
    }

    .section {
        padding: 96px 0;
    }

    .section-heading-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-heading-split p {
        max-width: 650px;
    }

    .app-preview {
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .preview-sidebar {
        padding-inline: 9px;
    }

    .preview-main {
        padding: 22px 20px 26px;
    }

    .preview-head-actions .preview-filter:nth-child(2) {
        display: none;
    }

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

    .rota-board-days,
    .rota-location-row {
        grid-template-columns: 105px repeat(7, minmax(60px, 1fr));
    }

    .feature-card-large,
    .feature-card-wide {
        grid-template-columns: 1fr;
    }

    .feature-card-large {
        gap: 54px;
    }

    .feature-card-wide {
        gap: 42px;
    }

    .workflow-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .workflow-copy,
    .faq-intro {
        position: static;
        max-width: 680px;
    }

    .story-card {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .story-principles {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .story-principles > div {
        min-height: 150px;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
        background: rgba(255, 255, 255, .04);
    }

    .access-card {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .access-card-stack {
        width: min(560px, 100%);
        justify-self: center;
    }

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

    .waitlist-dialog {
        grid-template-columns: minmax(280px, .72fr) minmax(400px, 1.28fr);
    }

    .waitlist-aside {
        padding: 30px;
    }

    .waitlist-form-panel {
        padding-inline: 40px;
    }
}

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

    .announcement-inner {
        justify-content: flex-start;
        white-space: nowrap;
    }

    .announcement-inner > span:not(.announcement-dot) {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .announcement-inner a {
        margin-left: auto;
    }

    .site-header {
        height: 70px;
    }

    .nav-menu {
        top: 105px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

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

    .hero-copy {
        padding-top: 24px;
    }

    .hero-copy h1 {
        font-size: clamp(43px, 12vw, 59px);
        letter-spacing: -.06em;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-visual {
        min-height: 600px;
        border-radius: 30px 30px 0 0;
    }

    .hero-sync-heading {
        min-height: 68px;
        padding: 0 18px;
    }

    .hero-sync-scene {
        inset: 68px 14px 14px;
        display: flex;
        flex-direction: column;
    }

    .hero-sync-connector {
        display: none;
    }

    .hero-sync-core {
        position: relative;
        top: auto;
        left: auto;
        width: 220px;
        height: 176px;
        margin: 16px auto 18px;
        transform: none;
    }

    .hero-sync-modules {
        position: static;
        inset: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-content: start;
        gap: 10px;
    }

    .hero-sync-card,
    .hero-sync-rota,
    .hero-sync-clock,
    .hero-sync-leave,
    .hero-sync-updates {
        position: static;
        width: auto;
        min-width: 0;
        min-height: 96px;
    }

    .hero-proof {
        min-height: 130px;
    }

    .proof-list {
        gap: 9px 21px;
    }

    .proof-list span:not(:last-child)::after {
        right: -12px;
    }

    .section {
        padding: 78px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .workflow-copy h2,
    .faq-intro h2,
    .access-copy h2 {
        font-size: 38px;
    }

    .window-bar {
        grid-template-columns: 1fr minmax(170px, 260px) 1fr;
    }

    .app-preview {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .preview-sidebar {
        display: none;
    }

    .preview-main {
        padding: 23px 18px;
        grid-template-rows: auto 44px minmax(0, 1fr);
        gap: 12px;
    }

    .preview-main-head {
        align-items: flex-start;
        gap: 10px;
    }

    .preview-head-actions .preview-filter {
        display: none;
    }

    .preview-tabs {
        min-height: 44px;
    }

    .preview-tabs em {
        display: none;
    }

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

    .rota-board-days,
    .rota-location-row {
        grid-template-columns: 100px repeat(7, minmax(60px, 1fr));
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .feature-card-large,
    .feature-card-wide {
        grid-column: auto;
        padding: 30px;
        border-radius: 23px;
    }

    .feature-card-large {
        min-height: auto;
    }

    .feature-track,
    .feature-leave {
        min-height: 410px;
        padding-bottom: 180px;
    }

    .mini-rota {
        margin-bottom: 20px;
        padding: 17px;
    }

    .mini-rota::before {
        right: -18px;
        bottom: -20px;
    }

    .mini-days {
        grid-template-columns: 76px repeat(5, minmax(0, 1fr));
    }

    .mini-person {
        grid-template-columns: 27px 45px repeat(5, minmax(0, 1fr));
    }

    .feature-card-wide {
        min-height: 520px;
    }

    .workflow-steps li {
        padding-left: 82px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-grid article {
        min-height: 185px;
    }

    .story-card,
    .access-card {
        width: calc(100% - 32px);
        padding: 38px 28px;
        border-radius: 25px;
    }

    .story-principles {
        grid-template-columns: 1fr;
    }

    .story-principles > div {
        min-height: auto;
        flex-direction: row;
        align-items: center;
    }

    .access-card {
        min-height: auto;
    }

    .access-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

    .access-card-stack {
        min-height: 335px;
    }

    .access-preview-card {
        width: min(300px, 88%);
    }

    .faq-list summary {
        min-height: 76px;
        font-size: 13px;
    }

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

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

    .waitlist-modal {
        padding: 12px;
    }

    .waitlist-dialog {
        max-height: calc(100vh - 24px);
        border-radius: 22px;
        grid-template-columns: 1fr;
    }

    .waitlist-aside {
        display: none;
    }

    .waitlist-form-panel {
        padding: 54px 26px 30px;
    }

    .waitlist-close {
        top: 12px;
        right: 12px;
    }

    .waitlist-success {
        min-height: 430px;
    }
}

@media (max-width: 680px) {
    .rota-board-days,
    .rota-location-row {
        grid-template-columns: 94px repeat(3, minmax(0, 1fr));
    }

    .rota-board-days > *:nth-child(n+5),
    .rota-location-row > *:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 480px) {
    .announcement-inner {
        font-size: 10px;
    }

    .announcement-inner > span:not(.announcement-dot) {
        display: none;
    }

    .announcement-inner a {
        margin: 0;
    }

    .nav-menu,
    .site-header.is-scrolled .nav-menu {
        top: 112px;
    }

    .announcement-bar:has(+ .site-header.is-scrolled) .announcement-inner {
        min-height: 36px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

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

    .hero-visual {
        min-height: 530px;
    }

    .hero-sync-heading {
        min-height: 64px;
        padding: 0 14px;
        gap: 10px;
    }

    .hero-sync-brand {
        gap: 7px;
    }

    .hero-sync-brand-mark {
        width: 27px;
        height: 27px;
    }

    .hero-sync-brand strong {
        font-size: 11px;
    }

    .hero-sync-heading-meta {
        gap: 7px;
    }

    .hero-sync-live {
        padding: 4px 7px;
        font-size: 8px;
    }

    .hero-sync-heading time {
        font-size: 8px;
    }

    .hero-sync-scene {
        inset: 64px 10px 10px;
    }

    .hero-sync-core {
        width: 190px;
        height: 166px;
        margin: 14px auto;
        padding: 16px;
        border-radius: 24px;
    }

    .hero-sync-logo {
        width: 45px;
        height: 45px;
        margin-bottom: 7px;
        padding: 7px;
        border-radius: 15px;
    }

    .hero-sync-core > small {
        margin-bottom: 2px;
        font-size: 8.5px;
    }

    .hero-sync-core > strong {
        font-size: 18px;
    }

    .hero-sync-core > em {
        margin-top: 6px;
        font-size: 8.5px;
    }

    .hero-sync-modules {
        gap: 8px;
    }

    .hero-sync-card,
    .hero-sync-rota,
    .hero-sync-clock,
    .hero-sync-leave,
    .hero-sync-updates {
        position: static;
        width: auto;
        min-width: 0;
        min-height: 94px;
        padding: 10px;
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 8px;
    }

    .hero-sync-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .hero-sync-icon svg {
        width: 15px;
        height: 15px;
    }

    .hero-sync-card strong {
        font-size: 10px;
        white-space: normal;
    }

    .hero-sync-card em {
        margin-top: 5px;
        font-size: 8.5px;
    }

    .proof-list {
        font-size: 11px;
    }

    .window-bar {
        grid-template-columns: 45px 1fr 45px;
    }

    .preview-main-head h3 {
        font-size: 16px;
    }

    .preview-main {
        padding: 18px 12px 20px;
    }

    .preview-publish {
        min-height: 32px;
        padding-inline: 9px;
    }

    .preview-tabs span {
        padding-inline: 8px;
    }

    .preview-tabs span:nth-child(n+3) {
        display: none;
    }

    .rota-board {
        padding: 12px;
    }

    .rota-board-head > span {
        display: none;
    }

    .rota-board-days,
    .rota-location-row {
        grid-template-columns: 88px repeat(2, minmax(0, 1fr));
    }

    .rota-board-days > *:nth-child(n+4),
    .rota-location-row > *:nth-child(n+4) {
        display: none;
    }

    .rota-location-row {
        min-height: 96px;
    }

    .rota-location {
        padding-inline: 5px;
        gap: 6px;
    }

    .rota-location > span {
        width: 25px;
        height: 25px;
        border-radius: 8px;
    }

    .rota-location strong {
        font-size: 7.5px;
    }

    .rota-location small {
        font-size: 5.5px;
    }

    .rota-shift {
        min-height: 62px;
        margin: 8px 3px;
        padding: 8px 6px;
    }

    .rota-shift strong {
        font-size: 7px;
    }

    .product-caption {
        align-items: flex-start;
        text-align: left;
    }

    .mini-rota {
        overflow: hidden;
    }

    .mini-rota-head,
    .mini-days,
    .mini-person {
        min-width: 430px;
    }

    .clock-widget,
    .leave-widget {
        right: 24px;
        left: 24px;
    }

    .leave-widget {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .approve-pill {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .feature-card-wide {
        min-height: 550px;
    }

    .workflow-steps li {
        min-height: 195px;
        padding-left: 69px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }

    .workflow-steps li:not(:last-child)::before {
        top: 50px;
        left: 24px;
    }

    .story-copy blockquote {
        font-size: 27px;
    }

    .access-card-stack {
        min-height: 320px;
    }

    .card-one {
        right: -5px;
    }

    .card-two {
        left: -5px;
    }

    .card-three {
        right: -5px;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

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

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

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