/*
 * ORGScanner UI
 * Framework-free, PHP-friendly and scoped under .orgscanner-app.
 * Design tokens are intentionally centralized for quick enterprise theming.
 */

.orgscanner-demo-body {
    margin: 0;
    background: #f4f8fc;
}

.orgscanner-app {
    --org-ink: #0b2545;
    --org-ink-2: #153b63;
    --org-navy: #0a2446;
    --org-navy-2: #112f59;
    --org-blue: #1f76c8;
    --org-blue-soft: #eaf4fe;
    --org-teal: #1499a5;
    --org-green: #86bc25;
    --org-green-strong: #73a91d;
    --org-green-soft: #edf7df;
    --org-surface: #ffffff;
    --org-surface-soft: #f7fafc;
    --org-line: rgba(28, 68, 108, 0.12);
    --org-muted: #61748a;
    --org-radius-xl: 44px;
    --org-radius-lg: 32px;
    --org-radius-md: 24px;
    --org-radius-sm: 16px;
    --org-shadow-xl: 0 30px 90px rgba(18, 55, 92, 0.14), 0 6px 24px rgba(18, 55, 92, 0.08);
    --org-shadow-lg: 0 20px 55px rgba(18, 55, 92, 0.12), 0 3px 14px rgba(18, 55, 92, 0.06);
    --org-shadow-sm: 0 10px 28px rgba(18, 55, 92, 0.10);
    position: relative;
    min-width: 0;
    overflow-x: clip;
    color: var(--org-ink);
    background:
        radial-gradient(circle at 8% 6%, rgba(134, 188, 37, 0.07), transparent 24rem),
        radial-gradient(circle at 94% 18%, rgba(31, 118, 200, 0.10), transparent 34rem),
        linear-gradient(180deg, #f9fbfd 0%, #f4f8fc 48%, #f7fafc 100%);
    font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

.orgscanner-app img,
.orgscanner-app picture,
.orgscanner-app svg {
    display: block;
    max-width: 100%;
}

.orgscanner-app button,
.orgscanner-app input,
.orgscanner-app textarea,
.orgscanner-app select {
    font: inherit;
}

.orgscanner-app :where(a) {
    color: inherit;
    text-decoration: none;
}

.orgscanner-app button,
.orgscanner-app a {
    -webkit-tap-highlight-color: transparent;
}

.orgscanner-app :focus-visible {
    outline: 3px solid rgba(31, 118, 200, 0.36);
    outline-offset: 4px;
}

.org-container {
    width: min(1240px, calc(100% - 40px));
    margin-inline: auto;
}

.org-section {
    position: relative;
    scroll-margin-top: 112px;
    padding: 70px 0;
}

.org-section--tight {
    padding: 28px 0;
}

.org-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: var(--org-icon) center / contain no-repeat;
    mask: var(--org-icon) center / contain no-repeat;
}

.org-icon--analytics { --org-icon: url("../icons/analytics.svg"); }
.org-icon--arrow-right { --org-icon: url("../icons/arrow-right.svg"); }
.org-icon--bell { --org-icon: url("../icons/bell.svg"); }
.org-icon--chart { --org-icon: url("../icons/chart.svg"); }
.org-icon--chat { --org-icon: url("../icons/chat.svg"); }
.org-icon--check { --org-icon: url("../icons/check.svg"); }
.org-icon--clock { --org-icon: url("../icons/clock.svg"); }
.org-icon--cloud-check { --org-icon: url("../icons/cloud-check.svg"); }
.org-icon--code { --org-icon: url("../icons/code.svg"); }
.org-icon--document { --org-icon: url("../icons/document.svg"); }
.org-icon--download { --org-icon: url("../icons/download.svg"); }
.org-icon--layers { --org-icon: url("../icons/layers.svg"); }
.org-icon--lock { --org-icon: url("../icons/lock.svg"); }
.org-icon--pie { --org-icon: url("../icons/pie.svg"); }
.org-icon--play { --org-icon: url("../icons/play.svg"); }
.org-icon--scan { --org-icon: url("../icons/scan.svg"); }
.org-icon--shield { --org-icon: url("../icons/shield.svg"); }
.org-icon--sparkle { --org-icon: url("../icons/sparkle.svg"); }
.org-icon--user { --org-icon: url("../icons/user.svg"); }

/* Header */
.org-header {
    position: sticky;
    top: 12px;
    z-index: 100;
    padding-top: 12px;
    pointer-events: none;
}

.org-header__inner {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 10px 12px 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 10px 38px rgba(24, 58, 94, 0.08);
    -webkit-backdrop-filter: blur(20px) saturate(1.25);
    backdrop-filter: blur(20px) saturate(1.25);
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    pointer-events: auto;
}

.org-header.is-scrolled .org-header__inner {
    background: rgba(255, 255, 255, 0.91);
    box-shadow: 0 16px 42px rgba(24, 58, 94, 0.14);
}

.org-brand {
    display: inline-flex;
    align-items: center;
    min-width: 166px;
}

.org-brand img {
    width: 170px;
    height: auto;
}

.org-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border-radius: 999px;
    background: rgba(238, 244, 249, 0.68);
    border: 1px solid rgba(17, 63, 103, 0.06);
}

