/* ============================================================
   roadmap.css
   Product Roadmap page styles.
   Global resets, .site-header, .site-footer.footer-expanded,
   .button, .label, .reveal, and shared breakpoint rules all
   live in the main site stylesheet (main.css).
   Only roadmap-specific components belong here.
   ============================================================ */

/* ── Page-level tokens ────────────────────────────────────── */
:root {
    --yellow: #FEBD17;
    --white: #FFFFFF;
    --grey: #646062;
    --black: #000000;
    --paper: #f7f7f4;
    --line: #d9d7d0;
    --soft: #efeeea;
    --ink: #0c0c0c;
    --muted: #5f5d5d;
    --condensed: 'Bebas Neue', Impact, sans-serif;
    --sans: 'Oswald', Arial, sans-serif;
    --ease: cubic-bezier(.19, 1, .22, 1);
}

/* ── Roadmap hero ─────────────────────────────────────────── */
.hero {
    display: grid;
    grid-template-columns: 64px minmax(390px, .8fr) minmax(520px, 1.25fr);
    min-height: 660px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, #fbfbf8, #f1f0ec);
}

.rail {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    border-right: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    background: #fbfbf8;
}

.rail i {
    width: 2px;
    height: 48px;
    background: var(--yellow);
    display: block;
}

.hero-copy {
    padding: 74px 20px 54px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--yellow);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
    margin-bottom: 20px;
}

.eyebrow:after {
    content: '';
    width: 92px;
    height: 2px;
    background: var(--yellow);
}

h1 {
    font-family: var(--condensed);
    font-size: clamp(72px, 7.2vw, 124px);
    line-height: .88;
    margin: 0 0 22px;
    text-transform: uppercase;
    letter-spacing: .015em;
}

h1 span {
    display: block;
}

h1 .online {
    color: var(--yellow);
}

.hero-copy p {
    font-size: 20px;
    line-height: 1.4;
    max-width: 520px;
    margin: 0 0 28px;
    color: #232323;
    font-weight: 300;
}

.actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

/* Roadmap-specific button variant (.btn, not .button) */
.btn {
    display: inline-grid;
    grid-template-columns: 52px auto;
    align-items: center;
    min-height: 54px;
    background: #080808;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    border: 0;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
}

.btn i {
    display: grid;
    place-items: center;
    min-height: 54px;
    border-right: 1px solid rgba(255, 255, 255, .18);
    color: var(--yellow);
    font-style: normal;
}

.btn span {
    padding: 0 22px;
}

.btn.yellow {
    background: var(--yellow);
    color: #000;
}

.btn.yellow i {
    color: #000;
    border-right: 1px solid rgba(0, 0, 0, .16);
}

.btn:hover {
    transform: translateY(-3px);
    transition: .28s var(--ease);
}

.channel-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.channel-chips span {
    border: 1px solid var(--line);
    background: #fff;
    padding: 10px 12px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .06em;
}

.hero-visual {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #ddd;
}

.hero-visual:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(247, 247, 244, .45), transparent 20%, rgba(0, 0, 0, .12));
    pointer-events: none;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-card {
    position: absolute;
    right: 36px;
    bottom: 36px;
    z-index: 2;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .7);
    padding: 22px 24px;
    width: min(360px, 72%);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

.hero-card b {
    font-family: var(--condensed);
    font-size: 46px;
    line-height: .9;
    display: block;
    text-transform: uppercase;
}

.hero-card p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.38;
    color: #333;
}

/* ── Page sections ────────────────────────────────────────── */
.section {
    padding: 70px clamp(28px, 5vw, 76px);
    border-bottom: 1px solid var(--line);
}

.section-head {
    display: grid;
    grid-template-columns: minmax(260px, .6fr) 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 34px;
}

.label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--yellow);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

.label:before {
    content: '';
    width: 34px;
    height: 2px;
    background: var(--yellow);
}

