@font-face {
    font-family: "Poppins";
    src: url("assets/fonts/poppins-regular.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("assets/fonts/poppins-bold.otf") format("opentype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("assets/fonts/inter-regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("assets/fonts/inter-medium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("assets/fonts/inter-bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --navy-950: #071b2d;
    --navy-900: #102a43;
    --navy-800: #163a5d;
    --blue-600: #1769aa;
    --blue-500: #2586cf;
    --gold-500: #f4b63e;
    --gold-400: #ffc95f;
    --mint-500: #35d3b4;
    --mint-100: #dff7f1;
    --coral-500: #f36f5f;
    --paper: #f5f2eb;
    --white: #ffffff;
    --ink: #122335;
    --muted: #637282;
    --line: #dbe3e8;
    --shadow-lg: 0 28px 80px rgba(4, 21, 35, 0.28);
    --shadow-md: 0 18px 44px rgba(16, 42, 67, 0.12);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shell: 1240px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

button,
a {
    touch-action: manipulation;
}

:focus-visible {
    outline: 3px solid var(--gold-400);
    outline-offset: 4px;
}

.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;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--navy-950);
    background: var(--gold-500);
    font-weight: 700;
    transition: transform 180ms var(--ease);
}

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

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

.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 84px;
    gap: 32px;
}

.brand-link {
    display: inline-flex;
    width: 196px;
    min-height: 44px;
    align-items: center;
}

.brand-link img {
    width: 196px;
    height: auto;
    filter: brightness(0) invert(1);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 31px;
}

.desktop-nav a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 180ms var(--ease);
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 200ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    justify-self: end;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms var(--ease), background-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

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

.button:active {
    transform: translateY(0);
}

.button-small {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 14px;
}

.button-gold {
    color: var(--navy-950);
    background: var(--gold-500);
    box-shadow: 0 10px 30px rgba(244, 182, 62, 0.18);
}

.button-gold:hover {
    background: var(--gold-400);
    box-shadow: 0 14px 34px rgba(244, 182, 62, 0.26);
}

.menu-button,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 920px;
    padding: 164px 0 0;
    color: var(--white);
    background: var(--navy-950);
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 118px;
    content: "";
    background: var(--navy-900);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.075;
    background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.hero-signal {
    position: absolute;
    border: 1px solid rgba(53, 211, 180, 0.28);
    border-radius: 50%;
    pointer-events: none;
}

.hero-signal::before,
.hero-signal::after {
    position: absolute;
    top: 50%;
    left: 50%;
    border: inherit;
    border-radius: inherit;
    content: "";
    transform: translate(-50%, -50%);
}

.hero-signal::before {
    width: 72%;
    height: 72%;
}

.hero-signal::after {
    width: 42%;
    height: 42%;
}

.hero-signal-one {
    top: 140px;
    right: -180px;
    width: 560px;
    height: 560px;
}

.hero-signal-two {
    bottom: 50px;
    left: -210px;
    width: 430px;
    height: 430px;
    opacity: .55;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(560px, 1.12fr);
    align-items: center;
    gap: clamp(48px, 6vw, 88px);
}

.hero-copy {
    padding-bottom: 82px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--mint-500);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 9px;
    height: 9px;
    border: 2px solid var(--mint-500);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(53, 211, 180, .12);
}

.hero h1 {
    max-width: 670px;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(48px, 5.3vw, 78px);
    font-weight: 700;
    letter-spacing: -.055em;
    line-height: .98;
}

.hero h1 span {
    color: var(--gold-500);
}

.hero-lede {
    max-width: 600px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 34px;
}

.text-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    text-underline-offset: 5px;
}

.text-link span {
    color: var(--gold-500);
    font-size: 18px;
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.hero-assurances li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
}

.hero-assurances svg {
    color: var(--mint-500);
}

.hero-product {
    position: relative;
    padding: 30px 0 92px;
}

.product-halo {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 740px;
    height: 560px;
    border: 1px solid rgba(37, 134, 207, .34);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-9deg);
}

.control-board {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 24px;
    background: #f8fafb;
    box-shadow: var(--shadow-lg), 0 0 0 10px rgba(255,255,255,.035);
    color: var(--ink);
    transform: rotate(1deg);
    transform-origin: center;
}

.board-topbar {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.board-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.board-brand img {
    width: 34px;
    height: 34px;
}

.board-brand div {
    display: grid;
    line-height: 1.2;
}

.board-brand strong {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
}

.board-brand span {
    color: var(--muted);
    font-size: 10px;
}

.live-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid #bcece1;
    border-radius: 999px;
    color: #127c68;
    background: #ebfaf6;
    font-size: 10px;
    font-weight: 700;
}

.live-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint-500);
    box-shadow: 0 0 0 4px rgba(53, 211, 180, .16);
}

.board-body {
    display: grid;
    grid-template-columns: 54px 1fr;
    min-height: 510px;
}

.board-sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 13px;
    padding: 18px 9px;
    background: var(--navy-900);
}

.side-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 9px;
    color: rgba(255,255,255,.48);
}

.side-icon svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.side-icon-active {
    color: var(--navy-950);
    background: var(--gold-500);
}

.side-icon-bottom {
    margin-top: auto;
}

.board-content {
    min-width: 0;
    padding: 24px 25px 25px;
}

.board-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.board-kicker {
    color: var(--blue-600);
    font-family: "Poppins", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .06em;
}

.board-heading h2 {
    margin: 4px 0 0;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    line-height: 1.15;
}

.health-score {
    display: grid;
    grid-template-columns: auto auto;
    align-items: baseline;
    padding-left: 20px;
    border-left: 1px solid var(--line);
    color: #127c68;
    line-height: 1;
}

