:root {
    --bg: #050712;
    --bg-soft: #0b1022;
    --card: rgba(255, 255, 255, 0.07);
    --card-strong: rgba(255, 255, 255, 0.11);
    --text: #ffffff;
    --muted: #b7bfd6;
    --line: rgba(255, 255, 255, 0.12);
    --orange: #ff8a1d;
    --amber: #ffc14d;
    --cyan: #28d7ff;
    --blue: #3768ff;
    --green: #24c46b;
    --red: #ff4e64;
    --radius: 24px;
    --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
}

/* Unified public chrome */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.site-header {
    width: 100%;
    z-index: 10000;
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(3, 7, 18, 0.98);
}

.site-header .container,
.site-footer .container,
.legal-footer .container {
    width: 95%;
    max-width: none;
}

.brand {
    min-width: 0;
}

.brand-logo {
    width: min(182px, 24vw);
    max-height: 58px;
}

.brand-product-name {
    display: grid;
    gap: 2px;
    max-width: min(360px, 44vw);
    color: var(--amber);
    font-size: clamp(0.68rem, 1vw, 0.86rem);
    font-weight: 950;
    letter-spacing: 0.08em;
    line-height: 1.12;
    text-transform: uppercase;
    white-space: normal;
}

.brand-product-name span {
    display: block;
}