.org-nav__link {
    position: relative;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 999px;
    color: #4c6177;
    font-size: 13px;
    font-weight: 700;
    transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.org-nav__link:hover {
    color: var(--org-ink);
}

.org-nav__link.is-active {
    color: var(--org-ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 5px 14px rgba(34, 67, 102, 0.09);
}

.org-nav__link.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--org-green);
    transform: translateX(-50%);
}

.org-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.org-text-link {
    color: #38506a;
    font-size: 13px;
    font-weight: 700;
}

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

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

/* Reusable buttons and pills */
.org-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    appearance: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease, background 170ms ease;
}

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

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

.org-button .org-icon {
    width: 18px;
    height: 18px;
}

.org-button--compact {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 13px;
}

.org-button--ink,
.org-button--primary {
    color: #fff;
    background: linear-gradient(135deg, #0a2446 0%, #123c6a 100%);
    box-shadow: 0 12px 26px rgba(10, 36, 70, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.org-button--ink:hover,
.org-button--primary:hover {
    box-shadow: 0 16px 34px rgba(10, 36, 70, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.org-button--primary {
    min-height: 58px;
    padding: 0 12px 0 24px;
}

.org-button__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--org-navy);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.org-button__icon .org-icon {
    width: 17px;
    height: 17px;
}

.org-button--ghost {
    color: var(--org-ink);
    background: rgba(255, 255, 255, 0.36);
    border-color: rgba(17, 58, 98, 0.10);
}

.org-button--ghost:hover {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(17, 58, 98, 0.16);
}

.org-play-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--org-blue);
    background: #fff;
    box-shadow: var(--org-shadow-sm);
}

.org-play-icon .org-icon {
    width: 14px;
    height: 14px;
    margin-left: 2px;
}

.org-button--soft {
    color: var(--org-ink);
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(30, 75, 118, 0.12);
    box-shadow: 0 10px 24px rgba(20, 58, 98, 0.08);
}

.org-button--soft:hover {
    background: #fff;
    border-color: rgba(31, 118, 200, 0.25);
    box-shadow: 0 14px 30px rgba(20, 58, 98, 0.12);
}

.org-button--glass-dark {
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.org-button--glass-dark:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
}

.org-button--lime {
    color: #092445;
    background: linear-gradient(135deg, #a7d84b 0%, #86bc25 100%);
    box-shadow: 0 14px 30px rgba(134, 188, 37, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.org-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--org-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.org-eyebrow .org-icon {
    width: 17px;
    height: 17px;
}

.org-eyebrow--glass {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    color: #31536f;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 24px rgba(25, 66, 106, 0.07);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.org-eyebrow--lime {
    color: #a7d84b;
}

.org-eyebrow--center {
    margin-inline: auto;
}

.org-status-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--org-green);
    box-shadow: 0 0 0 5px rgba(134, 188, 37, 0.13);
}

/* Hero */
.org-hero {
    padding-top: 24px;
    padding-bottom: 54px;
}

.org-hero__canvas {
    position: relative;
    min-height: 650px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    align-items: center;
    gap: clamp(36px, 5vw, 76px);
    padding: clamp(44px, 6vw, 82px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: var(--org-radius-xl);
    background:
        url("../images/wave-lines.svg") bottom center / 100% 48% no-repeat,
        radial-gradient(circle at 82% 18%, rgba(126, 194, 240, 0.35), transparent 22rem),
        radial-gradient(circle at 14% 86%, rgba(134, 188, 37, 0.08), transparent 18rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 243, 253, 0.90));
    box-shadow: var(--org-shadow-xl);
    isolation: isolate;
}

.org-hero__canvas::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -250px;
    top: -290px;
    border-radius: 50%;
    border: 78px solid rgba(255, 255, 255, 0.42);
    z-index: -1;
}

.org-hero__canvas::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/noise.svg") repeat;
    opacity: 0.17;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}

.org-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.66;
    pointer-events: none;
}

