:root {
    --iv-navy: #003454;
    --iv-navy-soft: #0a4f70;
    --iv-ink: #102233;
    --iv-muted: #667789;
    --iv-teal: #42c6be;
    --iv-teal-dark: #119f99;
    --iv-aqua: #eaf9f7;
    --iv-line: #e3e9ed;
    --iv-paper: #f6f8fa;
    --iv-card: #ffffff;
    --iv-focus: #005fcc;
    --iv-shadow: 0 24px 70px rgba(7, 52, 82, 0.14);
    --iv-radius: 8px;
    --iv-radius-large: 16px;
    --iv-wrap: min(1160px, calc(100% - 32px));
}

* {
    box-sizing: border-box;
}

body.innvilo-theme {
    margin: 0;
    color: var(--iv-ink);
    background: var(--iv-paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.iv-menu-is-open {
    overflow: hidden;
}

.iv-wrap {
    width: var(--iv-wrap);
    margin-inline: auto;
}

.iv-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    color: #ffffff;
    background: var(--iv-navy);
    transform: translateY(-160%);
}

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

a {
    color: var(--iv-navy);
}

.iv-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--iv-line);
    backdrop-filter: blur(16px);
}

.iv-site-header__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.iv-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: var(--iv-navy);
    font-weight: 800;
    text-decoration: none;
}

.iv-brand__mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--iv-line);
    border-radius: var(--iv-radius);
    box-shadow: 0 14px 32px rgba(7, 52, 82, 0.14);
}

.iv-brand__mark img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.iv-brand__name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1.35rem;
}

.iv-menu-toggle {
    display: none;
}

.iv-menu,
.iv-footer-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.iv-menu a,
.iv-footer-menu a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: #344a5d;
    font-weight: 740;
    text-decoration: none;
}

.iv-link-button a,
.iv-button,
.wp-block-button__link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #ffffff;
    font-weight: 820;
    text-decoration: none;
    background: linear-gradient(135deg, var(--iv-teal), var(--iv-teal-dark));
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(47, 180, 172, 0.22);
}

.iv-link-button--secondary a,
.iv-button--light,
.is-style-outline .wp-block-button__link {
    color: var(--iv-navy);
    background: #ffffff;
    border: 1px solid #cfe2e5;
    box-shadow: none;
}

.iv-site-main {
    min-height: 60vh;
}

.iv-page-title {
    padding: 52px 0 20px;
    background: #ffffff;
}

.iv-page-title h1 {
    margin: 0;
    color: var(--iv-navy);
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.iv-page-content > * {
    margin-block-start: 0;
}

.iv-page-content img,
.iv-page-content iframe,
.iv-page-content video,
.iv-page-content canvas,
.iv-page-content svg {
    max-width: 100%;
}

.iv-page-content img,
.iv-page-content video {
    height: auto;
}

.iv-page-content iframe {
    width: 100%;
}

.iv-page-content pre {
    max-width: 100%;
    overflow: auto;
}

.iv-page-content .wp-block-table {
    overflow-x: auto;
}

.iv-page-content .alignwide,
.iv-page-content .alignfull {
    max-width: 100%;
}

.iv-hero {
    position: relative;
    isolation: isolate;
    overflow: clip;
    padding: 86px 0 64px;
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 18%, rgba(66, 198, 190, 0.22), transparent 34%),
        linear-gradient(105deg, rgba(0, 52, 84, 1) 0%, rgba(4, 74, 102, 0.98) 43%, rgba(234, 249, 247, 0.96) 74%, rgba(246, 248, 250, 1) 100%);
}

.iv-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.52;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000 0%, #000 52%, transparent 82%);
}

.iv-hero__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(600px, 1.28fr);
    gap: 54px;
    align-items: center;
}

.iv-kicker {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-width: 0;
    padding: 7px 12px;
    color: #11726f;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    line-height: 1.25;
    text-transform: uppercase;
    white-space: normal;
    background: #ffffff;
    border: 1px solid #bae6e1;
    border-radius: 999px;
}

.iv-hero .iv-kicker {
    color: #dffffc;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(186, 230, 225, 0.36);
}

.iv-hero h1,
.iv-content-section h2,
.iv-final h2 {
    color: var(--iv-navy);
    letter-spacing: 0;
}

