/* InfraCue public landing page only. Product app styles stay in assets/css/app.css. */

:root {
    --ic-ink: #07111f;
    --ic-ink-2: #0b1a2a;
    --ic-muted: #5f7083;
    --ic-soft: #eef6fb;
    --ic-paper: #ffffff;
    --ic-line: #d7e4ee;
    --ic-dark: #06111f;
    --ic-dark-2: #082337;
    --ic-cyan: #21c7e6;
    --ic-teal: #18d1b2;
    --ic-blue: #2563eb;
    --ic-amber: #f59e0b;
    --ic-red: #ef4444;
    --ic-green: #17a873;
    --ic-max: 1180px;
    --ic-radius: 8px;
    --ic-shadow: 0 22px 70px rgba(7, 17, 31, .11);
    --ic-shadow-strong: 0 30px 110px rgba(7, 17, 31, .22);
}

body.ic-page {
    margin: 0;
    overflow-x: hidden;
    color: var(--ic-ink);
    background: #ffffff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.ic-page,
body.ic-page * {
    box-sizing: border-box;
    min-width: 0;
}

body.ic-page a {
    color: inherit;
    text-decoration: none;
}

body.ic-page img {
    display: block;
    max-width: 100%;
    height: auto;
}

body.ic-page button,
body.ic-page input,
body.ic-page textarea,
body.ic-page select {
    font: inherit;
}

.ic-container {
    width: min(var(--ic-max), calc(100vw - 48px));
    margin: 0 auto;
}

.ic-header {
    position: fixed;
    z-index: 50;
    top: 14px;
    left: 50%;
    width: min(var(--ic-max), calc(100vw - 32px));
    min-height: 66px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 10px 12px 10px 16px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--ic-radius);
    background: rgba(6, 17, 31, .88);
    box-shadow: 0 18px 60px rgba(4, 11, 22, .26);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
    color: #ffffff;
}

.ic-header.is-scrolled {
    background: rgba(6, 17, 31, .96);
    border-color: rgba(33, 199, 230, .32);
}

.ic-brand {
    display: inline-flex;
    align-items: center;
}

.ic-brand img {
    width: 150px;
}

.ic-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 26px);
}

.ic-header .ic-nav a {
    position: relative;
    color: rgba(242, 250, 255, .86);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
}

.ic-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ic-cyan), var(--ic-teal));
    opacity: 0;
    transform: scaleX(.5);
    transition: opacity .18s ease, transform .18s ease;
}

.ic-header .ic-nav a:hover {
    color: #ffffff;
}

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

.ic-header-actions,
.ic-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ic-menu-button {
    display: none;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--ic-radius);
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
}

.ic-link-button,
.ic-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--ic-radius);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.ic-link-button {
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .20);
    color: #f8fbff;
    background: rgba(255, 255, 255, .08);
}

.ic-button {
    padding: 0 18px;
    border: 1px solid transparent;
}

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

.ic-button-primary {
    color: #04111f;
    background: linear-gradient(135deg, var(--ic-cyan), var(--ic-teal));
    box-shadow: 0 16px 40px rgba(24, 209, 178, .26);
}

.ic-button-ghost {
    color: #ffffff;
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
}

.ic-button-large {
    min-height: 52px;
    padding: 0 24px;
    font-size: 15px;
}

.ic-hero {
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(6, 17, 31, .98), rgba(8, 35, 55, .94) 58%, rgba(5, 47, 53, .97)),
        #06111f;
}

.ic-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .38;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(33, 199, 230, .10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(33, 199, 230, .10) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, #000, transparent 92%);
}

.ic-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 120px;
    background: linear-gradient(180deg, transparent, #ffffff);
    pointer-events: none;
}

.ic-hero-grid {
    position: relative;
    z-index: 1;
    width: min(var(--ic-max), calc(100vw - 48px));
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(460px, .95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 42px;
    margin: 0 auto;
    padding: 126px 0 92px;
}

.ic-hero-copy h1 {
    max-width: 710px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(45px, 5.1vw, 70px);
    line-height: 1;
    letter-spacing: 0;
}

.ic-lead {
    max-width: 630px;
    margin: 24px 0 0;
    color: rgba(242, 250, 255, .78);
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.56;
}

.ic-hero-actions {
    margin-top: 32px;
}

.ic-proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.ic-proof-strip span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--ic-radius);
    color: rgba(242, 250, 255, .80);
    font-size: 13px;
    font-weight: 850;
    background: rgba(255, 255, 255, .07);
}