.menu-toggle {
    display: flex !important;
    position: relative;
    z-index: 10030;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.main-nav,
.legal-nav {
    position: fixed !important;
    inset: 0 0 0 auto !important;
    width: min(380px, 88vw) !important;
    height: 100dvh !important;
    max-height: none !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 24px !important;
    border: 0 !important;
    border-left: 1px solid var(--line) !important;
    border-radius: 0 !important;
    background: rgba(5, 7, 18, 0.99) !important;
    box-shadow: -28px 0 80px rgba(0, 0, 0, 0.42) !important;
    overflow-y: auto !important;
    z-index: 10020 !important;
}

.main-nav.active,
.legal-nav.active {
    display: flex !important;
}

.main-nav a,
.legal-nav a {
    width: 100%;
    padding: 13px 14px !important;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.main-nav a:hover,
.legal-nav a:hover,
.main-nav a.is-section-active,
.legal-nav a.is-section-active {
    color: var(--amber);
    background: rgba(255, 193, 77, 0.12);
}

.mobile-menu-logo {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 0 18px !important;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

.mobile-menu-logo img {
    width: min(190px, 58vw);
    max-height: 58px;
    object-fit: contain;
}

.menu-close {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

main[data-section-switcher] > section:not([hidden]) {
    min-height: calc(100vh - 360px);
    display: grid;
    align-content: center;
}

.site-footer {
    flex-shrink: 0;
}

.footer-grid {
    width: 95% !important;
    max-width: none !important;
    grid-template-columns: minmax(240px, 1.2fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr);
}

.footer-bottom {
    width: 95% !important;
    max-width: none !important;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 10040;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--amber);
    color: #050712;
    box-shadow: var(--shadow);
    cursor: pointer;
    font-weight: 950;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top span {
    display: none;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 720px) {
    .brand-logo {
        width: min(142px, 34vw);
    }

    .brand-product-name {
        max-width: 36vw;
        font-size: 0.58rem;
        letter-spacing: 0.04em;
    }

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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(180deg, var(--bg), var(--bg-soft) 48%, var(--bg));
    color: var(--text);
    line-height: 1.6;
    overflow-x: clip;
}

body.nav-open {
    overflow-x: clip;
}

img {
    max-width: 100%;
}

.container {
    width: min(1280px, 90%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(5, 7, 18, 0.82);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-logo-link {
    flex-shrink: 0;
    line-height: 1;
}

.brand-logo {
    display: block;
    width: clamp(150px, 16vw, 205px);
    max-height: 56px;
    object-fit: contain;
}

.footer-logo {
    width: clamp(165px, 18vw, 230px);
    max-height: 64px;
}

.brand-fallback {
    display: none;
    line-height: 1.1;
    font-size: 1.35rem;
}

.brand-product-name {
    color: var(--muted);
    font-size: clamp(0.72rem, 1vw, 0.95rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand.logo-missing .brand-fallback {
    display: inline-flex;
}

.brand.logo-missing .brand-logo {
    display: none;
}

/* Kept only as a safe fallback if any other page still uses the old text logo markup. */
.brand-icon {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--orange), var(--cyan));
    color: #050712;
    box-shadow: 0 0 24px rgba(255, 138, 29, 0.35);
}

.brand-text {
    font-size: 1.35rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mobile-menu-logo {
    display: none;
}

.main-nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--text);
}

.main-nav a.is-section-active {
    color: var(--text);
}

.nav-cta {
    padding: 10px 18px;
    border-radius: 999px;
    color: #050712 !important;
    background: linear-gradient(135deg, var(--orange), var(--amber));
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--card);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 740px;
    display: flex;
    align-items: center;
    padding: 82px 0;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
    gap: clamp(42px, 5vw, 68px);
    align-items: center;
}

.hero-content h1 {
    margin: 18px 0 24px;
    max-width: 720px;
    font-size: clamp(3.05rem, 5.45vw, 5.25rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.nowrap {
    white-space: nowrap;
}

.hero-content p {
    max-width: 670px;
    color: var(--muted);
    font-size: 1.2rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amber);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.78rem;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

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

.hero-proof-row span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 11px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.86rem;
    font-weight: 800;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
    color: #050712;
    background: linear-gradient(135deg, var(--orange), var(--amber));
    box-shadow: 0 18px 46px rgba(255, 138, 29, 0.28);
}

.btn-secondary {
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.07);
}

.hero-visual {
    position: relative;
    min-height: 0;
    padding: clamp(18px, 2.4vw, 28px);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: visible;
}

.hero-visual::before {
    content: none;
    position: absolute;
    inset: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.hero-visual::after {
    content: none;
    position: absolute;
    inset: 95px;
    border: 1px dashed rgba(40, 215, 255, 0.22);
    border-radius: 50%;
}

.screen-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(360px, 78%);
    padding: 24px;
    border-radius: 28px;
    background: rgba(5, 7, 18, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.screen-topline {
    display: flex;
    gap: 7px;
    margin-bottom: 24px;
}

.screen-topline span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--orange);
}

.screen-topline span:nth-child(2) {
    background: var(--amber);
}

.screen-topline span:nth-child(3) {
    background: var(--cyan);
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.metric-row div {
    padding: 18px;
    border-radius: 18px;
    background: var(--card);
}

.metric-row small {
    display: block;
    color: var(--muted);
    font-size: 0.75rem;
}

.metric-row strong {
    display: block;
    margin-top: 5px;
    font-size: 1.8rem;
}

.chart-lines {
    display: flex;
    align-items: end;
    gap: 12px;
    min-height: 145px;
    margin-top: 24px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(40, 215, 255, 0.08), rgba(255, 138, 29, 0.07));
}

.bar {
    flex: 1;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, var(--cyan), var(--orange));
}

.bar-one { height: 60px; }
.bar-two { height: 95px; }
.bar-three { height: 125px; }
.bar-four { height: 80px; }

.orbit-card {
    position: absolute;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid var(--line);
    color: var(--text);
    font-weight: 900;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.36);
}

.orbit-one { top: 80px; left: 60px; color: var(--amber); }
.orbit-two { right: 44px; top: 126px; color: var(--green); }
.orbit-three { left: 38px; bottom: 108px; color: var(--cyan); }
.orbit-four { right: 48px; bottom: 78px; color: #ff94a2; }

.suite-board {
    position: relative;
    display: grid;
    gap: 14px;
    padding: clamp(18px, 2.4vw, 26px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(5, 7, 18, 0.72);
}

.suite-board-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.25;
}

.suite-board-top img {
    width: min(158px, 46%);
    max-height: 46px;
    object-fit: contain;
}

.suite-board-score {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 12px;
}

.suite-board-score div,
.suite-product-stack a {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.suite-board-score div {
    padding: 14px;
}

.suite-board-score span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.suite-board-score strong {
    display: block;
    margin-top: 4px;
    color: #ffffff;
    font-size: clamp(1.05rem, 1.7vw, 1.42rem);
    line-height: 1.12;
}

.suite-product-stack {
    display: grid;
    gap: 10px;
}

.suite-product-stack a {
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: var(--text);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.suite-product-stack a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 193, 77, 0.45);
}

.suite-product-stack img {
    width: 96px;
    max-height: 36px;
    object-fit: contain;
}

.suite-product-stack span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.25;
}

.suite-board-strip {
    padding: 11px 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 138, 29, 0.18), rgba(40, 215, 255, 0.12));
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.35;
}