h2 {
    font-family: var(--condensed);
    font-size: clamp(48px, 4.7vw, 82px);
    line-height: .9;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.section-head p {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    color: #333;
    font-weight: 300;
    max-width: 720px;
}

/* ── Feature section ──────────────────────────────────────── */
.feature-row {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
}

.feature-image {
    min-height: 430px;
    overflow: hidden;
    background: #111;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-panel {
    background: var(--grey);
    color: #fff;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-panel h3 {
    font-family: var(--condensed);
    font-size: 62px;
    line-height: .9;
    text-transform: uppercase;
    margin: 0 0 18px;
    color: #fff;
}

.feature-panel p {
    color: #f3f1e8;
    font-weight: 300;
    line-height: 1.45;
    font-size: 17px;
}

.proof-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.proof-mini div {
    border-top: 1px solid rgba(255, 255, 255, .32);
    padding-top: 14px;
}

.proof-mini b {
    color: var(--yellow);
    font-family: var(--condensed);
    font-size: 42px;
    display: block;
    line-height: .9;
}

.proof-mini span {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
}

/* ── Roadmap subnav / filter bar ──────────────────────────── */
.filters {
    position: sticky;
    top: 78px;
    z-index: 30;
    background: rgba(247, 247, 244, .96);
    backdrop-filter: blur(16px);
    display: flex;
    gap: 10px;
    overflow: auto;
    padding: 16px clamp(28px, 5vw, 76px);
    border-bottom: 1px solid var(--line);
}

.filter-btn {
    white-space: nowrap;
    border: 1px solid var(--line);
    background: #fff;
    padding: 12px 16px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: #080808;
    color: #fff;
    border-color: #080808;
}

.filter-btn.active {
    box-shadow: inset 0 -3px 0 var(--yellow);
}

.roadmap-subnav.filters {
    position: sticky !important;
    top: var(--header-h, 78px) !important;
    z-index: 900 !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 18px !important;
    padding: 14px clamp(24px, 5vw, 76px) !important;
    background: rgba(247, 247, 244, .96) !important;
    backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid var(--line) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .055) !important;
}

.roadmap-subnav__label {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    white-space: nowrap !important;
    text-transform: uppercase !important;
    font-family: 'Oswald', Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .09em !important;
    color: #111 !important;
}

.roadmap-subnav__label:before {
    content: "" !important;
    width: 34px !important;
    height: 3px !important;
    display: inline-block !important;
    background: var(--yellow) !important;
}

.roadmap-subnav__scroll {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    overflow-x: auto !important;
    scrollbar-width: thin !important;
    padding: 2px 0 !important;
}

.roadmap-subnav .filter-btn {
    white-space: nowrap !important;
    border: 1px solid var(--line) !important;
    background: #fff !important;
    color: #111 !important;
    padding: 11px 15px !important;
    text-transform: uppercase !important;
    font-family: 'Oswald', Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .06em !important;
    cursor: pointer !important;
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease) !important;
}

.roadmap-subnav .filter-btn:hover {
    transform: translateY(-2px) !important;
    border-color: #111 !important;
}

.roadmap-subnav .filter-btn.active {
    background: #080808 !important;
    color: #fff !important;
    border-color: #080808 !important;
    box-shadow: inset 0 -3px 0 var(--yellow) !important;
}

/* ── Product grid ─────────────────────────────────────────── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch !important;
}

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    min-height: 540px !important;
    transition: .28s var(--ease);
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .12);
    border-color: #bfbcb4;
}

.card-img {
    height: 330px !important;
    min-height: 330px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 28px 24px 22px !important;
    background: linear-gradient(180deg, #fbfbfb 0%, #efeee9 100%) !important;
}

.card-img img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 0 !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    mix-blend-mode: normal !important;
    filter: none !important;
}

.card-body {
    padding: 14px 18px 20px !important;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.meta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 6px 10px !important;
    margin-bottom: 12px !important;
    flex-wrap: wrap;
}

.meta .category-tag {
    grid-column: 1 / -1;
    color: var(--grey);
    flex: 1 1 100%;
}

.meta span {
    font-size: 10px;
    color: var(--grey);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .08em;
}

.quarter-tag {
    background: #f2f1ec;
    border: 1px solid var(--line);
    color: #111 !important;
    padding: 5px 7px;
    font-size: 9px !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .08em;
    width: max-content;
}

.status {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
    /*border: 1px solid #111;*/
    padding: 5px 7px;
    white-space: nowrap;
    width: max-content;
    justify-self: end;
    border-radius: 0;
}

