/* ============================================================
   PRODUCT PAGE — built to match the about.html premium system
   ============================================================ */
.nav-links a[aria-current="page"],
.mobile-menu a[aria-current="page"] {
    color: var(--text-dark);
}

/* --- Page shell (mirrors about.html) --- */
.product-page {
    background: #fff;
    min-height: 100vh;
    position: relative;
}

.product-page::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(15, 23, 42, 0.08) 0.8px, transparent 0.8px);
    background-size: 24px 24px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 28%);
    opacity: 0.45;
    z-index: 0;
}

.prod-shell {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-section {
    padding: 4rem 2.5rem;
}

/* --- Titles (slanted elegant, exactly like about) --- */
.section-title,
.prod-hero h1,
.prod-closing h2 {
    font-size: clamp(1.85rem, 3vw, 2.18rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.045em;
    color: #111;
    margin-bottom: 1rem;
}

.section-title .about-title-primary,
.section-title .accent-text,
.prod-hero h1 .about-title-primary,
.prod-hero h1 .accent-text,
.prod-closing h2 .about-title-primary,
.prod-closing h2 .accent-text {
    display: inline-block;
    white-space: nowrap;
}

.about-title-primary {
    color: #111;
}

.accent-text {
    color: #7a7a7a;
    font-weight: 400;
    font-style: italic;
}

.section-copy {
    font-size: 0.98rem;
    line-height: 1.72;
    color: #4b5563;
    max-width: 62ch;
    margin-bottom: 1.1rem;
}

.section-copy-muted {
    font-size: 0.9rem;
    line-height: 1.68;
    color: #7b8391;
    max-width: 58ch;
}

/* --- Left/Right intro pattern (from about) --- */
.prod-section-head {
    width: auto;
    max-width: 100%;
}

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

.prod-section-intro {
    display: block;
    margin-bottom: 1.4rem;
}

.prod-section-copy-col {
    max-width: 62ch;
}

.prod-section-intro .prod-section-copy-col {
    margin-top: 0.85rem;
}

.prod-section-intro.right .prod-section-copy-col {
    margin-left: auto;
    text-align: right;
}

.prod-section-intro.right .section-copy,
.prod-section-intro.right .section-copy-muted {
    margin-left: auto;
    text-align: right;
}

.section-overline {
    display: inline-block;
    margin-bottom: 0.9rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
}

.prod-section-intro.right .section-overline {
    display: block;
}

/* --- Offwhite premium cards (mirrors about) --- */
.offwhite-card {
    background: #fbfbf9;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.offwhite-card:hover {
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
    border-color: rgba(37, 99, 235, 0.18);
}

.offwhite-card.with-lines {
    background-image:
        repeating-linear-gradient(180deg,
            rgba(15, 23, 42, 0.04) 0,
            rgba(15, 23, 42, 0.04) 1px,
            transparent 1px,
            transparent 26px);
}

.offwhite-card.with-lines::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(37, 99, 235, 0.15) 0.8px, transparent 0.8px);
    background-size: 18px 18px;
    mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.22), transparent 32%);
    opacity: 0.14;
}

/* Corner frames in brand blue (from about partner/member card) */
.card-frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}
.card-frame::before,
.card-frame::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: rgba(37, 99, 235, 0.4);
    border-style: solid;
}
.card-frame::before {
    top: 14px;
    left: 14px;
    border-width: 1px 0 0 1px;
}
.card-frame::after {
    right: 14px;
    bottom: 14px;
    border-width: 0 1px 1px 0;
}

/* --- Animated icon tiles (from about) --- */
.prod-card-top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.7rem;
    position: relative;
    z-index: 1;
}

.prod-card-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(37, 99, 235, 0.12);
    flex-shrink: 0;
}

.prod-card-icon svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke: var(--blue);
    animation: prod-icon-float 6s ease-in-out infinite;
}

@keyframes prod-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes prod-icon-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.12); }
}

@keyframes prod-icon-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.prod-card-title {
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

.prod-card-body {
    font-size: 0.92rem;
    line-height: 1.62;
    color: #5b6472;
    position: relative;
    z-index: 1;
}

/* --- HERO --- */
.prod-hero {
    padding: 7.5rem 2.5rem 4rem;
    text-align: center;
    position: relative;
}

.prod-hero::after {
    content: '';
    position: absolute;
    right: 7%;
    top: 6.5rem;
    width: 12rem;
    height: 12rem;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 28px;
    transform: rotate(8deg);
    opacity: 0.8;
}

.prod-hero::before {
    content: '';
    position: absolute;
    left: 6%;
    top: 11rem;
    width: 7rem;
    height: 7rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    opacity: 0.6;
}

.prod-hero-copy {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.prod-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
    margin-top: 1.75rem;
}

.prod-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #3b4252;
    background: #fbfbf9;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 0.45rem 0.85rem;
    border-radius: 100px;
}