.org-hero__orb--one {
    width: 290px;
    height: 290px;
    right: 11%;
    top: 10%;
    background: rgba(69, 160, 227, 0.16);
}

.org-hero__orb--two {
    width: 200px;
    height: 200px;
    left: 46%;
    bottom: 5%;
    background: rgba(134, 188, 37, 0.11);
}

.org-hero__copy,
.org-hero__visual {
    position: relative;
    z-index: 2;
}

.org-hero h1 {
    max-width: 700px;
    margin: 0;
    color: var(--org-ink);
    font-size: clamp(46px, 5.25vw, 76px);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.org-hero h1 span {
    display: block;
    margin-top: 7px;
    color: var(--org-green-strong);
}

.org-hero__lead {
    max-width: 610px;
    margin: 28px 0 0;
    color: #4d6278;
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.72;
}

.org-action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.org-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 26px;
}

.org-proof-pill {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid rgba(31, 83, 128, 0.09);
    border-radius: 999px;
    color: #4b6076;
    background: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    font-weight: 700;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.org-proof-pill .org-icon {
    width: 14px;
    height: 14px;
    color: var(--org-green-strong);
}

.org-hero__visual {
    perspective: 1100px;
}

.org-visual-shell {
    position: relative;
    max-width: 560px;
    margin-inline: auto;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 28px 60px rgba(35, 83, 126, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    backdrop-filter: blur(18px) saturate(1.2);
    transform: rotateY(-2deg) rotateX(1deg);
    transform-style: preserve-3d;
    transition: transform 220ms ease-out;
}

.org-visual-shell::before {
    content: "";
    position: absolute;
    inset: 9% 12%;
    border-radius: 50%;
    background: rgba(48, 145, 211, 0.18);
    filter: blur(48px);
    z-index: -1;
}

.org-hero-art {
    overflow: hidden;
    border-radius: 28px;
}

.org-hero-art img {
    width: 100%;
    aspect-ratio: 1.28 / 1;
    object-fit: cover;
    border-radius: inherit;
}

.org-live-pill {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 3;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    color: #234762;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 20px rgba(25, 66, 106, 0.08);
    font-size: 11px;
    font-weight: 800;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.org-live-pill span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--org-green);
    box-shadow: 0 0 0 5px rgba(134, 188, 37, 0.13);
}

.org-float-card {
    position: absolute;
    z-index: 4;
    min-width: 142px;
    display: grid;
    gap: 3px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    color: #405b72;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 14px 30px rgba(21, 60, 99, 0.14);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    backdrop-filter: blur(16px) saturate(1.1);
}

.org-float-card span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.org-float-card strong {
    color: var(--org-ink);
    font-size: 21px;
    line-height: 1;
}

.org-float-card--top {
    right: -25px;
    top: 76px;
}

.org-float-card--bottom {
    left: -28px;
    bottom: 62px;
    min-width: 174px;
}

.org-meter {
    height: 5px;
    margin-top: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(15, 64, 108, 0.10);
}

.org-meter i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--org-green), #a9d952);
}

.org-signal-bar {
    position: relative;
    z-index: 4;
    width: calc(100% - 72px);
    min-height: 92px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) 1.3fr;
    align-items: stretch;
    gap: 8px;
    margin: -36px auto 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 50px rgba(21, 60, 99, 0.13);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
    backdrop-filter: blur(18px) saturate(1.25);
}

.org-signal-bar__item,
.org-signal-bar__message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 18px;
}

.org-signal-bar__item {
    border: 1px solid rgba(23, 72, 115, 0.07);
    background: rgba(247, 250, 253, 0.72);
}

.org-signal-bar__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 14px;
    color: var(--org-blue);
    background: var(--org-blue-soft);
}

.org-signal-bar__icon .org-icon {
    width: 20px;
    height: 20px;
}

.org-signal-bar__item > span:last-child {
    min-width: 0;
    display: grid;
}

.org-signal-bar small {
    overflow: hidden;
    color: #77879a;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.org-signal-bar strong {
    color: var(--org-ink);
    font-size: 16px;
    line-height: 1.25;
}

.org-signal-bar__message {
    justify-content: center;
    color: #2b4f6e;
    background: linear-gradient(135deg, rgba(236, 246, 255, 0.95), rgba(241, 248, 233, 0.86));
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

/* Feature cards */
.org-feature-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: clamp(40px, 6vw, 84px);
    min-height: 560px;
    padding: clamp(38px, 5vw, 72px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: var(--org-radius-xl);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--org-shadow-lg);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
    backdrop-filter: blur(20px) saturate(1.1);
}