.status.retail-ready,
.status.available-now {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #000;
}

.status.in-development {
    background: #000;
    color: #fff;
    border-color: #000;
}

.status.prototype {
    background: #fff;
    color: #000;
}

.status.concept {
    background: #e5e5e5;
    color: #111;
    border-color: #d5d5d5;
}

/* "Available Now" / "Coming Soon" badge */
.product-card[data-status="Available Now"]:before {
    content: "AVAILABLE NOW";
    position: absolute;
    z-index: 3;
    top: 10px !important;
    left: 10px !important;
    background: var(--yellow);
    color: #000;
    padding: 6px 8px !important;
    font-size: 8.5px !important;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-card[data-status!="Available Now"]
:before {
    content: "COMING SOON";
    position: absolute;
    z-index: 3;
    top: 10px !important;
    left: 10px !important;
    background: #000;
    color: #fff;
    padding: 6px 8px !important;
    font-size: 8.5px !important;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-card h3 {
    font-size: 19px !important;
    line-height: 1.06 !important;
    min-height: 40px !important;
    margin: 0 0 10px !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .02em;
}

.product-card p {
    font-size: 13.5px !important;
    line-height: 1.38 !important;
    color: #3d3d3d;
    margin: 0 0 16px !important;
    font-weight: 300;
}

.mini-link {
    margin-top: auto;
    border: 0;
    background: transparent;
    padding: 0;
    text-align: left;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    cursor: pointer;
}

.mini-link span {
    color: var(--yellow);
    font-size: 16px;
}

/* ── Channel matrix ───────────────────────────────────────── */
.matrix {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) 1.5fr;
    gap: 0;
    border: 1px solid var(--line);
    background: #fff;
}

.matrix-copy {
    padding: 42px;
    background: #f2f1ec;
    border-right: 1px solid var(--line);
}

.matrix-copy h2 {
    font-size: 66px;
}

.channel-list {
    display: grid;
    gap: 0;
}

.channel-item {
    display: grid;
    grid-template-columns: 170px 1fr 170px;
    gap: 22px;
    padding: 24px 28px;
    border-bottom: 1px solid var(--line);
    align-items: center;
}

.channel-item:last-child {
    border-bottom: 0;
}

.channel-item b {
    text-transform: uppercase;
    font-size: 17px;
    line-height: 1.1;
}

.channel-item p {
    margin: 0;
    color: #3e3e3e;
    line-height: 1.45;
    font-weight: 300;
}

.channel-item span {
    justify-self: end;
    background: var(--yellow);
    padding: 8px 10px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
}

.retail-online {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* ── Story cards ──────────────────────────────────────────── */
.story-card {
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
}

.story-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.story-card div {
    padding: 28px;
}

.story-card h3 {
    font-family: var(--condensed);
    font-size: 52px;
    line-height: .9;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.story-card p {
    line-height: 1.45;
    color: #333;
    font-weight: 300;
    margin: 0;
}

/* ── CTA band ─────────────────────────────────────────────── */
.cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: #080808;
    color: #fff;
    padding: 0;
    border-bottom: 0;
}

.cta-copy {
    padding: 64px clamp(28px, 5vw, 76px);
}

.cta h2 {
    color: #fff;
}

.cta h2 span {
    color: var(--yellow);
}

.cta p {
    max-width: 520px;
    color: #e9e6dc;
    line-height: 1.5;
    font-weight: 300;
    font-size: 18px;
}

.cta-img {
    height: 390px;
    overflow: hidden;
}

.cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .9;
}

/*!* ── Simple roadmap footer (used before footer-expanded) ──── *!*/
/*.footer {*/
/*  display: grid;*/
/*  grid-template-columns: 260px 1fr auto;*/
/*  gap: 32px;*/
/*  align-items: center;*/
/*  background: #f7f7f4;*/
/*  border-top: 1px solid var(--line);*/
/*  padding: 24px clamp(28px, 5vw, 76px);*/
/*  font-size: 12px;*/
/*  text-transform: uppercase;*/
/*  color: #555;*/
/*}*/

/*.footer img { height: 45px; width: auto; }*/

/*.footer nav {*/
/*  display: flex;*/
/*  gap: 28px;*/
/*  justify-content: center;*/
/*  font-weight: 700;*/
/*  color: #222;*/
/*}*/

/* ── Product drawer ───────────────────────────────────────── */
.product-drawer {
    position: fixed;
    inset: 0;
    z-index: 2000 !important;
    pointer-events: none;
}

.product-drawer:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2000 !important;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    transition: .3s var(--ease);
}