.hero-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.32;
}

.hero-glow-one {
    background: var(--orange);
    left: -100px;
    top: 130px;
}

.hero-glow-two {
    background: var(--cyan);
    right: -120px;
    bottom: 120px;
}

.section {
    padding: 95px 0;
}

.executive-proof {
    padding-top: 24px;
}

.executive-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 34px;
    align-items: center;
}

.executive-proof-copy h2 {
    margin: 14px 0 16px;
    font-size: clamp(2rem, 3.6vw, 3.3rem);
    line-height: 1.06;
    letter-spacing: -0.055em;
}

.executive-proof-copy p {
    color: var(--muted);
    font-size: 1.05rem;
}

.proof-lane {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.proof-lane article {
    min-height: 210px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.07);
}

.proof-lane span {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--amber);
    font-size: 0.84rem;
    font-weight: 950;
}

.proof-lane strong {
    display: block;
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.2;
}

.proof-lane p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 46px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading h2,
.market-card h2,
.cta-box h2 {
    margin: 14px 0 18px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.section-heading p,
.market-card p,
.cta-box p {
    color: var(--muted);
    font-size: 1.08rem;
}

.card-grid,
.product-grid,
.benefit-grid,
.process-grid,
.market-grid,
.footer-grid {
    display: grid;
    gap: 22px;
}

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

.insight-card,
.product-card,
.market-card,
.benefit-card,
.process-step,
.cta-box {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, var(--card-strong), rgba(255, 255, 255, 0.035));
    border-radius: var(--radius);
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.24);
}

.insight-card {
    padding: 28px;
}

.tag {
    display: inline-flex;
    color: #050712;
    background: linear-gradient(135deg, var(--cyan), var(--amber));
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 0.76rem;
    font-weight: 900;
}

.insight-card h3,
.product-card h3,
.benefit-card h3,
.process-step h3 {
    margin: 18px 0 10px;
    line-height: 1.15;
}

.insight-card p,
.product-card p,
.benefit-card p,
.process-step p {
    color: var(--muted);
}

.product-decision {
    margin-top: 18px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.45;
}

.product-decision span {
    color: var(--amber);
    font-weight: 950;
}

.insight-card a,
.product-link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--amber);
    text-decoration: none;
    font-weight: 900;
}

.product-grid {
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    min-height: 460px;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;
}

.india-card::before {
    background: linear-gradient(135deg, var(--orange), transparent, var(--green));
}

.us-card::before {
    background: linear-gradient(135deg, var(--blue), transparent, var(--red));
}

.product-card > * {
    position: relative;
    z-index: 2;
}

.product-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 76px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-logo-wrap img {
    display: block;
    width: 100%;
    max-height: 62px;
    object-fit: contain;
}

.product-code {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.22);
    font-weight: 950;
    letter-spacing: 0.04em;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.product-meta span,