.org-feature-card::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    background: rgba(63, 151, 213, 0.08);
    filter: blur(10px);
    pointer-events: none;
}

.org-feature-card__copy,
.org-feature-card__visual {
    position: relative;
    z-index: 1;
}

.org-feature-card__copy h2,
.org-section-heading h2,
.org-closing__card h2 {
    margin: 0;
    color: var(--org-ink);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.org-feature-card__copy > p {
    margin: 22px 0 0;
    color: #4f647a;
    font-size: 16px;
    line-height: 1.76;
}

.org-feature-card__copy > p.org-muted {
    margin-top: 12px;
    color: #728398;
    font-size: 14px;
}

.org-feature-card__copy > .org-button {
    margin-top: 28px;
}

.org-mini-stats,
.org-report-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 34px;
}

.org-mini-stats > div,
.org-report-metrics > div {
    padding: 15px;
    border: 1px solid rgba(26, 77, 120, 0.08);
    border-radius: 18px;
    background: rgba(248, 251, 254, 0.76);
}

.org-mini-stats strong,
.org-report-metrics strong {
    display: block;
    color: var(--org-ink);
    font-size: 19px;
    line-height: 1;
}

.org-mini-stats span,
.org-report-metrics span {
    display: block;
    margin-top: 7px;
    color: #77879a;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
}

.org-stage-pills {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 0 14px 16px;
}

.org-stage-pills::before {
    content: "";
    position: absolute;
    left: 11%;
    right: 11%;
    top: 24px;
    height: 1px;
    background: linear-gradient(90deg, rgba(31, 118, 200, 0.32), rgba(20, 153, 165, 0.32), rgba(134, 188, 37, 0.38));
    z-index: 0;
}

.org-stage-pills > span {
    position: relative;
    z-index: 1;
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 9px;
    color: #5e7287;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
}

.org-stage-pills i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 5px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #2b7fce, #1f69b2);
    box-shadow: 0 8px 20px rgba(31, 118, 200, 0.22);
}

.org-stage-pills > span:nth-child(2) i,
.org-stage-pills > span:nth-child(3) i {
    background: linear-gradient(135deg, #20a3ad, #118896);
}

.org-stage-pills > span.is-current i {
    background: linear-gradient(135deg, #91c936, #6fac20);
    box-shadow: 0 8px 22px rgba(134, 188, 37, 0.28);
}

.org-stage-pills .org-icon {
    width: 19px;
    height: 19px;
}

.org-art-card {
    position: relative;
    overflow: hidden;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 18px 40px rgba(21, 60, 99, 0.12), inset 0 1px 0 #fff;
}

.org-flow-art {
    overflow: hidden;
    border-radius: 18px;
}

.org-flow-art img {
    width: 100%;
    border-radius: inherit;
}

/* Dark alert experience */
.org-feature-card--dark {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.10);
    background:
        url("../images/wave-lines.svg") bottom right / 90% 62% no-repeat,
        radial-gradient(circle at 18% 30%, rgba(47, 132, 197, 0.28), transparent 24rem),
        linear-gradient(135deg, #081d3a 0%, #112f59 62%, #173d6a 100%);
    box-shadow: 0 32px 80px rgba(6, 30, 62, 0.24);
}

.org-feature-card--dark::before {
    width: 460px;
    height: 460px;
    left: -210px;
    right: auto;
    top: -160px;
    background: rgba(44, 136, 201, 0.16);
}

.org-feature-card--dark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/noise.svg") repeat;
    opacity: 0.18;
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.org-feature-card--dark .org-feature-card__copy h2,
.org-feature-card--dark .org-feature-card__copy > p {
    color: #fff;
}

.org-feature-card--dark .org-feature-card__copy > p {
    color: #d3dfeb;
}

.org-map-shell {
    position: relative;
    max-width: 560px;
    margin-inline: auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.10);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.org-map-art {
    overflow: hidden;
    border-radius: 24px;
}

.org-map-art img {
    width: 100%;
    border-radius: inherit;
}

.org-map-pulse {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #f15a4a;
    box-shadow: 0 0 0 0 rgba(241, 90, 74, 0.45);
    animation: org-pulse 2.2s infinite;
}

.org-map-pulse--one {
    left: 25%;
    top: 42%;
}

.org-map-pulse--two {
    right: 17%;
    bottom: 22%;
    animation-delay: 0.7s;
}

@keyframes org-pulse {
    0% { box-shadow: 0 0 0 0 rgba(241, 90, 74, 0.45); }
    75%, 100% { box-shadow: 0 0 0 16px rgba(241, 90, 74, 0); }
}

.org-chip-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}

.org-chip-cloud span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    color: #dce7f1;
    background: rgba(255, 255, 255, 0.07);
    font-size: 11px;
    font-weight: 700;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

/* Report */
.org-feature-card--report {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    background:
        radial-gradient(circle at 84% 24%, rgba(250, 207, 198, 0.22), transparent 18rem),
        radial-gradient(circle at 72% 76%, rgba(193, 220, 247, 0.30), transparent 19rem),
        rgba(255, 255, 255, 0.78);
}

.org-report-visual {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.56);
    box-shadow: 0 22px 54px rgba(21, 60, 99, 0.11), inset 0 1px 0 #fff;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.org-report-visual::before,
.org-report-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
}