.iv-hero h1 {
    margin: 20px 0 16px;
    color: #ffffff;
    font-size: clamp(2.45rem, 4.6vw, 4.7rem);
    line-height: 1.02;
}

.iv-lead {
    max-width: 660px;
    color: #d8e8ee;
    font-size: 1.13rem;
    line-height: 1.58;
}

.iv-hero .is-style-outline .wp-block-button__link {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.34);
}

.iv-actions,
.wp-block-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.iv-content-section {
    padding: 74px 0;
}

.iv-content-section--white {
    background: #ffffff;
}

.iv-content-section--dark {
    color: #ffffff;
    background: linear-gradient(180deg, var(--iv-navy) 0%, #052b45 100%);
}

.iv-content-section--dark h2,
.iv-content-section--dark h3 {
    color: #ffffff;
}

.iv-content-section--dark p,
.iv-content-section--dark li {
    color: #d4e0e7;
}

.iv-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.iv-section-head h2,
.iv-content-section h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3.25vw, 3.35rem);
    line-height: 1.06;
}

.iv-section-head p {
    max-width: 440px;
    margin: 0;
}

.iv-grid-2,
.iv-grid-3,
.iv-process,
.iv-proof-grid {
    display: grid;
    gap: 16px;
}

.iv-grid-2 {
    grid-template-columns: 1fr;
}

.iv-grid-3 {
    grid-template-columns: 1fr;
}

.iv-process {
    grid-template-columns: 1fr;
}

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

.iv-card,
.iv-step,
.iv-proof-item {
    padding: 22px;
    background: var(--iv-card);
    border: 1px solid var(--iv-line);
    border-radius: var(--iv-radius-large);
    box-shadow: 0 12px 30px rgba(7, 52, 82, 0.06);
}

.iv-card,
.iv-step,
.iv-proof-item,
.iv-product-shell,
.iv-dashboard__metrics div,
.iv-dashboard__grid section,
.iv-quick-actions,
.iv-portal-modules article {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.iv-card:hover,
.iv-step:hover,
.iv-proof-item:hover,
.iv-dashboard__metrics div:hover,
.iv-dashboard__grid section:hover,
.iv-portal-modules article:hover {
    transform: translateY(-2px);
    border-color: #cfe2e5;
    box-shadow: 0 16px 34px rgba(7, 52, 82, 0.1);
}

.iv-content-section--dark .iv-card {
    background: #0b3c5d;
    border-color: #195374;
}

.iv-proof-item {
    position: relative;
    overflow: hidden;
    min-height: 196px;
}

.iv-proof-item::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px auto;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(66, 198, 190, 0.28);
    border-radius: 16px;
    transform: rotate(10deg);
}

.iv-proof-item strong {
    display: block;
    color: var(--iv-navy);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 0.95;
}

.iv-proof-item span {
    display: block;
    margin-top: 10px;
    color: #11726f;
    font-weight: 870;
}

.iv-proof-item p {
    max-width: 24rem;
    margin: 12px 0 0;
}

.iv-feature-band {
    display: grid;
    gap: 28px;
    align-items: center;
}

.iv-feature-band h2 {
    margin: 18px 0 16px;
}

.iv-feature-band > div > p {
    max-width: 620px;
    color: #d4e0e7;
}

.iv-feature-band ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.iv-feature-band li {
    display: grid;
    gap: 6px;
    padding: 18px;
    color: #d4e0e7;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--iv-radius-large);
}

.iv-feature-band li strong {
    color: #ffffff;
    font-size: 1.02rem;
}

.iv-feature-band li span {
    color: #d4e0e7;
    line-height: 1.5;
}

.iv-content-section--dark .iv-engagement-form {
    color: var(--iv-ink);
}

.iv-engagement-form {
    display: grid;
    gap: 14px;
}

.iv-engagement-form form,
.iv-engagement-form .snsoft-ms365-engagement,
.iv-engagement-form [class*="snsoft"] {
    display: grid;
    gap: 14px;
}

.iv-engagement-form label {
    color: var(--iv-ink);
    font-weight: 760;
}