.mini-products span {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

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

.market-card {
    padding: 42px;
}

.india-market {
    background: radial-gradient(circle at top left, rgba(255, 138, 29, 0.2), transparent 45%), var(--card);
}

.us-market {
    background: radial-gradient(circle at top right, rgba(55, 104, 255, 0.22), transparent 45%), var(--card);
}

.mini-products {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.benefit-grid {
    grid-template-columns: repeat(5, 1fr);
}

.benefit-card {
    padding: 24px;
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
    counter-reset: process;
}

.process-step {
    padding: 26px;
}

.process-step span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: #050712;
    background: linear-gradient(135deg, var(--orange), var(--cyan));
    font-weight: 950;
}

.cta-section {
    padding: 80px 0 110px;
}

.cta-box {
    text-align: center;
    padding: 62px;
    background: radial-gradient(circle at top, rgba(255, 138, 29, 0.22), transparent 45%),
                linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
}

.cta-box .eyebrow {
    justify-content: center;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 54px 0 28px;
    background: rgba(0, 0, 0, 0.18);
}

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

.footer-grid p {
    max-width: 430px;
    color: var(--muted);
}

.footer-grid h4 {
    margin: 0 0 16px;
}

.footer-grid a:not(.brand) {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin: 8px 0;
}

.footer-grid a:not(.brand):focus-visible,
.footer-bottom a:focus-visible,
.legal-nav a:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
}

.footer-bottom a {
    color: var(--muted);
    text-decoration: none;
}