.health-score strong {
    font-family: "Poppins", sans-serif;
    font-size: 26px;
}

.health-score span {
    font-size: 11px;
    font-weight: 700;
}

.health-score small {
    grid-column: 1 / -1;
    margin-top: 4px;
    color: var(--muted);
    font-size: 8px;
}

.shift-rail {
    position: relative;
    margin-top: 28px;
    padding: 0 5px;
}

.rail-line {
    position: absolute;
    z-index: 0;
    top: 7px;
    right: 14px;
    left: 14px;
    height: 2px;
    background: #dbe3e8;
}

.rail-line span {
    display: block;
    width: 43%;
    height: 100%;
    background: var(--mint-500);
}

.rail-stages {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.rail-stage {
    display: grid;
    justify-items: center;
    color: var(--muted);
    font-size: 8px;
}

.rail-stage > span {
    width: 16px;
    height: 16px;
    border: 4px solid #f8fafb;
    border-radius: 50%;
    background: #cbd6dc;
}

.rail-stage strong {
    margin-top: 6px;
    color: var(--ink);
    font-size: 9px;
}

.rail-stage small {
    font-size: 7px;
}

.rail-complete > span {
    background: var(--mint-500);
}

.rail-live > span {
    background: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(244, 182, 62, .16);
}

.board-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
}

.board-summary div {
    display: grid;
    gap: 2px;
    padding: 11px 13px;
}

.board-summary div + div {
    border-left: 1px solid var(--line);
}

.board-summary span {
    color: var(--muted);
    font-size: 8px;
}

.board-summary strong {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
}

.board-summary .summary-alert {
    color: var(--coral-500);
}

.task-stack {
    display: grid;
    gap: 8px;
    margin-top: 15px;
}

.task-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 61px;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--white);
}

.task-check,
.task-alert-icon {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 9px;
}

.task-check {
    color: #12826d;
    background: var(--mint-100);
}

.task-check svg,
.task-alert-icon svg {
    width: 18px;
    height: 18px;
}

.task-alert {
    border-color: #f3c3bc;
    background: #fff7f5;
}

.task-alert-icon {
    color: #b84539;
    background: #ffe2de;
}

.task-copy {
    display: grid;
    min-width: 0;
    line-height: 1.25;
}

.task-copy strong {
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.task-copy span,
.task-row time {
    margin-top: 3px;
    color: var(--muted);
    font-size: 8px;
}

.evidence-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--blue-600);
    background: #e8f3fb;
    font-size: 8px;
    font-weight: 700;
}

.evidence-chip svg {
    width: 13px;
    height: 13px;
}

.owner-avatar {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy-900);
    font-size: 9px;
    font-weight: 700;
}

.owner-glance {
    position: absolute;
    right: -26px;
    bottom: 42px;
    display: flex;
    min-width: 282px;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: var(--navy-900);
    box-shadow: 0 18px 40px rgba(0,0,0,.24);
    transform: rotate(-2deg);
}

.glance-icon {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 10px;
    color: var(--navy-950);
    background: var(--gold-500);
}

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

.owner-glance div {
    display: grid;
    line-height: 1.3;
}

.owner-glance strong {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
}

.owner-glance span {
    color: rgba(255,255,255,.6);
    font-size: 9px;
}

.shift-sequence {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 118px;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.68);
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
}

.shift-sequence i {
    width: 42px;
    height: 1px;
    background: rgba(255,255,255,.22);
}

.shift-sequence strong {
    margin-left: auto;
    color: var(--gold-500);
    font-size: 12px;
    letter-spacing: 0;
}

.section {
    padding: 132px 0;
}

.section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
    align-items: end;
    gap: 80px;
}

.section-number {
    display: block;
    margin-bottom: 20px;
    color: var(--blue-600);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

.section-heading h2 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(40px, 4.5vw, 66px);
    letter-spacing: -.045em;
    line-height: 1.04;
}

.section-heading h2 em {
    color: var(--blue-600);
    font-style: normal;
}

.section-heading > p {
    margin: 0 0 7px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.gap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 62px;
}

.gap-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.55);
}

.gap-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    content: "";
    background: #cbd6dc;
}

.gap-icon {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    margin-bottom: 40px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--muted);
    background: var(--white);
}

.gap-icon svg {
    width: 31px;
    height: 31px;
}

.gap-icon img {
    width: 42px;
    height: 42px;
}

.gap-label {
    color: var(--muted);
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
}

.gap-card h3 {
    margin: 9px 0 12px;
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    line-height: 1.15;
}

.gap-card p {
    margin: 0;
    color: var(--muted);
}

.gap-card-chippy {
    color: var(--white);
    border-color: var(--navy-900);
    background: var(--navy-900);
    box-shadow: var(--shadow-md);
    transform: translateY(-18px);
}

.gap-card-chippy::after {
    background: var(--gold-500);
}

.gap-card-chippy .gap-label {
    color: var(--gold-500);
}

.gap-card-chippy .gap-icon {
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
}

.gap-card-chippy p {
    color: rgba(255,255,255,.68);
}

.gap-proof {
    position: absolute;
    right: 32px;
    bottom: 27px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.58);
    font-size: 11px;
}

.gap-proof span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint-500);
    box-shadow: 0 0 0 5px rgba(53,211,180,.12);
}

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

.rhythm-heading {
    display: grid;
    grid-template-columns: 1fr .72fr;
    align-items: end;
    gap: 70px;
}

.rhythm-heading .section-number {
    grid-column: 1 / -1;
    margin-bottom: -44px;
}