.iv-engagement-form input,
.iv-engagement-form textarea,
.iv-engagement-form select {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--iv-ink);
    font: inherit;
    background: #ffffff;
    border: 1px solid var(--iv-line);
    border-radius: var(--iv-radius);
}

.iv-engagement-form textarea {
    min-height: 120px;
    resize: vertical;
}

.iv-engagement-form button,
.iv-engagement-form input[type="submit"] {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #ffffff;
    font: inherit;
    font-weight: 820;
    background: linear-gradient(135deg, var(--iv-teal), var(--iv-teal-dark));
    border: 0;
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(47, 180, 172, 0.22);
    cursor: pointer;
}

.iv-card h3,
.iv-step h3 {
    margin: 0 0 8px;
    font-size: 1.14rem;
}

.iv-card p,
.iv-step p,
.iv-content-section p {
    color: var(--iv-muted);
    line-height: 1.58;
}

.iv-content-section--dark .iv-card p {
    color: #d4e0e7;
}

.iv-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    color: #11726f;
    font-weight: 900;
    background: var(--iv-aqua);
    border-radius: var(--iv-radius);
}

.iv-check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.iv-check-list li {
    display: flex;
    gap: 10px;
}

.iv-check-list li::before {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    margin-top: 3px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 900;
    content: "\2713";
    background: var(--iv-teal);
    border-radius: 999px;
}

.iv-step small {
    color: #11726f;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.iv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.iv-tags span {
    padding: 10px 14px;
    color: #254b60;
    font-weight: 780;
    background: #ffffff;
    border: 1px solid #cfe2e5;
    border-radius: 999px;
}

.iv-product-shell {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    min-height: 560px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--iv-line);
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(7, 52, 82, 0.16);
}

.iv-portal-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 24px 14px;
    color: #ffffff;
    background: linear-gradient(180deg, #003454 0%, #002f4d 100%);
}

.iv-portal-logo {
    display: block;
    font-size: 1.65rem;
    font-weight: 520;
    line-height: 1;
}

.iv-portal-logo + span {
    display: block;
    margin-top: 7px;
    color: var(--iv-teal);
    font-size: 0.78rem;
    font-weight: 760;
}

.iv-portal-nav {
    display: grid;
    gap: 8px;
}

.iv-portal-nav span {
    min-height: 34px;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0 11px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.74rem;
    font-weight: 760;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 10px;
}

.iv-portal-nav span::before {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    margin-right: 9px;
    content: "";
    border: 1px solid currentColor;
    border-radius: 2px;
    opacity: 0.9;
}

.iv-portal-nav .is-active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--iv-teal), var(--iv-teal-dark));
}

.iv-portal-canvas {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
    padding: 16px;
    background: #fafbfc;
}

.iv-portal-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 44px;
    padding-bottom: 12px;
    color: #293a49;
    font-size: 0.76rem;
    font-weight: 760;
    border-bottom: 1px solid var(--iv-line);
}

.iv-portal-topbar span {
    min-width: 0;
    padding: 8px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #ffffff;
    border: 1px solid var(--iv-line);
    border-radius: 8px;
}

.iv-portal-topbar span:nth-child(2) {
    background: transparent;
    border-color: transparent;
}

.iv-portal-intro h3 {
    margin: 0;
    color: var(--iv-ink);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.05;
}

.iv-portal-intro p {
    margin: 6px 0 0;
    color: var(--iv-muted);
    font-size: 0.9rem;
}

.iv-dashboard__metrics,
.iv-room-grid {
    display: grid;
    gap: 10px;
}

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

.iv-dashboard__metrics div,
.iv-room-grid div {
    min-width: 0;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--iv-line);
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(16, 34, 51, 0.045);
}

.iv-dashboard__metrics span,
.iv-room-grid span {
    display: block;
    color: #6b7d8d;
    font-size: 0.72rem;
    font-weight: 760;
}

.iv-dashboard__metrics strong,
.iv-room-grid strong {
    display: block;
    margin-top: 5px;
    color: var(--iv-navy);
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
    line-height: 1;
}

.iv-dashboard__metrics small {
    display: block;
    margin-top: 6px;
    color: #119f99;
    font-size: 0.68rem;
    font-weight: 760;
}

.iv-dashboard__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 12px;
}