.prod-chip::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
}

.prod-hero-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.7rem 1.4rem;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.btn-line.primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.18);
}

.btn-line.primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.28);
}

.btn-line.ghost {
    background: #fff;
    color: #111;
    border: 1px solid rgba(15, 23, 42, 0.1);
}

.btn-line.ghost:hover {
    border-color: rgba(37, 99, 235, 0.35);
    color: var(--blue);
    transform: translateY(-1px);
}

/* --- Section 2: What it is — capability tiles --- */
.prod-tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.15rem;
}

.prod-tile {
    padding: 1.25rem 1.35rem;
}

.prod-tile .prod-card-title {
    font-size: 0.96rem;
}

.prod-tile p {
    font-size: 0.84rem;
    color: #5b6472;
    line-height: 1.55;
    margin-top: 0.2rem;
    position: relative;
    z-index: 1;
}

/* --- Section 3: Architecture (layered bands) --- */
.arch-stack {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1rem;
}

.arch-layer {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.4rem 1.5rem;
}

.arch-layer-head {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    padding-right: 1.3rem;
    position: relative;
    z-index: 1;
}

.arch-layer-index {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--blue);
}

.arch-layer-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.arch-layer-icon {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.12);
    margin-bottom: 0.15rem;
}

.arch-layer-icon svg {
    width: 1.05rem;
    height: 1.05rem;
    stroke: var(--blue);
    animation: prod-icon-float 6s ease-in-out infinite;
}

.arch-layer-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    position: relative;
    z-index: 1;
}

.arch-item {
    font-size: 0.78rem;
    font-weight: 500;
    color: #334155;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 0.38rem 0.75rem;
    border-radius: 100px;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.arch-layer:hover .arch-item {
    border-color: rgba(37, 99, 235, 0.2);
}

/* --- Section 4: Deployment cards --- */
.deploy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.1rem;
}

.deploy-card {
    padding: 1.5rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.deploy-nodes {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.1rem;
    height: 22px;
}

.deploy-node {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: rgba(37, 99, 235, 0.16);
    border: 1px solid rgba(37, 99, 235, 0.35);
}

.deploy-node.on {
    background: var(--blue);
    border-color: var(--blue);
}

.deploy-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
    margin-bottom: 0.55rem;
}

.deploy-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 0.9rem;
    position: relative;
    z-index: 1;
}

.deploy-best {
    margin-top: auto;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b7280;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(15, 23, 42, 0.1);
}

.deploy-note {
    margin-top: 1.1rem;
    font-size: 0.85rem;
    color: #7b8391;
    line-height: 1.6;
    font-style: italic;
}

/* --- Section 5: Core capabilities grid --- */
.cap-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
    margin-bottom: 1.1rem;
}

.cap-toolbar-label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b7280;
}

.cap-toggle {
    display: inline-flex;
    padding: 4px;
    background: #f1f4f8;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 100px;
}

.cap-toggle button {
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.38rem 0.9rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cap-toggle button.is-active {
    background: #fff;
    color: var(--blue);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}

.cap-card {
    padding: 1.25rem 1.35rem 1.3rem;
    cursor: pointer;
    user-select: none;
}

.cap-card .prod-card-top {
    justify-content: space-between;
}

.cap-card-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cap-toggle-mark {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1;
    transition: all 0.25s ease;
}

.cap-card:hover .cap-toggle-mark {
    border-color: rgba(37, 99, 235, 0.3);
    color: var(--blue);
}

.cap-card[aria-expanded="true"] .cap-toggle-mark {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    transform: rotate(45deg);
}

.cap-card p {
    font-size: 0.88rem;
    color: #5b6472;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin: 0;
}

.cap-detail {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cap-card[aria-expanded="true"] .cap-detail {
    grid-template-rows: 1fr;
}

.cap-detail-inner {
    overflow: hidden;
    min-height: 0;
}

.cap-detail-inner p {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(15, 23, 42, 0.1);
    font-size: 0.84rem;
    color: #4b5563;
    font-style: italic;
}

/* --- Section 6: Scale panels --- */
.scale-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.1rem;
}

.scale-panel {
    padding: 1.6rem 1.7rem;
}

.scale-panel-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.7rem;
}

.scale-panel h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
    margin-bottom: 0.9rem;
}

.scale-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    position: relative;
    z-index: 1;
}

.scale-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.45;
}

.scale-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

/* --- Section 7: Day-to-day (FAQ-style alternating cards) --- */
.day-stream {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 1.25rem;
}

.day-card {
    display: grid;
    grid-template-columns: 1fr 170px;
    gap: 1.8rem;
    align-items: center;
    padding: 1.5rem 1.7rem;
    max-width: 720px;
}

.day-card.side-left {
    margin-right: auto;
}

.day-card.side-right {
    margin-left: auto;
    grid-template-columns: 170px 1fr;
}