.rhythm-heading p,
.centred-heading p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.rhythm-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 32px;
    margin-top: 68px;
}

.workflow-tabs {
    display: grid;
    align-content: start;
    gap: 8px;
}

.workflow-tab {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    min-height: 100px;
    align-items: center;
    gap: 13px;
    padding: 17px 18px;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--ink);
    background: #f9fbfc;
    text-align: left;
    cursor: pointer;
    transition: color 220ms var(--ease), border-color 220ms var(--ease), background-color 220ms var(--ease), transform 220ms var(--ease);
}

.workflow-tab:hover {
    border-color: #9cb6c8;
    transform: translateX(3px);
}

.workflow-tab.is-active {
    color: var(--white);
    border-color: var(--navy-900);
    background: var(--navy-900);
    box-shadow: var(--shadow-md);
}

.workflow-index {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--blue-600);
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 700;
}

.workflow-tab.is-active .workflow-index {
    color: var(--navy-950);
    border-color: var(--gold-500);
    background: var(--gold-500);
}

.workflow-name {
    display: grid;
    line-height: 1.3;
}

.workflow-name strong {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
}

.workflow-name small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
}

.workflow-tab.is-active .workflow-name small {
    color: rgba(255,255,255,.6);
}

.workflow-tab > svg {
    color: var(--blue-600);
}

.workflow-tab.is-active > svg {
    color: var(--gold-500);
}

.workflow-demo {
    position: relative;
    padding: 20px;
    border-radius: 22px;
    background: var(--navy-950);
    box-shadow: var(--shadow-lg);
}

.workflow-demo::before {
    position: absolute;
    top: -13px;
    right: 45px;
    width: 76px;
    height: 26px;
    border: 1px solid rgba(16,42,67,.22);
    border-radius: 7px 7px 0 0;
    content: "";
    background: var(--gold-500);
}

.demo-window {
    overflow: hidden;
    min-height: 452px;
    border-radius: 15px;
    background: #f6f9fb;
}

.demo-window-bar {
    display: flex;
    min-height: 60px;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.demo-window-title {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 700;
}

.demo-window-title img {
    width: 28px;
    height: 28px;
}

.demo-sync {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 9px;
}

.demo-sync i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint-500);
}

.workflow-panel {
    min-height: 392px;
    padding: 28px 30px 24px;
}

.workflow-panel[hidden] {
    display: none;
}

.panel-overline {
    color: var(--blue-600);
    font-family: "Poppins", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
}

.panel-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 7px;
}

.panel-title-row h3 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    letter-spacing: -.025em;
}

.panel-score {
    color: var(--blue-600);
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.panel-score-good {
    color: #148772;
}

.readiness-list {
    display: grid;
    gap: 8px;
    margin-top: 24px;
}

.readiness-list > div {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 11px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--white);
}

.readiness-check {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 9px;
    color: #148772;
    background: var(--mint-100);
}

.readiness-check svg {
    width: 17px;
    height: 17px;
}

.readiness-list p {
    display: grid;
    margin: 0;
    line-height: 1.3;
}

.readiness-list strong {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
}

.readiness-list small,
.readiness-list time {
    color: var(--muted);
    font-size: 8px;
}

.panel-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding: 13px 14px;
    border: 1px solid #bde7de;
    border-radius: 10px;
    color: #267668;
    background: #eaf8f4;
    font-size: 9px;
}

.panel-proof span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.panel-proof svg {
    width: 15px;
    height: 15px;
}

.panel-proof strong {
    margin-left: auto;
}

.trade-task {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 12px;
    margin-top: 9px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--white);
}

.trade-task-due {
    margin-top: 24px;
    border-color: #f0cc82;
    background: #fffaf0;
}

.trade-time {
    color: var(--blue-600);
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 700;
}

.trade-task div {
    display: grid;
    line-height: 1.3;
}

.trade-task strong {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
}

.trade-task small,
.task-state {
    color: var(--muted);
    font-size: 8px;
}

.trade-task button,
.handover-actions button,
.alert-example button {
    min-height: 34px;
    padding: 7px 10px;
    border: 0;
    border-radius: 8px;
    color: var(--white);
    background: var(--navy-900);
    font-size: 8px;
    font-weight: 700;
    pointer-events: none;
}

.panel-proof-trade i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint-500);
}

.handover-people {
    display: grid;
    grid-template-columns: 44px 1fr 44px 44px 1fr;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
}

.handover-people > div {
    display: grid;
    line-height: 1.2;
}

.handover-people small {
    color: var(--muted);
    font-size: 8px;
}

.handover-people strong {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
}

.handover-people > svg {
    color: var(--gold-500);
}

.person {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy-900);
    font-size: 10px;
    font-weight: 700;
}

.person-in {
    background: var(--blue-600);
}

.handover-note {
    display: grid;
    grid-template-columns: 10px 1fr;
    gap: 12px;
    margin-top: 11px;
    padding: 15px;
    border: 1px solid #f2c3bc;
    border-radius: 11px;
    background: #fff7f5;
}

.note-severity {
    width: 8px;
    height: 8px;
    margin-top: 5px;
    border-radius: 50%;
    background: var(--coral-500);
}

.handover-note strong {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
}

.handover-note p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 8px;
    line-height: 1.45;
}

.handover-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    color: var(--muted);
    font-size: 9px;
}

.close-progress {
    margin-top: 25px;
}

.close-progress > span {
    display: block;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #dfe8ed;
}

.close-progress i {
    display: block;
    width: var(--complete);
    height: 100%;
    border-radius: inherit;
    background: var(--mint-500);
}

.close-progress small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 8px;
}