.iv-dashboard__grid section {
    padding: 16px;
    background: #ffffff;
    border: 1px solid var(--iv-line);
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(16, 34, 51, 0.045);
}

.iv-dashboard__grid h3 {
    margin-top: 0;
}

.iv-timeline {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.iv-timeline li {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 10px;
    align-items: center;
    font-size: 0.84rem;
}

.iv-timeline time {
    color: #667789;
    font-size: 0.72rem;
}

.iv-timeline span {
    padding: 5px 9px;
    color: #11726f;
    font-size: 0.72rem;
    font-weight: 760;
    background: var(--iv-aqua);
    border-radius: 999px;
}

.iv-room-grid {
    grid-template-columns: 1fr;
}

.iv-quick-actions,
.iv-portal-modules {
    display: grid;
    gap: 10px;
}

.iv-quick-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--iv-line);
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(16, 34, 51, 0.045);
}

.iv-quick-actions span,
.iv-portal-modules article {
    min-width: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--iv-line);
    border-radius: 10px;
}

.iv-quick-actions span {
    color: var(--iv-ink);
    font-size: 0.76rem;
    font-weight: 780;
}

.iv-quick-actions span::before {
    width: 26px;
    height: 26px;
    display: inline-grid;
    place-items: center;
    margin-right: 8px;
    color: #11726f;
    content: "+";
    background: var(--iv-aqua);
    border-radius: 8px;
}

.iv-portal-modules {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.iv-portal-modules article {
    display: grid;
    gap: 5px;
    box-shadow: 0 8px 22px rgba(16, 34, 51, 0.045);
}

.iv-portal-modules strong {
    color: var(--iv-ink);
    font-size: 0.86rem;
}

.iv-portal-modules span {
    color: var(--iv-muted);
    font-size: 0.74rem;
}

@media (min-width: 620px) {
    .iv-grid-3,
    .iv-process,
    .iv-proof-grid,
    .iv-room-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 860px) {
    .iv-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .iv-feature-band {
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    }

    .iv-dashboard__metrics {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1040px) {
    .iv-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .iv-process {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .iv-proof-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.iv-final {
    padding: 74px 0;
    background: var(--iv-paper);
}

.iv-final__box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 40px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--iv-navy), #0b6370 72%, var(--iv-teal));
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(7, 52, 82, 0.2);
}

.iv-final h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.9rem, 3.25vw, 3.35rem);
    line-height: 1.06;
}

.iv-final p {
    max-width: 680px;
    color: #dcebed;
}

.iv-site-footer {
    background: var(--iv-paper);
}

.iv-site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: space-between;
    padding: 24px 0;
    color: #718292;
}

.iv-site-footer__inner p {
    margin: 0;
}

.iv-legal-content {
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--iv-line);
    border-radius: var(--iv-radius-large);
    box-shadow: 0 12px 30px rgba(7, 52, 82, 0.06);
}