.footer-bottom a:hover,
.footer-grid a:not(.brand):hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 1080px) {
    .hero-grid,
    .market-grid,
    .executive-proof-grid {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .benefit-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .three-col {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    .container {
        width: 90%;
    }

    .brand-logo {
        width: min(170px, 52vw);
        max-height: 50px;
    }

    .footer-logo {
        width: min(190px, 60vw);
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 78px 14px auto 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        border-radius: 22px;
        border: 1px solid var(--line);
        background: rgba(5, 7, 18, 0.96);
        box-shadow: var(--shadow);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 12px 10px;
    }

    .mobile-menu-logo {
        display: block;
        padding: 0 10px 8px;
    }

    .mobile-menu-logo img {
        width: min(185px, 58vw);
        max-height: 54px;
        object-fit: contain;
    }

    .brand-product-name {
        max-width: 42vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero {
        min-height: auto;
        padding: 70px 0;
    }

    .hero-grid {
        gap: 42px;
    }

    .hero-visual {
        min-height: auto;
        padding: 14px;
    }

    .suite-board {
        position: relative;
        inset: auto;
    }

    .suite-board-top,
    .suite-board-score {
        grid-template-columns: 1fr;
    }

    .suite-board-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .suite-product-stack a {
        grid-template-columns: 92px 1fr;
    }

    .suite-product-stack img {
        width: 92px;
    }

    .product-grid,
    .benefit-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .market-card,
    .cta-box {
        padding: 30px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

.legal-page {
    background: linear-gradient(180deg, #050712, #0b1022);
}

.legal-header,
.legal-footer {
    width: 100%;
}

.legal-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.legal-nav a {
    color: var(--muted);
    font-weight: 800;
    text-decoration: none;
}

.legal-nav a:hover {
    color: var(--text);
}

.legal-main {
    width: min(980px, 90%);
    margin: 0 auto;
    padding: 76px 0 96px;
}

.legal-main h1 {
    margin: 16px 0 6px;
    color: var(--text);
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    letter-spacing: -0.04em;
    line-height: 1;
}

.legal-updated {
    margin: 0 0 36px;
    color: var(--muted);
    font-weight: 800;
}

.legal-main section {
    padding: 26px 0;
    border-top: 1px solid var(--line);
}

.legal-main h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 1.28rem;
}

.legal-main p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.78;
}

.legal-main a {
    color: var(--amber);
}

.policy-main {
    width: min(1060px, 90%);
}

.policy-intro {
    margin: 0 0 32px !important;
    max-width: 860px;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 1.08rem !important;
}

.legal-main ul {
    color: var(--muted);
}

.pricing-main,
.contact-main {
    padding: 72px 0 96px;
}

.account-main {
    padding: 72px 0 96px;
}

.pricing-hero,
.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 34px;
    align-items: center;
    margin-bottom: 44px;
}

.pricing-hero h1,
.contact-hero h1,
.subscription-section h2 {
    margin: 16px 0 18px;
    font-size: clamp(2.25rem, 5vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.pricing-hero p,
.contact-hero p,
.subscription-section .section-heading p {
    color: var(--muted);
    font-size: 1.08rem;
}

.pricing-note-card,
.contact-card,
.pricing-panel,
.rate-card,
.policy-form,
.form-alert {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(145deg, var(--card-strong), rgba(255, 255, 255, 0.035));
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.24);
}

.pricing-note-card {
    display: grid;
    gap: 10px;
    padding: 24px;
}

.pricing-note-card strong {
    color: var(--amber);
    font-size: 1.25rem;
}

.pricing-note-card span {
    color: var(--muted);
}

.pricing-tabs-section {
    display: grid;
    gap: 18px;
}

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

.pricing-tab {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--muted);
    cursor: pointer;
    font-weight: 950;
    letter-spacing: 0.04em;
}

.pricing-tab.is-active {
    color: #050712;
    background: linear-gradient(135deg, var(--orange), var(--amber));
}

.pricing-panel {
    display: none;
    padding: 24px;
}

.pricing-panel.is-active {
    display: grid;
    gap: 20px;
}

.pricing-panel-head {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.2);
}

.pricing-panel-head.india {
    box-shadow: inset 4px 0 0 var(--orange);
}

.pricing-panel-head.us {
    box-shadow: inset 4px 0 0 var(--blue);
}

.pricing-panel-head img {
    width: 170px;
    max-height: 64px;
    object-fit: contain;
}

.pricing-panel-head span {
    color: var(--amber);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-panel-head h2 {
    margin: 6px 0;
    color: var(--text);
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1;
}

.pricing-panel-head p {
    margin: 0;
    color: var(--muted);
}

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

.rate-card {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 20px;
}

.rate-card h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.15rem;
}

.rate-card strong {
    color: var(--amber);
    font-size: 1.22rem;
    line-height: 1.2;
}

.rate-card span {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.rate-card p,
.rate-card li {
    color: var(--muted);
    font-size: 0.92rem;
}

.rate-card ul {
    margin: 0;
    padding-left: 18px;
}

.subscription-section {
    margin-top: 54px;
}

.policy-form {
    padding: 24px;
}

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

.policy-form label {
    display: grid;
    gap: 7px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 900;
}

.policy-form input,
.policy-form select,
.policy-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px 12px;
    background: rgba(5, 7, 18, 0.76);
    color: var(--text);
    font: inherit;
}

.policy-form textarea {
    resize: vertical;
}

.policy-form .full {
    grid-column: 1 / -1;
}

.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.check-row {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    color: var(--muted) !important;
    font-weight: 700 !important;
}

.check-row input {
    width: 18px;
    min-height: 18px;
    margin-top: 4px;
}

.policy-form button {
    margin-top: 20px;
}

.form-alert {
    margin: 0 0 16px;
    padding: 15px 16px;
    color: var(--text);
}

.form-alert.success {
    border-color: rgba(36, 196, 107, 0.45);
    background: rgba(36, 196, 107, 0.16);
}

.form-alert.error {
    border-color: rgba(255, 78, 100, 0.45);
    background: rgba(255, 78, 100, 0.14);
}

.form-alert ul {
    margin: 8px 0 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-card {
    display: grid;
    gap: 8px;
    min-height: 116px;
    padding: 18px;
    color: var(--text);
    text-decoration: none;
}

.contact-card span {
    color: var(--amber);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-card strong {
    overflow-wrap: anywhere;
    line-height: 1.25;
}

.account-hero {
    margin-bottom: 30px;
}

.account-context-note {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
}

.account-form-section {
    margin-top: 24px;
}

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

.account-link-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.account-link-row a {
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}

.account-link-row a:not(.btn):hover {
    color: var(--amber);
}

.account-message-card {
    display: grid;
    gap: 18px;
}

@media (max-width: 560px) {
    .header-inner {
        gap: 12px;
    }

    .brand-logo {
        width: min(132px, 36vw);
    }

    .brand-product-name {
        max-width: 30vw;
        font-size: 0.58rem;
        letter-spacing: 0.04em;
    }

    .legal-nav {
        gap: 10px;
        font-size: 0.82rem;
    }
}
/* ---- Whitepaper image styling (FULL IMAGE, NO CROP) ---- */
.insight-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: box-shadow 0.3s ease;
}

.insight-image img {
    display: block;
    width: 100%;
    height: auto; /* 👈 This ensures the full image is visible */
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Subtle zoom on card hover */
.insight-card:hover .insight-image img {
    transform: scale(1.03);
}

/* Optional: slight glow on hover */
.insight-card:hover .insight-image {
    box-shadow: 0 12px 40px rgba(255, 138, 29, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Mobile nav viewport lock */
@media (max-width: 900px) {
    .site-header {
        z-index: 10000;
        overflow: visible;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(3, 7, 18, 0.98);
    }

    .menu-toggle {
        position: relative;
        z-index: 10030;
        display: block;
    }

    .main-nav {
        position: fixed !important;
        top: 86px !important;
        right: max(14px, 5vw) !important;
        bottom: auto !important;
        left: auto !important;
        width: min(340px, calc(100vw - 28px)) !important;
        max-height: calc(100dvh - 104px);
        overflow-y: auto;
        z-index: 10020 !important;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 20px;
        border-radius: 22px;
        border: 1px solid var(--line);
        background: rgba(5, 7, 18, 0.98);
        box-shadow: var(--shadow);
    }

    .main-nav.active {
        display: flex !important;
    }

    .main-nav a {
        padding: 12px 10px;
    }

    .mobile-menu-logo {
        display: block;
        padding: 0 10px 8px;
    }
}

/* Unified public chrome override */
.site-header .container,
.site-footer .container,
.legal-footer .container,
.footer-grid,
.footer-bottom {
    width: 95% !important;
    max-width: none !important;
}

.brand-product-name {
    display: grid !important;
    gap: 2px;
    white-space: normal !important;
}

.brand-product-name span {
    display: block;
}

.menu-toggle {
    display: flex !important;
}

.main-nav,
.legal-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(380px, 88vw) !important;
    height: 100dvh !important;
    max-height: none !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    padding: 24px !important;
    border-radius: 0 !important;
    border: 0 !important;
    border-left: 1px solid var(--line) !important;
    background: rgba(5, 7, 18, 0.99) !important;
    box-shadow: -28px 0 80px rgba(0, 0, 0, 0.42) !important;
    overflow-y: auto !important;
    z-index: 10020 !important;
}

.main-nav.active,
.legal-nav.active {
    display: flex !important;
}

.mobile-menu-logo {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 0 18px !important;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

main[data-section-switcher] > section:not([hidden]) {
    min-height: calc(100vh - 360px);
    display: grid;
    align-content: center;
}


/* Fix: keep only one visible close button in the slide-in menu.
   The header hamburger already turns into an X when active, while the drawer
   also has its own close button. Hide the header toggle while the drawer is open. */
body.nav-open .menu-toggle {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}


/* Footer product and legal link alignment fix */
.footer-products h4 {
    margin: 0 0 14px;
}

.footer-company-links a {
    font-size: 0.78rem;
    line-height: 1.4;
    margin: 5px 0 !important;
}

@media (min-width: 1081px) {
    .footer-company-links {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 16px;
        align-items: start;
    }
}

.footer-product-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    color: var(--muted);
    flex-wrap: nowrap;
}

.footer-product-line strong {
    min-width: 58px;
    color: var(--text);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.footer-product-line a,
.footer-legal-links a {
    display: inline-flex !important;
    width: auto !important;
    margin: 0 !important;
    color: var(--muted);
    text-decoration: none;
    font-weight: 800;
}

.footer-product-line a:hover,
.footer-legal-links a:hover {
    color: var(--text);
}

.footer-bottom {
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal-links {
    margin-left: auto;
    margin-right: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .pricing-hero,
    .contact-hero {
        grid-template-columns: 1fr;
    }

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

    .pricing-panel-head {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer-legal-links {
        margin-left: 0;
        margin-right: 0;
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .pricing-main,
    .contact-main {
        padding-top: 48px;
    }

    .pricing-tabs,
    .rate-card-grid,
    .form-grid,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .account-link-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .pricing-panel,
    .policy-form {
        padding: 16px;
    }

    .pricing-panel-head {
        padding: 16px;
    }

    .pricing-panel-head img {
        width: 150px;
    }

    .footer-product-line {
        flex-wrap: wrap;
    }
}

/* Short-page guard: keeps footer low when a page has little or no content. */
html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
}

body > main,
.legal-main,
.pricing-main,
.contact-main {
    flex: 1 0 auto;
}

.legal-main,
.contact-main {
    min-height: calc(100vh - 230px);
    min-height: calc(100dvh - 230px);
}

.contact-main {
    display: flex;
    flex-direction: column;
}

.contact-main .subscription-section {
    margin-top: auto;
    margin-bottom: auto;
}

/* 2026-07-12 conversion content upgrade */
.product-outcomes {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.product-outcomes li {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.45;
}

.product-outcomes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--cyan);
    font-weight: 950;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.product-actions .product-link {
    margin-top: 10px;
}

.product-link-muted {
    color: var(--muted) !important;
}

.report-intelligence {
    background:
        radial-gradient(circle at 10% 15%, rgba(55, 104, 255, 0.14), transparent 34%),
        radial-gradient(circle at 90% 70%, rgba(255, 138, 29, 0.13), transparent 34%);
}

.report-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.report-proof-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--card-strong), rgba(255, 255, 255, 0.035));
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.2);
}

.report-proof-card > span {
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--amber));
    color: #050712;
    font-weight: 950;
}

.report-proof-card h3 {
    margin: 18px 0 10px;
    font-size: 1.2rem;
}

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

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.cta-note {
    margin: 18px auto 0;
    max-width: 680px;
    font-size: 0.9rem !important;
}

@media (max-width: 1180px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 720px) {
    .product-grid,
    .report-proof-grid {
        grid-template-columns: 1fr;
    }

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

/* Root landing page layout correction — 2026-07-12 */
.root-landing main[data-section-switcher] > section:not([hidden]) {
    min-height: 0;
    display: block;
}

.root-landing main[data-section-switcher] > .hero:not([hidden]) {
    display: flex;
    min-height: 700px;
}

.root-landing :is(
    .hero-grid,
    .executive-proof-grid,
    .proof-lane,
    .product-grid,
    .report-proof-grid,
    .market-grid,
    .benefit-grid,
    .process-grid,
    .card-grid,
    .footer-grid
) > * {
    min-width: 0;
}

.root-landing :is(
    .suite-board,
    .suite-board-score > div,
    .suite-product-stack a,
    .proof-lane article,
    .product-card,
    .report-proof-card,
    .market-card,
    .benefit-card,
    .process-step,
    .insight-card
) {
    min-width: 0;
    max-width: 100%;
}

.root-landing :is(
    .hero-content h1,
    .hero-content p,
    .suite-board-top,
    .suite-board-score strong,
    .suite-product-stack span,
    .suite-board-strip,
    .executive-proof-copy h2,
    .executive-proof-copy p,
    .proof-lane strong,
    .proof-lane p,
    .section-heading h2,
    .section-heading p,
    .product-card h3,
    .product-card p,
    .product-decision,
    .product-outcomes li,
    .report-proof-card h3,
    .report-proof-card p,
    .market-card h2,
    .market-card p,
    .benefit-card h3,
    .benefit-card p,
    .process-step h3,
    .process-step p,
    .insight-card h3,
    .insight-card p,
    .insight-card a
) {
    overflow-wrap: anywhere;
    word-break: normal;
}

.root-landing .hero-content .nowrap {
    white-space: normal;
}

.root-landing .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
}

.root-landing .executive-proof-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(34px, 4vw, 58px);
}

.root-landing .proof-lane {
    gap: 16px;
}

.root-landing .proof-lane article {
    min-height: 0;
    padding: 24px;
}

.root-landing .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.root-landing .product-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: clamp(26px, 3vw, 36px);
}