.close-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 20px;
}

.close-list span {
    position: relative;
    padding: 12px 10px 12px 35px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    font-size: 9px;
    font-weight: 700;
}

.close-list span::before {
    position: absolute;
    top: 50%;
    left: 12px;
    display: grid;
    width: 15px;
    height: 15px;
    place-items: center;
    border-radius: 50%;
    content: "✓";
    color: #147965;
    background: var(--mint-100);
    font-size: 9px;
    transform: translateY(-50%);
}

.close-list .current {
    border-color: #f0cb80;
    background: #fffaf0;
}

.close-list .current::before {
    content: "";
    background: var(--gold-500);
}

.benefits-section {
    background: var(--paper);
}

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

.centred-heading p {
    max-width: 650px;
    margin: 24px auto 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 64px;
}

.benefit-card {
    position: relative;
    min-height: 430px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.64);
}

.benefit-number {
    position: absolute;
    top: 35px;
    right: 34px;
    color: #a3b1bc;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.benefit-icon {
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    border: 1px solid #b9d9ed;
    border-radius: 16px;
    color: var(--blue-600);
    background: #eaf5fc;
}

.benefit-icon svg {
    width: 29px;
    height: 29px;
}

.benefit-card h3 {
    margin: 58px 0 13px;
    font-family: "Poppins", sans-serif;
    font-size: 28px;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
}

.benefit-card ul {
    display: grid;
    gap: 8px;
    margin: 28px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.benefit-card li {
    position: relative;
    padding-left: 17px;
    font-size: 13px;
    font-weight: 700;
}

.benefit-card li::before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    content: "";
    background: var(--mint-500);
}

.benefit-card-dark {
    color: var(--white);
    border-color: var(--navy-900);
    background: var(--navy-900);
    box-shadow: var(--shadow-md);
    transform: translateY(-18px);
}

.benefit-card-dark .benefit-number {
    color: rgba(255,255,255,.38);
}

.benefit-card-dark .benefit-icon {
    color: var(--navy-950);
    border-color: var(--gold-500);
    background: var(--gold-500);
}

.benefit-card-dark p {
    color: rgba(255,255,255,.66);
}

.benefit-card-dark ul {
    border-color: rgba(255,255,255,.13);
}

.review-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.review-grid {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image: linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
    background-size: 64px 64px;
}

.review-layout {
    position: relative;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: 90px;
}

.section-number-light {
    color: var(--mint-500);
}

.review-copy h2 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(44px, 5vw, 68px);
    letter-spacing: -.05em;
    line-height: 1.03;
}

.review-copy h2 em {
    color: var(--gold-500);
    font-style: normal;
}

.review-copy > p {
    margin: 26px 0 0;
    color: rgba(255,255,255,.67);
    font-size: 17px;
    line-height: 1.7;
}

.review-benefits {
    display: grid;
    gap: 14px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.review-benefits li {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
}

.review-benefits span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 9px;
    color: var(--gold-500);
    font-family: "Poppins", sans-serif;
    font-size: 9px;
}

.review-pipeline {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    background: rgba(255,255,255,.035);
}

.pipeline-card {
    padding: 22px;
    border-radius: 14px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 16px 34px rgba(0,0,0,.22);
}

.pipeline-review {
    margin-right: 60px;
}

.pipeline-action {
    margin-left: 60px;
}

.pipeline-meta,
.pipeline-source,
.action-owner,
.action-owner > div {
    display: flex;
    align-items: center;
}

.pipeline-meta {
    justify-content: space-between;
    color: var(--muted);
    font-family: "Poppins", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
}

.review-stars {
    color: var(--gold-500);
    letter-spacing: .1em;
}

.pipeline-review blockquote {
    margin: 24px 0;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.pipeline-source {
    gap: 9px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 9px;
}

.pipeline-source strong {
    margin-left: auto;
}

.source-avatar {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue-600);
    font-weight: 700;
}

.pipeline-connector {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 12px 0;
    color: var(--mint-500);
    font-size: 9px;
    font-weight: 700;
}

.pipeline-connector i {
    width: 1px;
    height: 25px;
    background: var(--mint-500);
}

.action-heading {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 12px;
}

.action-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 11px;
    color: var(--navy-950);
    background: var(--gold-500);
}

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

.action-heading div {
    display: grid;
    line-height: 1.3;
}

.action-heading small,
.action-owner small {
    color: var(--blue-600);
    font-family: "Poppins", sans-serif;
    font-size: 8px;
    font-weight: 700;
}

.action-heading strong {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
}

.action-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.action-tags span,
.due-chip {
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--blue-600);
    background: #e9f3fa;
    font-size: 8px;
    font-weight: 700;
}

.action-owner {
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
}

.action-owner > div {
    gap: 9px;
}

.action-owner p {
    display: grid;
    margin: 0;
    line-height: 1.25;
}

.action-owner p strong {
    font-size: 9px;
}

.due-chip {
    color: #9c5c00;
    background: #fff3d8;
}

.pipeline-result {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 12px;
    margin: 18px 28px 0;
    padding: 14px;
    border: 1px solid rgba(53,211,180,.25);
    border-radius: 12px;
    background: rgba(53,211,180,.09);
}

.pipeline-result > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 10px;
    color: var(--navy-950);
    background: var(--mint-500);
}

.pipeline-result svg {
    width: 20px;
    height: 20px;
}

.pipeline-result p {
    display: grid;
    margin: 0;
    line-height: 1.35;
}

.pipeline-result strong {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
}

.pipeline-result small {
    color: rgba(255,255,255,.6);
    font-size: 9px;
}

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