.org-report-visual::before {
    width: 160px;
    height: 160px;
    left: 8%;
    top: 12%;
    background: rgba(245, 188, 182, 0.22);
}

.org-report-visual::after {
    width: 180px;
    height: 180px;
    right: 8%;
    bottom: 8%;
    background: rgba(153, 198, 238, 0.24);
}

.org-report-art {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
}

.org-report-art img {
    width: 100%;
    mix-blend-mode: multiply;
}

.org-report-pill {
    position: absolute;
    z-index: 3;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    color: #35536d;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 26px rgba(21, 60, 99, 0.12);
    font-size: 11px;
    font-weight: 800;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.org-report-pill .org-icon {
    width: 15px;
    height: 15px;
    color: var(--org-green-strong);
}

.org-report-pill--one {
    top: 24px;
    right: 24px;
}

.org-report-pill--two {
    left: 24px;
    bottom: 24px;
}

/* Best practices band */
.org-practice-band {
    position: relative;
    min-height: 126px;
    display: grid;
    grid-template-columns: auto 1fr 0.85fr;
    align-items: center;
    gap: 24px;
    padding: 24px 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(135deg, #081f3f 0%, #0e315d 55%, #14558a 100%);
    box-shadow: 0 20px 50px rgba(7, 34, 70, 0.20);
}

.org-practice-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/noise.svg") repeat;
    opacity: 0.17;
    pointer-events: none;
}

.org-practice-band__icon {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 24px;
    color: var(--org-green);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.org-practice-band__icon .org-icon {
    width: 34px;
    height: 34px;
}

.org-practice-band > div:nth-child(2) {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 4px;
}

.org-practice-band strong {
    font-size: clamp(20px, 2.2vw, 30px);
    letter-spacing: -0.025em;
}

.org-practice-band strong::first-letter {
    color: inherit;
}

.org-practice-band span {
    color: #c9d8e6;
    font-size: 13px;
}

.org-practice-band__trail {
    position: absolute;
    right: -40px;
    bottom: -54px;
    width: 48%;
    height: 180px;
    border: 1px solid rgba(121, 180, 228, 0.34);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.org-practice-band__trail::before,
.org-practice-band__trail::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: inherit;
    border-radius: inherit;
}

.org-practice-band__trail::after {
    inset: 28px;
}

/* Access */
.org-access {
    padding-top: 90px;
    padding-bottom: 96px;
}

.org-section-heading {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.org-section-heading p {
    max-width: 640px;
    margin: 20px auto 0;
    color: var(--org-muted);
    font-size: 16px;
}

.org-role-switcher {
    width: fit-content;
    max-width: 100%;
    display: flex;
    gap: 8px;
    margin: 38px auto 0;
    padding: 7px;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 12px 32px rgba(21, 60, 99, 0.09);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    scrollbar-width: none;
}

.org-role-switcher::-webkit-scrollbar {
    display: none;
}

.org-role-switcher button {
    min-width: max-content;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 17px;
    border: 0;
    border-radius: 999px;
    color: #63758a;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.org-role-switcher button.is-active {
    color: var(--org-ink);
    background: #fff;
    box-shadow: 0 8px 20px rgba(21, 60, 99, 0.11);
}

.org-role-switcher__icon {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: currentColor;
    background: rgba(43, 102, 155, 0.08);
}

.org-role-switcher__icon .org-icon {
    width: 15px;
    height: 15px;
}

.org-role-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.org-role-card {
    --org-tone: #55738e;
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.70);
    box-shadow: 0 16px 42px rgba(21, 60, 99, 0.09);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
    backdrop-filter: blur(18px) saturate(1.1);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.org-role-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 18% 5%, color-mix(in srgb, var(--org-tone) 14%, transparent), transparent 34%);
    pointer-events: none;
}

.org-role-card:hover,
.org-role-card.is-active {
    transform: translateY(-7px);
    border-color: color-mix(in srgb, var(--org-tone) 26%, white);
    box-shadow: 0 26px 58px rgba(21, 60, 99, 0.14);
}

.org-tone-green { --org-tone: #75ad24; }
.org-tone-blue { --org-tone: #2778c5; }
.org-tone-navy { --org-tone: #153f6d; }

.org-role-card__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.org-role-card__icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 7px solid rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, color-mix(in srgb, var(--org-tone) 82%, white), var(--org-tone));
    box-shadow: 0 12px 26px color-mix(in srgb, var(--org-tone) 24%, transparent);
}

.org-role-card__icon .org-icon {
    width: 26px;
    height: 26px;
}

.org-role-card__badge {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--org-tone);
    background: color-mix(in srgb, var(--org-tone) 9%, white);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.org-role-card h3 {
    position: relative;
    z-index: 1;
    margin: 26px 0 0;
    color: var(--org-ink);
    font-size: 24px;
    letter-spacing: -0.025em;
}

.org-role-card > p {
    position: relative;
    z-index: 1;
    margin: 13px 0 0;
    color: #687a8f;
    font-size: 14px;
    line-height: 1.7;
}

.org-role-card ul {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.org-role-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #425b72;
    font-size: 13px;
    font-weight: 700;
}

.org-role-card li .org-icon {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    color: var(--org-tone);
}

.org-role-card > a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--org-tone);
    font-size: 13px;
    font-weight: 900;
}