.product-drawer.open {
    pointer-events: auto;
}

.product-drawer.open:before {
    opacity: 1;
}

.drawer-panel {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2001 !important;
    height: 100vh !important;
    max-height: 100vh !important;
    width: min(640px, 94vw) !important;
    background: #fbfbf8;
    transform: translateX(104%);
    transition: .38s var(--ease);
    padding: 34px;
    overflow: auto;
}

.product-drawer.open .drawer-panel {
    transform: translateX(0);
}

body:has(.drawer.open) {
    overflow: hidden;
}

.close {
    float: right;
    border: 0;
    background: #000;
    color: #fff;
    width: 44px;
    height: 44px;
    font-size: 26px;
    cursor: pointer;
}

.drawer-panel img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: #e9e8e3;
    margin: 26px 0;
}

.drawer-panel h2 {
    font-size: 64px;
}

.drawer-panel p {
    line-height: 1.55;
    font-weight: 300;
    color: #333;
}

.drawer-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.drawer-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.drawer-list li strong {
    color: #111;
}

/* ── Product gallery (in drawer) ──────────────────────────── */
.product-gallery {
    margin: 22px 0 24px;
}

.product-gallery__stage {
    position: relative;
    display: grid;
    place-items: center;
    background: #e9e8e3;
    border: 1px solid var(--line);
    min-height: 360px;
    overflow: hidden;
}

.drawer-panel .product-gallery__main-image {
    width: 100% !important;
    height: 360px !important;
    object-fit: contain !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 22px !important;
}