.feature-heading {
    display: grid;
    grid-template-columns: 1fr 260px;
    align-items: end;
    gap: 70px;
}

.feature-heading-aside {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-heading-aside strong {
    color: var(--blue-600);
    font-family: "Poppins", sans-serif;
    font-size: 48px;
    line-height: 1;
}

.feature-heading-aside p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.feature-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 64px;
}

.feature-tile {
    position: relative;
    display: flex;
    min-height: 320px;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
}

.feature-tile-wide {
    grid-column: span 2;
}

.tile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tile-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--blue-600);
    background: var(--white);
}

.tile-icon svg {
    width: 25px;
    height: 25px;
}

.tile-label {
    color: var(--blue-600);
    font-family: "Poppins", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .07em;
}

.feature-tile h3 {
    max-width: 480px;
    margin: 38px 0 12px;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    letter-spacing: -.025em;
    line-height: 1.16;
}

.feature-tile p {
    max-width: 600px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.feature-tile-blue {
    color: var(--white);
    border-color: var(--blue-600);
    background: var(--blue-600);
}

.feature-tile-blue .tile-label {
    color: var(--gold-500);
}

.feature-tile-blue .tile-icon {
    color: var(--navy-950);
    border-color: var(--gold-500);
    background: var(--gold-500);
}

.feature-tile-blue p {
    color: rgba(255,255,255,.72);
}

.workflow-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 28px;
}

.workflow-chips span {
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: rgba(255,255,255,.8);
    font-size: 10px;
    font-weight: 700;
}

.feature-tile-gold {
    border-color: var(--gold-500);
    background: var(--gold-500);
}

.feature-tile-gold .tile-label,
.feature-tile-gold .tile-icon {
    color: var(--navy-950);
}

.feature-tile-gold .tile-icon {
    border-color: rgba(7,27,45,.16);
    background: rgba(255,255,255,.28);
}

.feature-tile-gold p {
    color: rgba(7,27,45,.72);
}

.alert-example {
    display: grid;
    grid-template-columns: 9px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding: 12px;
    border: 1px solid #f2c3bc;
    border-radius: 11px;
    background: #fff8f6;
}

.alert-example > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral-500);
    box-shadow: 0 0 0 5px rgba(243,111,95,.12);
}

.alert-example p {
    display: grid;
    min-width: 0;
    line-height: 1.25;
}

.alert-example strong {
    color: var(--ink);
    font-size: 10px;
}

.alert-example small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 8px;
}

.feature-tile-dark {
    color: var(--white);
    border-color: var(--navy-900);
    background: var(--navy-900);
}

.feature-tile-dark .tile-icon {
    color: var(--navy-950);
    border-color: var(--gold-500);
    background: var(--gold-500);
}

.feature-tile-dark .tile-label {
    color: var(--mint-500);
}

.feature-tile-dark p {
    color: rgba(255,255,255,.64);
}

.later-chip {
    align-self: flex-start;
    margin-top: auto;
    padding: 7px 9px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 7px;
    color: var(--gold-500);
    font-family: "Poppins", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .06em;
}

.use-section {
    overflow: hidden;
    background: var(--paper);
}

.use-layout {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 110px;
}

.use-copy h2 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(46px, 5vw, 70px);
    letter-spacing: -.05em;
    line-height: 1.02;
}

.use-copy > p {
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.use-list {
    display: grid;
    gap: 8px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.use-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: start;
    gap: 13px;
    padding: 15px 0;
    border-top: 1px solid var(--line);
}

.use-list > li > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 10px;
    color: #147965;
    background: var(--mint-100);
}

.use-list svg {
    width: 19px;
    height: 19px;
}

.use-list div {
    display: grid;
}