.org-role-card > a .org-icon {
    width: 16px;
    height: 16px;
    transition: transform 160ms ease;
}

.org-role-card > a:hover .org-icon {
    transform: translateX(4px);
}

.org-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 48px;
}

.org-capability-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    min-height: 140px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 14px 38px rgba(21, 60, 99, 0.08);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    transition: transform 170ms ease, box-shadow 170ms ease;
}

.org-capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(21, 60, 99, 0.12);
}

.org-capability-card__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--org-blue);
    background: linear-gradient(135deg, #edf6ff, #e7f0fb);
}

.org-capability-card__icon .org-icon {
    width: 25px;
    height: 25px;
}

.org-capability-card h3 {
    margin: 0;
    color: var(--org-ink);
    font-size: 16px;
}

.org-capability-card p {
    margin: 6px 0 0;
    color: #708196;
    font-size: 12px;
    line-height: 1.55;
}

.org-capability-card__arrow {
    width: 18px;
    height: 18px;
    color: #8a99a9;
}

/* Closing CTA */
.org-closing {
    padding-top: 26px;
    padding-bottom: 80px;
}

.org-closing__card {
    position: relative;
    min-height: 330px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 44px;
    padding: clamp(40px, 6vw, 72px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--org-radius-xl);
    color: #fff;
    background:
        url("../images/wave-lines.svg") bottom center / 100% 70% no-repeat,
        linear-gradient(135deg, #081e3c 0%, #0d315f 58%, #154d7d 100%);
    box-shadow: 0 32px 80px rgba(7, 34, 70, 0.22);
}

.org-closing__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/noise.svg") repeat;
    opacity: 0.15;
    pointer-events: none;
}

.org-closing__card > * {
    position: relative;
    z-index: 1;
}

.org-closing__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -90px;
    top: -210px;
    border-radius: 50%;
    background: rgba(58, 151, 219, 0.25);
    filter: blur(22px);
}

.org-closing__card h2 {
    max-width: 720px;
    color: #fff;
}

.org-closing__card p {
    max-width: 620px;
    margin: 18px 0 0;
    color: #d1deea;
    font-size: 16px;
}

.org-closing__actions {
    display: grid;
    gap: 10px;
    min-width: 230px;
}