.ic-hero-proof {
    position: relative;
}

.ic-product-window {
    position: relative;
    overflow: hidden;
    padding: 10px;
    border: 1px solid rgba(130, 150, 170, .24);
    border-radius: var(--ic-radius);
    background: #ffffff;
    box-shadow: var(--ic-shadow);
}

.ic-product-window-dark {
    border-color: rgba(255, 255, 255, .18);
    background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
    box-shadow: var(--ic-shadow-strong);
}

.ic-product-window-soft {
    background: linear-gradient(180deg, #ffffff, #f2f7fb);
}

.ic-product-window-wallboard {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .34);
}

.ic-product-window img {
    width: 100%;
    aspect-ratio: 1672 / 941;
    object-fit: contain;
    border-radius: 5px;
    background: #ffffff;
}

.ic-window-bar {
    height: 24px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 7px;
}

.ic-window-bar span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--ic-cyan);
}

.ic-window-bar span:nth-child(2) { background: var(--ic-teal); }
.ic-window-bar span:nth-child(3) { background: var(--ic-amber); }

.ic-signal-card {
    position: absolute;
    right: 18px;
    bottom: -24px;
    width: min(330px, 70%);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--ic-radius);
    color: #ffffff;
    background: rgba(6, 17, 31, .92);
    box-shadow: 0 18px 50px rgba(3, 10, 20, .34);
}

.ic-signal-card strong,
.ic-signal-card span {
    display: block;
}

.ic-signal-card span {
    margin-top: 5px;
    color: rgba(242, 250, 255, .70);
    font-size: 13px;
    line-height: 1.45;
}

.ic-outcomes {
    padding: 26px 0 72px;
    background: #ffffff;
}

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

.ic-outcome-grid article {
    min-height: 136px;
    padding: 20px;
    border: 1px solid var(--ic-line);
    border-radius: var(--ic-radius);
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(7, 17, 31, .05);
}

.ic-outcome-grid strong,
.ic-outcome-grid span {
    display: block;
}

.ic-outcome-grid strong {
    color: var(--ic-ink);
    font-size: 18px;
}

.ic-outcome-grid span {
    margin-top: 9px;
    color: var(--ic-muted);
    line-height: 1.55;
}

.ic-section {
    padding: 88px 0;
    background: #ffffff;
}

.ic-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #0f8f82;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.ic-section-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--ic-teal);
}

.ic-section-head {
    max-width: 790px;
    margin-bottom: 34px;
}

.ic-section-head.ic-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ic-section-head h2,
.ic-section-copy h2,
.ic-trial-copy h2,
.ic-final-box h2 {
    margin: 0;
    color: var(--ic-ink);
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.04;
    letter-spacing: 0;
}

.ic-section-head p,
.ic-section-copy p,
.ic-trial-copy p {
    margin: 16px 0 0;
    color: var(--ic-muted);
    font-size: 18px;
    line-height: 1.62;
}

.ic-split {
    display: grid;
    grid-template-columns: .82fr 1fr;
    gap: 36px;
    align-items: center;
}