.root-landing .product-card h3 {
    max-width: 28ch;
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.root-landing .product-card > p {
    max-width: 62ch;
}

.root-landing .product-meta {
    margin-top: 24px;
}

.root-landing .product-actions {
    margin-top: auto;
    padding-top: 12px;
}

.root-landing .report-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.root-landing .report-proof-card {
    height: 100%;
}

.root-landing .benefit-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.root-landing .benefit-card {
    grid-column: span 2;
    padding: 28px;
}

.root-landing .benefit-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.root-landing .benefit-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.root-landing .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.root-landing .process-step {
    min-height: 230px;
    padding: 30px;
}

.root-landing .whitepaper-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.root-landing .whitepaper-grid .insight-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.root-landing .whitepaper-grid .insight-card > a {
    margin-top: auto;
    padding-top: 18px;
}

.root-landing .whitepaper-section-action {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.root-landing .insight-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: auto;
    padding-top: 18px;
}

.root-landing .insight-actions a {
    margin-top: 0;
}

.root-landing .insight-actions a + a {
    color: var(--cyan);
}

.root-landing .whitepaper-grid .tag {
    align-self: flex-start;
    max-width: 100%;
    white-space: normal;
}

@media (max-width: 1240px) {
    .root-landing .executive-proof-grid {
        grid-template-columns: 1fr;
    }

    .root-landing .proof-lane {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1080px) {
    .root-landing .hero-grid {
        grid-template-columns: 1fr;
    }

    .root-landing main[data-section-switcher] > .hero:not([hidden]) {
        min-height: 0;
    }

    .root-landing .report-proof-grid,
    .root-landing .whitepaper-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .root-landing .whitepaper-grid .insight-card:last-child {
        grid-column: 1 / -1;
        width: min(100%, 620px);
        justify-self: center;
    }

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

    .root-landing .benefit-card,
    .root-landing .benefit-card:nth-child(4),
    .root-landing .benefit-card:nth-child(5) {
        grid-column: auto;
    }

    .root-landing .benefit-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .root-landing .product-grid,
    .root-landing .report-proof-grid,
    .root-landing .benefit-grid,
    .root-landing .process-grid,
    .root-landing .whitepaper-grid,
    .root-landing .proof-lane {
        grid-template-columns: 1fr;
    }

    .root-landing .whitepaper-grid .insight-card:last-child,
    .root-landing .benefit-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .root-landing .product-card,
    .root-landing .report-proof-card,
    .root-landing .benefit-card,
    .root-landing .process-step,
    .root-landing .insight-card {
        padding: 24px;
    }

    .root-landing .process-step {
        min-height: 0;
    }
}

@media (max-width: 480px) {
    .root-landing .hero-content h1 {
        font-size: clamp(2.55rem, 13vw, 3.4rem);
    }

    .root-landing .suite-product-stack a {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .root-landing .suite-product-stack img {
        width: 78px;
    }

    .root-landing .product-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }
}