.use-list strong {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.use-list small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.mobile-concept {
    position: relative;
    display: grid;
    justify-items: center;
    min-height: 680px;
}

.mobile-concept::before,
.mobile-concept::after {
    position: absolute;
    z-index: 0;
    border: 1px solid #c7dbe8;
    border-radius: 50%;
    content: "";
}

.mobile-concept::before {
    top: 30px;
    width: 570px;
    height: 570px;
}

.mobile-concept::after {
    top: 115px;
    width: 400px;
    height: 400px;
}

.phone-shell {
    position: relative;
    z-index: 1;
    width: 340px;
    min-height: 650px;
    overflow: hidden;
    padding: 12px;
    border: 8px solid var(--navy-950);
    border-radius: 44px;
    background: #f8fafb;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
}

.phone-speaker {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 50%;
    width: 68px;
    height: 18px;
    border-radius: 999px;
    background: var(--navy-950);
    transform: translateX(-50%);
}

.phone-bar {
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    align-items: center;
    gap: 8px;
    min-height: 58px;
    padding: 5px 3px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

.phone-bar img {
    width: 30px;
    height: 30px;
}

.phone-bar button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 9px;
    color: var(--muted);
    background: #eef3f6;
    pointer-events: none;
}

.phone-bar svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.phone-content {
    padding: 26px 8px 12px;
}

.phone-step {
    color: var(--blue-600);
    font-family: "Poppins", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
}

.phone-content h3 {
    margin: 7px 0 0;
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    line-height: 1.12;
}

.phone-content > p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.reading-field {
    display: grid;
    gap: 7px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
}

.reading-field > span:last-child {
    display: flex;
    min-height: 72px;
    align-items: baseline;
    padding: 14px;
    border: 2px solid var(--blue-600);
    border-radius: 12px;
    color: var(--ink);
    background: var(--white);
}

.reading-field strong {
    font-family: "Poppins", sans-serif;
    font-size: 31px;
}

.reading-field small {
    margin-left: 5px;
    color: var(--muted);
}

.camera-button {
    display: grid;
    grid-template-columns: 44px 1fr 26px;
    width: 100%;
    min-height: 76px;
    align-items: center;
    gap: 10px;
    margin-top: 11px;
    padding: 10px;
    border: 1px solid #bde7de;
    border-radius: 12px;
    color: var(--ink);
    background: #ecf9f5;
    text-align: left;
    pointer-events: none;
}

.camera-button > svg {
    width: 30px;
    height: 30px;
    margin: auto;
    color: #147965;
}

.camera-button > span {
    display: grid;
    line-height: 1.25;
}

.camera-button strong {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
}

.camera-button small {
    color: var(--muted);
    font-size: 8px;
}

.camera-button i {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    color: var(--navy-950);
    background: var(--mint-500);
}

.camera-button i svg {
    width: 14px;
    height: 14px;
}

.phone-submit {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 94px;
    border: 0;
    border-radius: 11px;
    color: var(--navy-950);
    background: var(--gold-500);
    font-size: 11px;
    font-weight: 700;
    pointer-events: none;
}

.phone-submit svg {
    width: 17px;
    height: 17px;
}

.tap-note {
    position: absolute;
    z-index: 2;
    right: -12px;
    bottom: 70px;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 11px;
    width: 290px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;
    color: var(--white);
    background: var(--navy-900);
    box-shadow: var(--shadow-md);
    transform: rotate(-2deg);
}

.tap-note > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 11px;
    color: var(--navy-950);
    background: var(--gold-500);
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.tap-note p {
    display: grid;
    margin: 0;
    line-height: 1.25;
}

.tap-note strong {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
}

.tap-note small {
    margin-top: 4px;
    color: rgba(255,255,255,.58);
    font-size: 8px;
}

.sector-section {
    padding: 96px 0;
    color: var(--white);
    background: var(--blue-600);
}

.sector-layout {
    display: grid;
    grid-template-columns: .68fr 1.32fr;
    align-items: center;
    gap: 90px;
}

.sector-stat {
    display: grid;
    padding: 15px 60px 15px 0;
    border-right: 1px solid rgba(255,255,255,.24);
}

.sector-stat strong {
    color: var(--gold-500);
    font-family: "Poppins", sans-serif;
    font-size: clamp(62px, 7vw, 100px);
    letter-spacing: -.06em;
    line-height: 1;
}

.sector-stat span {
    margin-top: 11px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.sector-stat small {
    margin-top: 6px;
    color: rgba(255,255,255,.58);
    font-size: 10px;
}

.sector-stat small a {
    color: inherit;
    text-decoration-color: rgba(255,255,255,.35);
    text-underline-offset: 3px;
}

.sector-stat small a:hover {
    color: var(--white);
}

.sector-copy h2 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    letter-spacing: -.045em;
    line-height: 1.06;
}

.sector-copy p {
    max-width: 720px;
    margin: 21px 0 0;
    color: rgba(255,255,255,.72);
}

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

.faq-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    align-items: start;
    gap: 100px;
}

.faq-heading {
    position: sticky;
    top: 40px;
}

.faq-heading h2 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(42px, 4.6vw, 62px);
    letter-spacing: -.05em;
    line-height: 1.05;
}

.faq-heading p {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 16px;
}

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

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

.faq-list summary {
    display: grid;
    grid-template-columns: 1fr 44px;
    min-height: 86px;
    align-items: center;
    gap: 20px;
    color: var(--ink);
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
}

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

.faq-list summary svg {
    width: 20px;
    height: 20px;
    margin: auto;
    transition: transform 200ms var(--ease);
}

.faq-list details[open] summary svg {
    transform: rotate(180deg);
}

.faq-list details p {
    max-width: 660px;
    margin: -4px 0 0;
    padding: 0 64px 30px 0;
    color: var(--muted);
    line-height: 1.7;
}

.pilot-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.pilot-signal {
    position: absolute;
    top: -220px;
    left: -120px;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(53,211,180,.18);
    border-radius: 50%;
}

.pilot-signal::before,
.pilot-signal::after {
    position: absolute;
    top: 50%;
    left: 50%;
    border: inherit;
    border-radius: inherit;
    content: "";
    transform: translate(-50%,-50%);
}

.pilot-signal::before {
    width: 72%;
    height: 72%;
}

.pilot-signal::after {
    width: 42%;
    height: 42%;
}

.pilot-layout {
    position: relative;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 100px;
}

.pilot-copy h2 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(48px, 5vw, 70px);
    letter-spacing: -.055em;
    line-height: 1;
}

.pilot-copy > p {
    margin: 26px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 17px;
}