.ic-before-after {
    background: linear-gradient(180deg, #ffffff, #f4f9fc);
}

.ic-before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ic-before,
.ic-after {
    padding: 24px;
    border: 1px solid var(--ic-line);
    border-radius: var(--ic-radius);
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(7, 17, 31, .06);
}

.ic-before h3,
.ic-after h3 {
    margin: 0;
    font-size: 22px;
}

.ic-before ul,
.ic-after ul,
.ic-plan-card ul {
    display: grid;
    gap: 11px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.ic-before li,
.ic-after li,
.ic-plan-card li {
    position: relative;
    padding-left: 20px;
    color: var(--ic-muted);
    line-height: 1.48;
}

.ic-before li::before,
.ic-after li::before,
.ic-plan-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .58em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
}

.ic-before li::before {
    background: var(--ic-amber);
}

.ic-after li::before,
.ic-plan-card li::before {
    background: var(--ic-teal);
}

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

.ic-feature-card {
    min-height: 282px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--ic-line);
    border-radius: var(--ic-radius);
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(7, 17, 31, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ic-feature-card:hover,
.ic-plan-card:hover,
.ic-governance-list article:hover,
.ic-faq details:hover {
    transform: translateY(-3px);
    border-color: rgba(24, 209, 178, .38);
    box-shadow: 0 24px 70px rgba(7, 17, 31, .11);
}

.ic-feature-card > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: var(--ic-radius);
    color: #06111f;
    font-size: 13px;
    font-weight: 950;
    background: linear-gradient(135deg, var(--ic-cyan), var(--ic-teal));
}

.ic-feature-card h3 {
    margin: 26px 0 10px;
    color: var(--ic-ink);
    font-size: 24px;
    line-height: 1.16;
}

.ic-feature-card p {
    margin: 0;
    color: var(--ic-muted);
    line-height: 1.62;
}

.ic-dark-band,
.ic-wallboard {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #06111f, #082337 64%, #052f35);
}

.ic-dark-band::before,
.ic-wallboard::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .32;
    background-image:
        linear-gradient(rgba(33, 199, 230, .10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(33, 199, 230, .10) 1px, transparent 1px);
    background-size: 68px 68px;
}

.ic-media-split {
    position: relative;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    align-items: center;
    gap: 42px;
}

.ic-media-split-reverse {
    grid-template-columns: 1.25fr .75fr;
}

.ic-media-split-reverse .ic-section-copy {
    order: 2;
}

.ic-dark-band .ic-section-copy h2,
.ic-wallboard .ic-section-copy h2 {
    color: #ffffff;
}

.ic-dark-band .ic-section-copy p,
.ic-wallboard .ic-section-copy p {
    color: rgba(242, 250, 255, .75);
}

.ic-dark-band .ic-section-label,
.ic-wallboard .ic-section-label {
    color: var(--ic-cyan);
}

.ic-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.ic-check-grid span {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--ic-radius);
    color: rgba(242, 250, 255, .84);
    font-weight: 850;
    background: rgba(255, 255, 255, .07);
}

.ic-check-grid-light span {
    color: #0d2a3a;
    border-color: var(--ic-line);
    background: #f4f9fc;
}

.ic-wallboard {
    padding: 94px 0;
}

.ic-governance {
    background: linear-gradient(180deg, #ffffff, #f4f9fc);
}

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

.ic-governance-list article {
    min-height: 190px;
    padding: 22px;
    border: 1px solid var(--ic-line);
    border-radius: var(--ic-radius);
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(7, 17, 31, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ic-governance-list strong,
.ic-governance-list span {
    display: block;
}

.ic-governance-list strong {
    color: var(--ic-ink);
    font-size: 20px;
    line-height: 1.18;
}

.ic-governance-list span {
    margin-top: 10px;
    color: var(--ic-muted);
    line-height: 1.55;
}

.ic-pricing {
    background: #ffffff;
}

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

.ic-plan-card {
    position: relative;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--ic-line);
    border-radius: var(--ic-radius);
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(7, 17, 31, .07);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ic-plan-featured {
    border-color: rgba(24, 209, 178, .52);
    box-shadow: 0 26px 86px rgba(24, 209, 178, .15);
}

.ic-plan-card.is-selected {
    border-color: rgba(33, 199, 230, .78);
    box-shadow: 0 28px 90px rgba(33, 199, 230, .18);
}

.ic-plan-card.is-selected::before {
    content: "Selected";
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 9px;
    border-radius: var(--ic-radius);
    color: #04111f;
    font-size: 11px;
    font-weight: 950;
    background: linear-gradient(135deg, var(--ic-cyan), var(--ic-teal));
}

.ic-plan-ribbon {
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 10px;
    border-radius: var(--ic-radius);
    color: #05231f;
    font-size: 12px;
    font-weight: 950;
    background: linear-gradient(135deg, var(--ic-cyan), var(--ic-teal));
}

.ic-plan-card h3 {
    margin: 0;
    font-size: 28px;
}

.ic-plan-card p {
    min-height: 66px;
    margin: 10px 0 18px;
    color: var(--ic-muted);
    line-height: 1.5;
}

.ic-plan-card strong {
    display: block;
    color: var(--ic-ink);
    font-size: 34px;
    line-height: 1;
}

.ic-plan-card strong span {
    color: var(--ic-muted);
    font-size: 15px;
}

.ic-plan-card em {
    min-height: 42px;
    display: block;
    margin-top: 12px;
    color: var(--ic-muted);
    font-size: 13px;
    font-style: normal;
    line-height: 1.45;
}

.ic-plan-card ul {
    flex: 1;
    padding-top: 18px;
    border-top: 1px solid var(--ic-line);
}

.ic-button-plan {
    width: 100%;
    margin-top: 22px;
    color: var(--ic-ink);
    border-color: var(--ic-line);
    background: #f4f9fc;
}

.ic-button-plan:hover {
    border-color: rgba(24, 209, 178, .42);
    background: #ecfbf8;
}

.ic-plan-card .ic-button.is-selected {
    color: #04111f;
    border-color: transparent;
    background: linear-gradient(135deg, var(--ic-cyan), var(--ic-teal));
    box-shadow: 0 14px 32px rgba(24, 209, 178, .22);
}

.ic-trial {
    padding: 96px 0;
    color: #ffffff;
    background: linear-gradient(135deg, #06111f, #0a263c);
}

.ic-trial-grid {
    display: grid;
    grid-template-columns: .75fr 1fr;
    gap: 42px;
    align-items: start;
}

.ic-trial-copy h2 {
    color: #ffffff;
}

.ic-trial-copy p {
    color: rgba(242, 250, 255, .75);
}

.ic-trial-notes {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.ic-trial-notes span {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--ic-radius);
    color: rgba(242, 250, 255, .82);
    background: rgba(255, 255, 255, .07);
}

.ic-form {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--ic-radius);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .24);
}

.ic-form-toggle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 18px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--ic-radius);
    background: rgba(6, 17, 31, .48);
}