.iv-legal-content h1 {
    margin-top: 0;
    color: var(--iv-navy);
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.iv-legal-content h2 {
    margin-top: 28px;
    color: var(--iv-navy);
    font-size: 1.35rem;
}

.iv-legal-content p {
    max-width: 920px;
    color: var(--iv-muted);
    line-height: 1.58;
}

@media (max-width: 1080px) {
    .iv-hero__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .iv-final__box {
        grid-template-columns: 1fr;
    }

    .iv-section-head {
        display: grid;
    }

    .iv-product-shell {
        grid-template-columns: 118px minmax(0, 1fr);
        max-width: 720px;
        min-height: 0;
    }

    .iv-portal-sidebar {
        padding: 20px 10px;
    }

    .iv-portal-nav span {
        padding-inline: 9px;
    }

    .iv-dashboard__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .iv-site-header__inner {
        min-height: 64px;
    }

    .iv-menu-toggle {
        min-height: 44px;
        min-width: 88px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 18px;
        color: #ffffff;
        font: inherit;
        font-weight: 850;
        background: linear-gradient(135deg, var(--iv-teal), var(--iv-teal-dark));
        border: 0;
        border-radius: 999px;
        cursor: pointer;
    }

    .iv-primary-nav {
        position: fixed;
        inset: 64px 0 0;
        display: none;
        width: auto;
        max-width: 100%;
        height: calc(100dvh - 64px);
        min-height: 0;
        padding: 24px 18px 32px;
        overflow-x: hidden;
        overflow-y: auto;
        background: linear-gradient(180deg, #ffffff 0%, #eefaf8 100%);
        border-top: 1px solid var(--iv-line);
    }

    .iv-primary-nav.is-open {
        display: block;
    }

    .iv-menu {
        display: grid;
        gap: 12px;
    }

    .iv-menu a {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 18px;
        color: #254b60;
        font-size: 1.05rem;
        background: #ffffff;
        border: 1px solid var(--iv-line);
        border-radius: 14px;
        box-shadow: 0 10px 26px rgba(7, 52, 82, 0.06);
    }

    .iv-link-button a {
        color: #ffffff;
        background: linear-gradient(135deg, var(--iv-teal), var(--iv-teal-dark));
        border-color: transparent;
    }
}

@media (max-width: 560px) {
    :root {
        --iv-wrap: min(100% - 22px, 1160px);
    }

    .iv-brand__name {
        font-size: 1.12rem;
    }

    .iv-hero {
        padding: 42px 0 32px;
    }

    .iv-hero h1 {
        font-size: clamp(2rem, 9.4vw, 2.35rem);
        line-height: 1.05;
    }

    .iv-content-section h2,
    .iv-final h2 {
        font-size: clamp(1.65rem, 7.5vw, 2.15rem);
    }

    .iv-dashboard__metrics,
    .iv-room-grid {
        grid-template-columns: 1fr;
    }

    .iv-product-shell {
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .iv-portal-sidebar {
        display: none;
    }

    .iv-portal-canvas {
        padding: 12px;
    }

    .iv-portal-topbar {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .iv-portal-topbar span:nth-child(2) {
        background: #ffffff;
        border-color: var(--iv-line);
    }

    .iv-dashboard__grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .iv-portal-nav {
        display: none;
    }

    .iv-quick-actions,
    .iv-portal-modules {
        grid-template-columns: 1fr;
    }

    .iv-card:hover,
    .iv-step:hover,
    .iv-proof-item:hover,
    .iv-dashboard__metrics div:hover,
    .iv-dashboard__grid section:hover,
    .iv-portal-modules article:hover {
        transform: none;
    }

    .iv-final__box {
        padding: 26px;
    }

    .iv-actions .iv-button,
    .iv-final .iv-button,
    .wp-block-button,
    .wp-block-button__link {
        width: 100%;
    }

    .iv-timeline li {
        grid-template-columns: 44px 1fr;
    }

    .iv-timeline span {
        grid-column: 2;
    }

    .iv-site-footer__inner {
        display: grid;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .iv-hero .iv-kicker,
    .iv-hero h1,
    .iv-hero .iv-lead,
    .iv-hero .iv-actions,
    .iv-product-shell,
    .iv-proof-item,
    .iv-feature-band li {
        animation: iv-rise 520ms ease both;
    }

    .iv-hero h1 {
        animation-delay: 70ms;
    }

    .iv-hero .iv-lead {
        animation-delay: 120ms;
    }

    .iv-hero .iv-actions {
        animation-delay: 170ms;
    }

    .iv-product-shell {
        animation-delay: 120ms;
    }

    .iv-proof-item:nth-child(2),
    .iv-feature-band li:nth-child(2) {
        animation-delay: 80ms;
    }

    .iv-proof-item:nth-child(3),
    .iv-feature-band li:nth-child(3) {
        animation-delay: 140ms;
    }

    .iv-proof-item:nth-child(4) {
        animation-delay: 200ms;
    }

    .iv-product-shell {
        animation-name: iv-rise;
        animation-duration: 520ms;
        animation-delay: 120ms;
        animation-timing-function: ease;
        animation-iteration-count: 1;
        animation-fill-mode: both;
    }

    .iv-dashboard__metrics div small {
        animation: iv-status-pulse 2.8s ease-in-out infinite;
    }
}

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

@keyframes iv-rise {
    from {
        opacity: 0.88;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iv-status-pulse {
    0%,
    100% {
        opacity: 0.72;
    }

    50% {
        opacity: 1;
    }
}