.pilot-copy ul {
    display: grid;
    gap: 12px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.pilot-copy li {
    position: relative;
    padding-left: 24px;
    font-size: 13px;
    font-weight: 700;
}

.pilot-copy li::before {
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    background: var(--mint-500);
    box-shadow: 0 0 0 5px rgba(53,211,180,.1);
}

.pilot-form {
    padding: 38px;
    border-radius: 20px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.form-heading {
    display: grid;
    gap: 4px;
    padding-bottom: 23px;
    border-bottom: 1px solid var(--line);
}

.form-heading span {
    color: var(--blue-600);
    font-family: "Poppins", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
}

.form-heading strong {
    font-family: "Poppins", sans-serif;
    font-size: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.form-grid label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
}

.form-grid label > span {
    display: flex;
    justify-content: space-between;
}

.form-grid em {
    color: var(--muted);
    font-size: 9px;
    font-style: normal;
    font-weight: 400;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid #bdcbd4;
    border-radius: 9px;
    color: var(--ink);
    background: #fbfcfd;
    font-size: 16px;
    outline: none;
    transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.form-grid textarea {
    min-height: 92px;
    resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(23,105,170,.14);
}

.form-grid label small {
    display: none;
    color: #ad352b;
    font-size: 9px;
    font-weight: 500;
}

.form-grid label.has-error input,
.form-grid label.has-error select {
    border-color: #c8493e;
    background: #fff8f6;
}

.form-grid label.has-error small {
    display: block;
}

.form-wide {
    grid-column: 1 / -1;
}

.form-submit {
    width: 100%;
    margin-top: 18px;
}

.form-note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 9px;
    text-align: center;
}

.form-status {
    margin: 14px 0 0;
    padding: 11px 13px;
    border: 1px solid #bde7de;
    border-radius: 9px;
    color: #126d5c;
    background: #eaf8f4;
    font-size: 11px;
    font-weight: 700;
}

.site-footer {
    padding: 74px 0 24px;
    color: var(--white);
    background: #061625;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 70px;
    padding-bottom: 60px;
}

.footer-brand img {
    width: 210px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 330px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.54);
    font-size: 13px;
}

.footer-nav,
.footer-contact {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-nav a,
.footer-contact a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    text-decoration: none;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--gold-500);
}

.footer-contact span {
    margin-bottom: 7px;
    color: var(--mint-500);
    font-family: "Poppins", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom img {
    width: 155px;
    height: auto;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.38);
    font-size: 10px;
}

.footer-bottom a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: rgba(255,255,255,.65);
    font-size: 11px;
    font-weight: 700;
}

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

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

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

    .hero-layout {
        grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
        gap: 34px;
    }

    .owner-glance {
        right: -8px;
    }
}