/* Floating beta + support */
.org-beta-rail {
    position: fixed;
    right: 0;
    top: 154px;
    z-index: 90;
    min-width: 38px;
    height: 82px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-right: 0;
    border-radius: 14px 0 0 14px;
    color: #fff;
    background: linear-gradient(180deg, #0b274d, #133f6d);
    box-shadow: 0 10px 24px rgba(8, 36, 72, 0.20);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.org-chat-button {
    position: fixed;
    right: 26px;
    bottom: 24px;
    z-index: 110;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border: 6px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #94c93f, #73a91d);
    box-shadow: 0 16px 34px rgba(66, 119, 15, 0.28);
    cursor: pointer;
    transition: transform 170ms ease, box-shadow 170ms ease;
}

.org-chat-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(66, 119, 15, 0.34);
}

.org-chat-button .org-icon {
    width: 24px;
    height: 24px;
}

.org-chat-button__pulse {
    position: absolute;
    right: 2px;
    top: 1px;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #27b36a;
}

.org-chat-panel {
    position: fixed;
    right: 26px;
    bottom: 96px;
    z-index: 109;
    width: min(360px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.90);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 26px 70px rgba(13, 46, 80, 0.24);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    backdrop-filter: blur(20px) saturate(1.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.97);
    transform-origin: bottom right;
    transition: opacity 170ms ease, visibility 170ms ease, transform 170ms ease;
}

.org-chat-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.org-chat-panel__header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 18px;
    color: #fff;
    background: linear-gradient(135deg, #0a2446, #123f6d);
}

.org-chat-panel__avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--org-green);
    background: rgba(255, 255, 255, 0.12);
}

.org-chat-panel__avatar .org-icon {
    width: 21px;
    height: 21px;
}

.org-chat-panel__header > div {
    display: grid;
}

.org-chat-panel__header strong {
    font-size: 14px;
}

.org-chat-panel__header span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #bfd0df;
    font-size: 10px;
}

.org-chat-panel__header i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--org-green);
}

.org-chat-panel__header button {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.org-chat-panel__body {
    padding: 22px;
}

.org-chat-panel__body p {
    margin: 0 0 16px;
    color: #5d7084;
    font-size: 14px;
}

.org-chat-panel__body .org-button {
    width: 100%;
}

/* Footer */
.org-footer {
    position: relative;
    color: #d9e5f0;
    background: #071d38;
}

.org-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(134, 188, 37, 0.55), transparent);
}

.org-footer__top {
    min-height: 170px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}

.org-footer__brand img {
    width: 170px;
    height: auto;
}

.org-footer p {
    margin: 0;
    color: #9eb0c2;
    font-size: 11px;
    text-align: center;
}

.org-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.org-footer nav a {
    color: #c6d4e1;
    font-size: 11px;
    font-weight: 700;
}

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

/* Reveal animation */
.orgscanner-app [data-org-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 620ms cubic-bezier(.22, 1, .36, 1), transform 620ms cubic-bezier(.22, 1, .36, 1);
}

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

/* Tablet */
@media (max-width: 1080px) {
    .org-nav {
        display: none;
    }

    .org-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .org-header__actions {
        justify-self: end;
    }

    .org-hero__canvas {
        grid-template-columns: 1fr 0.82fr;
        gap: 30px;
        padding: 52px;
    }

    .org-hero h1 {
        font-size: clamp(44px, 6.5vw, 64px);
    }

    .org-float-card--top {
        right: -12px;
    }

    .org-float-card--bottom {
        left: -12px;
    }

    .org-signal-bar {
        width: calc(100% - 36px);
        grid-template-columns: repeat(3, 1fr);
    }

    .org-signal-bar__message {
        grid-column: 1 / -1;
        min-height: 50px;
    }

    .org-feature-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .org-feature-card__copy {
        max-width: 760px;
    }

    .org-feature-card--dark .org-feature-card__visual {
        order: 2;
    }

    .org-feature-card--dark .org-feature-card__copy {
        order: 1;
    }

    .org-role-card {
        min-height: 455px;
    }

    .org-capability-grid {
        grid-template-columns: 1fr;
    }

    .org-closing__card {
        grid-template-columns: 1fr;
    }

    .org-closing__actions {
        display: flex;
        flex-wrap: wrap;
        min-width: 0;
    }

    .org-footer__top {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 20px;
        padding: 36px 0;
    }

    .org-footer nav {
        justify-content: center;
    }
}