.day-card-copy h4 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.day-card-copy p {
    font-size: 0.9rem;
    line-height: 1.62;
    color: #4b5563;
    margin: 0;
    position: relative;
    z-index: 1;
}

.day-card.side-right .day-card-copy {
    grid-column: 2;
}

.day-card.side-right .day-card-visual {
    grid-column: 1;
    grid-row: 1;
}

.day-card-visual {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0.01));
    border: 1px solid rgba(37, 99, 235, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.day-card-visual svg {
    width: 58%;
    height: 58%;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.day-card-visual svg .flt {
    animation: prod-icon-float 5s ease-in-out infinite;
    transform-origin: center;
}
.day-card-visual svg .spn {
    animation: prod-icon-spin 22s linear infinite;
    transform-origin: center;
}
.day-card-visual svg .pls {
    animation: prod-icon-pulse 4s ease-in-out infinite;
    transform-origin: center;
}

/* --- Section 8: Industry tabs --- */
.ind-tabs {
    display: flex;
    gap: 0.35rem;
    padding: 5px;
    background: #f1f4f8;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 100px;
    margin-top: 1.25rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    width: fit-content;
}

.ind-tab {
    border: none;
    background: transparent;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.45rem 0.95rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.ind-tab:hover { color: #111; }

.ind-tab.is-active {
    background: #fff;
    color: var(--blue);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
}

.ind-tab svg {
    width: 14px; height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ind-panel {
    display: none;
    padding: 1.8rem 2rem;
}

.ind-panel.is-active {
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
    animation: ind-fade 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes ind-fade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.ind-panel-head h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.ind-panel-head p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.55;
}

.ind-panel-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.ind-panel-list li {
    display: flex;
    gap: 0.6rem;
    padding: 0.7rem 0.85rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 12px;
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.45;
}

.ind-panel-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    margin-top: 0.55rem;
}

/* --- Section 9: Adoption band --- */
.adopt-band {
    padding: 1.5rem 1.6rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.15rem;
}

.adopt-band p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
    position: relative;
    z-index: 1;
}

.adopt-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    position: relative;
    z-index: 1;
}

.adopt-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #334155;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 0.45rem 0.85rem;
    border-radius: 100px;
}

.adopt-item svg {
    width: 12px; height: 12px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
}

/* --- Section 10: Security bridge --- */
.sec-bridge {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.7rem;
    margin-top: 1.15rem;
}

.sec-bridge p {
    font-size: 0.92rem;
    line-height: 1.62;
    color: #4b5563;
    margin: 0;
    max-width: 58ch;
    position: relative;
    z-index: 1;
}

.sec-bridge a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: transform 0.25s ease;
}

.sec-bridge a svg {
    width: 14px; height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}

.sec-bridge a:hover svg { transform: translateX(3px); }

/* --- Section 11: Final CTA --- */
.prod-closing {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.prod-closing .btn-line {
    margin: 0 0.25rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .prod-hero::after,
    .prod-hero::before { display: none; }

    .prod-tiles-grid,
    .deploy-grid,
    .cap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .arch-layer {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .arch-layer-head {
        border-right: 0;
        border-bottom: 1px dashed rgba(15, 23, 42, 0.1);
        padding-right: 0;
        padding-bottom: 0.9rem;
    }

    .scale-split { grid-template-columns: 1fr; }

    .day-card,
    .day-card.side-right {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        max-width: 100%;
    }

    .day-card-copy,
    .day-card.side-right .day-card-copy,
    .day-card.side-right .day-card-visual {
        grid-column: auto;
        grid-row: auto;
    }

    .day-card-visual,
    .day-card.side-right .day-card-visual {
        order: 2;
        width: min(100%, 190px);
        max-width: 190px;
        align-self: center;
    }

    .day-card-copy,
    .day-card.side-right .day-card-copy { order: 1; }

    .ind-panel.is-active { grid-template-columns: 1fr; gap: 1.2rem; }

    .adopt-band,
    .sec-bridge {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .prod-hero,
    .page-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .prod-hero {
        min-height: auto;
        display: block;
        padding-top: 5.25rem;
        padding-bottom: 2.75rem;
    }

    .prod-hero .prod-shell {
        width: 100%;
    }

    .prod-section-head,
    .prod-section-copy-col {
        width: 100%;
        max-width: 100%;
    }

    .prod-section-head.right { margin-left: auto; text-align: right; }
    .prod-section-intro.right .prod-section-copy-col { margin-left: auto; text-align: right; }

    .prod-tiles-grid,
    .deploy-grid,
    .cap-grid,
    .ind-panel-list {
        grid-template-columns: 1fr;
    }

    .ind-tabs {
        width: 100%;
        border-radius: 2rem;
        padding: 0.4rem;
        gap: 0.3rem;
        justify-content: center;
    }

    .ind-tab {
        border-radius: 1.15rem;
        justify-content: center;
    }

    .cap-toolbar { justify-content: flex-start; }
}