.ic-form-toggle button {
    min-height: 42px;
    border: 0;
    border-radius: 6px;
    color: rgba(242, 250, 255, .72);
    font-weight: 900;
    background: transparent;
    cursor: pointer;
}

.ic-form-toggle button.is-active {
    color: #04111f;
    background: linear-gradient(135deg, var(--ic-cyan), var(--ic-teal));
}

.ic-alert {
    display: grid;
    gap: 5px;
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: var(--ic-radius);
}

.ic-alert strong,
.ic-alert span {
    display: block;
}

.ic-alert-success {
    color: #06311f;
    background: #dffbea;
}

.ic-alert-error {
    color: #4f0d13;
    background: #ffe4e6;
}

.ic-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ic-field {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
}

.ic-field label {
    color: rgba(242, 250, 255, .78);
    font-size: 13px;
    font-weight: 850;
}

.ic-field input,
.ic-field select,
.ic-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--ic-radius);
    color: #ffffff;
    background: rgba(6, 17, 31, .76);
    outline: none;
}

.ic-field input,
.ic-field select {
    min-height: 48px;
    padding: 0 13px;
}

.ic-field textarea {
    resize: vertical;
    padding: 12px 13px;
}

.ic-field input:focus,
.ic-field select:focus,
.ic-field textarea:focus {
    border-color: rgba(33, 199, 230, .72);
    box-shadow: 0 0 0 4px rgba(33, 199, 230, .14);
}

.ic-field ::placeholder {
    color: rgba(242, 250, 255, .42);
}

.ic-submit {
    width: 100%;
}

.ic-form-footnote {
    margin: 12px 0 0;
    color: rgba(242, 250, 255, .56);
    font-size: 12px;
    line-height: 1.5;
}

.ic-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.ic-faq {
    background: #ffffff;
}

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