.product-gallery__counter {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #070707;
    color: #fff;
    padding: 7px 10px;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-gallery__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px !important;
    height: 56px !important;
    border: 0 !important;
    background: rgba(255, 255, 255, .58) !important;
    color: #111 !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .10) !important;
    backdrop-filter: blur(10px) !important;
    font-size: 28px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    opacity: .72 !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.product-gallery__control.prev {
    left: 10px !important;
}

.product-gallery__control.next {
    right: 10px !important;
}

.product-gallery__control:hover,
.product-gallery__control:focus-visible {
    background: rgba(255, 255, 255, .9) !important;
    color: #000 !important;
    opacity: 1 !important;
    transform: translateY(-50%) scale(1.04) !important;
    outline: 2px solid rgba(254, 189, 23, .75) !important;
    outline-offset: 2px !important;
}

.product-gallery__control:active {
    transform: translateY(-50%) scale(.98) !important;
}

.product-gallery__stage:hover .product-gallery__control {
    opacity: .92 !important;
}

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.product-gallery__thumb {
    border: 1px solid var(--line);
    background: #fff;
    min-height: 86px;
    padding: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}

.product-gallery__thumb:hover {
    transform: translateY(-2px);
    border-color: #111;
}

.product-gallery__thumb.is-active {
    border-color: #070707;
    box-shadow: inset 0 -4px 0 #FEBD17;
}

.drawer-panel .product-gallery__thumb img {
    width: 100% !important;
    height: 86px !important;
    object-fit: contain !important;
    background: #f3f2ed !important;
    margin: 0 !important;
    padding: 8px !important;
}

.product-gallery__caption {
    margin-top: 10px;
    color: #646062;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 12px;
    line-height: 1.4;
}

/* ── Roadmap-specific content rules ───────────────────────── */
.roadmap-disclaimer {
    margin: -10px 0 32px;
    padding: 18px 22px;
    background: #fff;
    border-left: 5px solid var(--yellow);
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: #333;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 300;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero {
        grid-template-columns: 48px 1fr 1fr;
    }

    .product-card {
        min-height: 520px !important;
    }

    .card-img {
        height: 320px !important;
        min-height: 320px !important;
        padding: 26px 22px 20px !important;
    }
}

@media (max-width: 1180px) {
    .roadmap-subnav.filters {
        top: 68px !important;
    }
}

@media (max-width: 900px) {
    .hero {
        display: flex;
        flex-direction: column;
    }

    .rail {
        display: none;
    }

    .hero-copy {
        padding: 38px 24px;
    }

    .hero-visual {
        height: 420px;
    }

    .section-head,
    .feature-row,
    .matrix,
    .retail-online,
    .cta,
    .footer {
        grid-template-columns: 1fr;
        display: grid;
    }

    .feature-panel,
    .matrix-copy {
        border: 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filters {
        top: 68px;
    }

    .channel-item {
        grid-template-columns: 1fr;
    }

    .channel-item span {
        justify-self: start;
    }

    /*.footer nav { justify-content: flex-start; flex-wrap: wrap; }*/
    .product-card {
        min-height: 510px !important;
    }

    .card-img {
        height: 315px !important;
        min-height: 315px !important;
        padding: 26px 22px 20px !important;
    }
}

@media (max-width: 760px) {
    .roadmap-subnav.filters {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 12px 22px !important;
    }

    .roadmap-subnav__label {
        font-size: 10px !important;
    }

    .roadmap-subnav__scroll {
        margin: 0 -22px !important;
        padding: 0 22px 4px !important;
    }
}

@media (max-width: 700px) {
    .product-gallery__stage {
        min-height: 280px;
    }

    .drawer-panel .product-gallery__main-image {
        height: 280px !important;
        padding: 16px !important;
    }

    .product-gallery__thumbs {
        grid-template-columns: repeat(4, 140px);
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .product-gallery__control {
        width: 32px !important;
        height: 48px !important;
        font-size: 24px !important;
    }

    .product-gallery__control.prev {
        left: 8px !important;
    }

    .product-gallery__control.next {
        right: 8px !important;
    }

    .drawer-panel {
        width: 100vw !important;
        padding-top: 26px !important;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: 72px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 330px;
    }

    .hero-card {
        left: 22px;
        right: 22px;
        width: auto;
    }

    .section {
        padding: 48px 22px;
    }

    .filters {
        padding: 14px 22px;
    }

    .proof-mini {
        grid-template-columns: 1fr;
    }

    .roadmap-disclaimer {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .product-card {
        min-height: auto !important;
    }

    .card-img {
        height: 330px !important;
        min-height: 330px !important;
        padding: 30px 24px 22px !important;
    }

    .card-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    .product-card h3 {
        min-height: auto !important;
    }
}

.product-card:hover {
    cursor: pointer;
}

.status.launch-tag {
    background-color: var(--yellow);
    color:black !important;
}

.top-cta {
    border-right:1px solid rgba(0, 0, 0, .16) !important;
}