/* Mobile navigation breakpoint */
@media (max-width: 820px) {
    .org-container {
        width: min(100% - 24px, 720px);
    }

    .org-header {
        top: 6px;
        padding-top: 6px;
    }

    .org-header__inner {
        min-height: 64px;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        padding: 8px 10px 8px 14px;
        border-radius: 20px;
    }

    .org-brand img {
        width: 148px;
    }

    .org-header__actions {
        display: none;
    }

    .org-menu-button {
        justify-self: end;
        width: 44px;
        height: 44px;
        display: grid;
        place-content: center;
        gap: 5px;
        border: 0;
        border-radius: 14px;
        color: var(--org-ink);
        background: #eef4f9;
        cursor: pointer;
    }

    .org-menu-button span {
        width: 19px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 160ms ease, opacity 160ms ease;
    }

    .org-menu-button.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .org-menu-button.is-open span:nth-child(2) {
        opacity: 0;
    }

    .org-menu-button.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .org-mobile-nav {
        width: min(100% - 24px, 720px);
        margin: 8px auto 0;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.92);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 18px 44px rgba(21, 60, 99, 0.16);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
        pointer-events: auto;
    }

    .org-mobile-nav:not([hidden]) {
        display: block;
    }

    .org-mobile-nav nav {
        display: grid;
        gap: 5px;
    }

    .org-mobile-nav a:not(.org-button) {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0 14px;
        border-radius: 14px;
        color: #3d566f;
        font-size: 13px;
        font-weight: 800;
    }

    .org-mobile-nav a:not(.org-button):hover {
        background: #f2f7fb;
    }

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

    .org-section {
        scroll-margin-top: 88px;
    }

    .org-hero {
        padding-top: 18px;
    }

    .org-hero__canvas {
        min-height: 0;
        grid-template-columns: 1fr;
        padding: 40px 24px 30px;
        border-radius: 32px;
    }

    .org-hero h1 {
        font-size: clamp(42px, 12vw, 60px);
    }

    .org-hero__lead {
        font-size: 16px;
    }

    .org-hero__visual {
        width: min(100%, 620px);
        margin-inline: auto;
    }

    .org-visual-shell {
        transform: none !important;
    }

    .org-float-card--top {
        right: 6px;
        top: 55px;
    }

    .org-float-card--bottom {
        left: 5px;
        bottom: 42px;
    }

    .org-signal-bar {
        width: calc(100% - 20px);
        grid-template-columns: 1fr;
        margin-top: -18px;
        border-radius: 22px;
    }

    .org-signal-bar__message {
        grid-column: auto;
    }

    .org-feature-card {
        gap: 38px;
        padding: 38px 24px;
        border-radius: 32px;
    }

    .org-feature-card__copy h2,
    .org-section-heading h2,
    .org-closing__card h2 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .org-mini-stats,
    .org-report-metrics {
        grid-template-columns: 1fr;
    }

    .org-stage-pills {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 8px;
    }

    .org-stage-pills::before {
        display: none;
    }

    .org-report-visual {
        min-height: 340px;
        padding: 24px;
    }

    .org-practice-band {
        grid-template-columns: auto 1fr;
        padding: 24px;
    }

    .org-practice-band__trail {
        display: none;
    }

    .org-role-grid {
        grid-template-columns: 1fr;
    }

    .org-role-card {
        min-height: 0;
    }

    .org-role-card:not(.is-active) {
        opacity: 0.78;
    }

    .org-closing__card {
        padding: 42px 24px;
        border-radius: 32px;
    }

    .org-closing__actions {
        display: grid;
    }

    .org-closing__actions .org-button {
        width: 100%;
    }

    .org-beta-rail {
        display: none;
    }

    .org-chat-button {
        right: 16px;
        bottom: 16px;
    }

    .org-chat-panel {
        right: 16px;
        bottom: 88px;
    }
}

@media (max-width: 520px) {
    .org-section {
        padding: 48px 0;
    }

    .org-section--tight {
        padding: 18px 0;
    }

    .org-action-row {
        align-items: stretch;
    }

    .org-action-row .org-button {
        width: 100%;
    }

    .org-proof-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .org-proof-pill {
        justify-content: center;
    }

    .org-live-pill {
        top: 24px;
        left: 24px;
    }

    .org-float-card {
        min-width: 126px;
        padding: 10px 12px;
    }

    .org-float-card strong {
        font-size: 18px;
    }

    .org-float-card--top {
        right: 2px;
        top: 57px;
    }

    .org-float-card--bottom {
        left: 2px;
        bottom: 28px;
    }

    .org-practice-band {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .org-practice-band__icon {
        margin-inline: auto;
    }

    .org-role-switcher {
        width: 100%;
        justify-content: flex-start;
        border-radius: 22px;
    }

    .org-report-pill--one {
        right: 12px;
        top: 12px;
    }

    .org-report-pill--two {
        left: 12px;
        bottom: 12px;
    }

    .org-footer nav {
        flex-direction: column;
        align-items: center;
    }
}

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

    .orgscanner-app [data-org-reveal] {
        opacity: 1;
        transform: none;
    }
}