.ic-faq details {
    border: 1px solid var(--ic-line);
    border-radius: var(--ic-radius);
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(7, 17, 31, .05);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ic-faq summary {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 18px 46px 18px 18px;
    color: var(--ic-ink);
    font-weight: 900;
    line-height: 1.45;
}

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

.ic-faq summary::after {
    content: "+";
    position: absolute;
    top: 17px;
    right: 18px;
    color: #0f8f82;
    font-size: 24px;
    line-height: 1;
}

.ic-faq details[open] summary::after {
    content: "-";
}

.ic-faq p {
    margin: 0;
    padding: 0 18px 20px;
    color: var(--ic-muted);
    line-height: 1.62;
}

.ic-final {
    padding: 84px 0;
    background: linear-gradient(180deg, #ffffff, #f4f9fc);
}

.ic-final-box {
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: 52px 26px;
    border-radius: var(--ic-radius);
    color: #ffffff;
    text-align: center;
    background: linear-gradient(135deg, #06111f, #082d3e);
    box-shadow: var(--ic-shadow-strong);
}

.ic-final-box img {
    width: 168px;
}

.ic-final-box h2 {
    max-width: 820px;
    color: #ffffff;
}

.ic-final-box .ic-hero-actions {
    justify-content: center;
}

.ic-footer {
    padding: 54px 0;
    color: rgba(242, 250, 255, .68);
    background: #06111f;
}

.ic-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 34px;
}

.ic-footer img {
    width: 162px;
}

.ic-footer p {
    max-width: 420px;
    margin: 18px 0 0;
    line-height: 1.62;
}

.ic-footer h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 15px;
}

.ic-footer a,
.ic-footer span {
    display: block;
    margin-top: 10px;
    color: rgba(242, 250, 255, .68);
}

.ic-footer a:hover {
    color: var(--ic-cyan);
}

@media (prefers-reduced-motion: reduce) {
    body.ic-page *,
    body.ic-page *::before,
    body.ic-page *::after {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 1100px) {
    .ic-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .ic-menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .ic-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: var(--ic-radius);
        background: rgba(6, 17, 31, .98);
    }

    .ic-nav.is-open {
        display: flex;
    }

    .ic-nav a {
        padding: 12px;
    }

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

    .ic-header-actions {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
    }

    .ic-nav.is-open ~ .ic-header-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ic-hero-grid,
    .ic-media-split,
    .ic-media-split-reverse,
    .ic-split,
    .ic-trial-grid {
        grid-template-columns: 1fr;
    }

    .ic-media-split-reverse .ic-section-copy {
        order: 0;
    }

    .ic-hero {
        min-height: auto;
    }

    .ic-hero-grid {
        min-height: auto;
        padding-top: 128px;
    }

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

    .ic-outcome-grid,
    .ic-governance-list,
    .ic-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .ic-container,
    .ic-hero-grid {
        width: calc(100vw - 28px);
    }

    .ic-header {
        top: 10px;
        width: calc(100vw - 20px);
        min-height: 62px;
        padding: 10px;
    }

    .ic-brand img {
        width: 136px;
    }

    .ic-nav.is-open ~ .ic-header-actions {
        grid-template-columns: 1fr;
    }

    .ic-hero-grid {
        gap: 32px;
        padding: 116px 0 70px;
    }

    .ic-hero-copy h1 {
        font-size: clamp(39px, 12vw, 54px);
        line-height: 1.02;
    }

    .ic-lead {
        font-size: 17px;
    }

    .ic-hero-actions .ic-button,
    .ic-header-actions .ic-button,
    .ic-header-actions .ic-link-button {
        width: 100%;
    }

    .ic-proof-strip span {
        width: 100%;
    }

    .ic-signal-card {
        position: static;
        width: 100%;
        margin-top: 10px;
    }

    .ic-section,
    .ic-wallboard,
    .ic-trial {
        padding: 62px 0;
    }

    .ic-outcomes {
        padding-bottom: 54px;
    }

    .ic-outcome-grid,
    .ic-before-after-grid,
    .ic-feature-grid,
    .ic-check-grid,
    .ic-governance-list,
    .ic-plan-grid,
    .ic-faq-grid,
    .ic-form-row,
    .ic-footer-grid {
        grid-template-columns: 1fr;
    }

    .ic-section-head h2,
    .ic-section-copy h2,
    .ic-trial-copy h2,
    .ic-final-box h2 {
        font-size: clamp(31px, 9.6vw, 42px);
    }

    .ic-feature-card,
    .ic-plan-card {
        min-height: auto;
    }

    .ic-plan-card p,
    .ic-plan-card em {
        min-height: 0;
    }

    .ic-form,
    .ic-final-box {
        padding: 22px;
    }

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

@media (max-width: 440px) {
    .ic-container,
    .ic-hero-grid {
        width: calc(100vw - 22px);
    }

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

    .ic-button-large {
        min-height: 50px;
        padding: 0 18px;
    }
}