@media (max-width: 980px) {
    .shell {
        width: min(calc(100% - 40px), var(--shell));
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-button {
        display: grid;
        width: 48px;
        height: 48px;
        place-items: center;
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 10px;
        color: var(--white);
        background: rgba(255,255,255,.06);
        cursor: pointer;
    }

    .mobile-nav {
        position: absolute;
        top: 84px;
        right: 20px;
        left: 20px;
        display: grid;
        gap: 3px;
        padding: 16px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 14px;
        background: var(--navy-900);
        box-shadow: var(--shadow-lg);
    }

    .mobile-nav[hidden] {
        display: none;
    }

    .mobile-nav > a:not(.button) {
        display: flex;
        min-height: 48px;
        align-items: center;
        padding: 0 10px;
        color: rgba(255,255,255,.82);
        text-decoration: none;
    }

    .mobile-nav .button {
        margin-top: 8px;
    }

    .hero {
        padding-top: 140px;
    }

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

    .hero-copy {
        max-width: 760px;
        padding-bottom: 10px;
    }

    .hero-product {
        width: min(100%, 720px);
        margin-left: auto;
    }

    .shift-sequence {
        margin-top: 18px;
    }

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

    .section-heading > p {
        max-width: 720px;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(calc(100% - 32px), var(--shell));
    }

    .site-header {
        position: absolute;
    }

    .header-inner {
        min-height: 74px;
    }

    .brand-link,
    .brand-link img {
        width: 166px;
    }

    .mobile-nav {
        top: 74px;
        right: 16px;
        left: 16px;
    }

    .hero {
        min-height: 0;
        padding-top: 116px;
    }

    .hero h1 {
        font-size: clamp(42px, 12.5vw, 58px);
        line-height: 1;
    }

    .hero-lede {
        margin-top: 24px;
        font-size: 17px;
    }

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

    .hero-actions .button,
    .hero-actions .text-link {
        width: 100%;
        justify-content: center;
    }

    .hero-assurances {
        display: grid;
        gap: 10px;
        margin-top: 25px;
    }

    .hero-product {
        margin-top: 8px;
        padding-bottom: 80px;
    }

    .control-board {
        border-radius: 18px;
        transform: none;
    }

    .board-topbar {
        min-height: 58px;
        padding: 10px 12px;
    }

    .board-body {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .board-sidebar {
        display: none;
    }

    .board-content {
        padding: 18px 14px;
    }

    .board-heading h2 {
        font-size: 18px;
    }

    .health-score {
        padding-left: 13px;
    }

    .health-score strong {
        font-size: 21px;
    }

    .rail-stage:nth-child(3),
    .rail-stage:nth-child(4) {
        display: grid;
    }

    .board-summary div {
        padding: 10px 8px;
    }

    .board-summary span {
        font-size: 7px;
    }

    .board-summary strong {
        font-size: 16px;
    }

    .task-row {
        grid-template-columns: 32px minmax(0,1fr) auto;
        gap: 8px;
        padding: 8px;
    }

    .owner-glance {
        right: 8px;
        bottom: 29px;
        min-width: 0;
        width: calc(100% - 36px);
    }

    .product-halo {
        width: 118%;
        height: 70%;
    }

    .shift-sequence {
        display: grid;
        grid-template-columns: repeat(5, auto);
        justify-content: space-between;
        min-height: 104px;
        gap: 5px;
        padding-bottom: 8px;
        font-size: 8px;
    }

    .shift-sequence i {
        display: none;
    }

    .shift-sequence strong {
        grid-column: 1 / -1;
        margin: 2px 0 0;
        text-align: center;
    }

    .section {
        padding: 92px 0;
    }

    .section-heading h2 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .gap-grid {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .gap-card {
        min-height: 0;
        padding: 26px;
    }

    .gap-icon {
        margin-bottom: 28px;
    }

    .gap-card-chippy {
        min-height: 350px;
        transform: none;
    }
}

@media (max-width: 1120px) {
    .review-layout,
    .use-layout,
    .pilot-layout {
        gap: 62px;
    }

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

    .feature-tile-wide {
        grid-column: span 1;
    }

    .feature-tile {
        min-height: 330px;
    }

    .mobile-concept {
        transform: scale(.92);
    }
}

@media (max-width: 980px) {
    .rhythm-heading,
    .rhythm-layout,
    .review-layout,
    .use-layout,
    .sector-layout,
    .faq-layout,
    .pilot-layout {
        grid-template-columns: 1fr;
    }

    .rhythm-heading {
        gap: 20px;
    }

    .rhythm-heading .section-number {
        grid-column: auto;
        margin-bottom: 0;
    }

    .rhythm-heading p {
        max-width: 700px;
    }

    .rhythm-layout {
        gap: 28px;
    }

    .workflow-tabs {
        grid-template-columns: 1fr 1fr;
    }

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

    .benefit-card {
        min-height: 0;
    }

    .benefit-card-dark {
        transform: none;
    }

    .review-copy {
        max-width: 720px;
    }

    .review-pipeline {
        max-width: 720px;
        margin-left: auto;
    }

    .feature-heading {
        grid-template-columns: 1fr 210px;
        gap: 40px;
    }

    .use-copy {
        max-width: 720px;
    }

    .mobile-concept {
        width: min(100%, 680px);
        margin-inline: auto;
        transform: none;
    }

    .sector-layout {
        gap: 50px;
    }

    .sector-stat {
        padding: 0 0 38px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.24);
    }

    .faq-heading {
        position: static;
        max-width: 720px;
    }

    .pilot-copy {
        max-width: 720px;
    }

    .pilot-form {
        max-width: 760px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 760px) {
    .rhythm-heading p,
    .centred-heading p,
    .review-copy > p,
    .use-copy > p,
    .pilot-copy > p {
        font-size: 16px;
    }

    .workflow-tabs {
        grid-template-columns: 1fr;
    }

    .workflow-tab {
        min-height: 88px;
    }

    .workflow-demo {
        margin-inline: -8px;
        padding: 9px;
        border-radius: 16px;
    }

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

    .demo-window {
        min-height: 0;
        border-radius: 11px;
    }

    .workflow-panel {
        min-height: 0;
        padding: 22px 14px 16px;
    }

    .panel-title-row h3 {
        font-size: 22px;
    }

    .readiness-list > div {
        grid-template-columns: 30px 1fr auto;
        padding: 9px;
    }

    .panel-proof {
        flex-wrap: wrap;
        gap: 8px 13px;
    }

    .panel-proof strong {
        width: 100%;
        margin-left: 0;
    }

    .trade-task {
        grid-template-columns: 45px 1fr;
    }

    .trade-task button,
    .trade-task .task-state {
        grid-column: 2;
        justify-self: start;
    }

    .handover-people {
        grid-template-columns: 40px 1fr 28px 40px 1fr;
        padding: 12px;
    }

    .handover-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 9px;
    }

    .close-list {
        grid-template-columns: 1fr;
    }

    .benefit-grid {
        margin-top: 42px;
    }

    .benefit-card {
        padding: 27px;
    }

    .benefit-card h3 {
        margin-top: 38px;
    }

    .review-layout {
        gap: 48px;
    }

    .review-copy h2,
    .use-copy h2,
    .pilot-copy h2 {
        font-size: clamp(40px, 11vw, 54px);
    }

    .review-pipeline {
        padding: 12px;
        border-radius: 16px;
    }

    .pipeline-card {
        padding: 17px;
    }

    .pipeline-review,
    .pipeline-action {
        margin: 0;
    }

    .pipeline-review blockquote {
        font-size: 17px;
    }

    .pipeline-result {
        margin: 12px 0 0;
    }

    .action-owner {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .feature-heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .feature-heading-aside {
        grid-template-columns: 70px 1fr;
    }

    .feature-bento {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .feature-tile {
        min-height: 0;
        padding: 26px;
    }

    .feature-tile h3 {
        margin-top: 34px;
    }

    .workflow-chips,
    .later-chip {
        margin-top: 28px;
    }

    .alert-example {
        grid-template-columns: 9px 1fr;
        margin-top: 28px;
    }

    .alert-example button {
        grid-column: 2;
        justify-self: start;
    }

    .use-layout {
        gap: 55px;
    }

    .mobile-concept {
        min-height: 650px;
    }

    .mobile-concept::before {
        width: 460px;
        height: 460px;
    }

    .mobile-concept::after {
        width: 320px;
        height: 320px;
    }

    .phone-shell {
        width: min(330px, calc(100vw - 46px));
        min-height: 630px;
        transform: none;
    }

    .tap-note {
        right: 0;
        bottom: 30px;
        width: min(290px, calc(100vw - 50px));
    }

    .sector-section {
        padding: 76px 0;
    }

    .sector-stat strong {
        font-size: clamp(60px, 18vw, 84px);
    }

    .sector-copy h2,
    .faq-heading h2 {
        font-size: clamp(38px, 10.5vw, 50px);
    }

    .faq-layout {
        gap: 46px;
    }

    .faq-list summary {
        grid-template-columns: 1fr 34px;
        min-height: 78px;
        font-size: 15px;
    }

    .faq-list details p {
        padding-right: 34px;
    }

    .pilot-layout {
        gap: 50px;
    }

    .pilot-form {
        padding: 24px 18px;
    }

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

    .form-wide {
        grid-column: auto;
    }

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

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

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

    .footer-bottom a {
        justify-self: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

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