:root {
    --ink: #f7fbff;
    --ink-2: #d7e0e8;
    --muted: #8c9aa7;
    --paper: #07090d;
    --paper-2: #0c1117;
    --white: #ffffff;
    --panel: #101720;
    --lime: #d9ff3f;
    --teal: #00e5c3;
    --blue: #6aa8ff;
    --coral: #ff8a5c;
    --line: rgba(247, 251, 255, 0.12);
    --line-strong: rgba(247, 251, 255, 0.22);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    --radius: 8px;
    --font-display: "Archivo", sans-serif;
    --font-body: "Inter", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background:
        linear-gradient(rgba(247, 251, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(247, 251, 255, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 78% 10%, rgba(0, 229, 195, 0.14), transparent 24%),
        radial-gradient(circle at 15% 18%, rgba(217, 255, 63, 0.1), transparent 22%),
        var(--paper);
    background-size: 36px 36px, 36px 36px, auto, auto, auto;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: var(--lime);
    color: #07100c;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 74px;
    padding: 14px max(24px, calc((100vw - 1180px) / 2));
    background: rgba(7, 9, 13, 0.82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-weight: 800;
}

.brand-glyph {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--lime);
    background: transparent;
    border: 1.5px solid rgba(217, 255, 63, 0.86);
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(217, 255, 63, 0.08);
    font-size: 0.74rem;
    letter-spacing: -0.05em;
    line-height: 1;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    color: var(--ink);
    font-size: 1.02rem;
    letter-spacing: -0.03em;
    line-height: 1;
}

.brand-copy small {
    display: block;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    padding: 10px 12px;
    color: var(--muted);
    border-radius: var(--radius);
    font-size: 0.94rem;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
body[data-page="work"] .nav-links a[href$="/work/"],
body[data-page="vibe-coding"] .nav-links a[href$="/vibe-coding/"],
body[data-page="shopify-apps"] .nav-links a[href$="/shopify-apps/"],
body[data-page="systems"] .nav-links a[href$="/systems/"],
body[data-page="lab"] .nav-links a[href$="/lab/"],
body[data-page="notes"] .nav-links a[href$="/notes/"],
body[data-page="contact"] .nav-links a[href$="/contact/"] {
    color: var(--ink);
    background: rgba(247, 251, 255, 0.08);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(247, 251, 255, 0.06);
    color: var(--ink);
    cursor: pointer;
    flex: 0 0 auto;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle {
    flex-direction: column;
    gap: 5px;
}

.nav-toggle[aria-expanded="true"]::before {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"]::after {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    color: var(--white);
    background: rgba(247, 251, 255, 0.1);
}

.nav-toggle:focus-visible {
    outline: 2px solid rgba(217, 255, 63, 0.72);
    outline-offset: 3px;
}

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 9, 13, 0.96) 0%, rgba(7, 9, 13, 0.76) 42%, rgba(7, 9, 13, 0.16) 100%),
        linear-gradient(0deg, rgba(7, 9, 13, 1) 0%, rgba(7, 9, 13, 0) 34%);
    z-index: -1;
}

.hero-content {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 92px 0 108px;
}

.eyebrow,
.page-kicker,
.strip-label,
.brief-meta,
.case-tags,
.case-outcomes,
.feature-list span,
.system-block span,
.tool-item,
.lab-card span,
.note-row span,
.fit-item span {
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.eyebrow,
.page-kicker {
    color: var(--teal);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    letter-spacing: 0;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: 6.4rem;
    line-height: 0.94;
}

.hero-copy {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--ink-2);
    font-size: 1.2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.memberport-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
    padding: 14px max(24px, calc((100vw - 1180px) / 2));
    background: rgba(4, 8, 12, 0.88);
    border-bottom: 1px solid rgba(217, 255, 63, 0.16);
    backdrop-filter: blur(16px);
}

.memberport-nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.memberport-product-mark {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1.5px solid rgba(217, 255, 63, 0.9);
    border-radius: 999px;
    color: var(--lime);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 900;
    box-shadow: 0 0 26px rgba(217, 255, 63, 0.13);
}

.memberport-brand-copy {
    display: grid;
    gap: 2px;
}

.memberport-brand-copy strong {
    font-family: var(--font-display);
    font-size: 1.14rem;
    line-height: 1;
}

.memberport-brand-copy small {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.memberport-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.memberport-nav-links a {
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease;
}

.memberport-nav-links a:hover {
    color: var(--ink);
    background: rgba(247, 251, 255, 0.08);
}

.memberport-nav-links a:last-child {
    color: var(--lime);
}

.memberport-site-nav .nav-links a:last-child {
    color: var(--lime);
}

.memberport-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
}

.memberport-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.7;
    z-index: -2;
}

.memberport-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 9, 13, 0.98) 0%, rgba(7, 9, 13, 0.82) 42%, rgba(7, 9, 13, 0.28) 100%),
        linear-gradient(0deg, rgba(7, 9, 13, 1) 0%, rgba(7, 9, 13, 0.08) 38%);
    z-index: -1;
}

.memberport-hero-content {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 98px 0 110px;
}

.memberport-hero h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-size: clamp(3.4rem, 5.2vw, 5.1rem);
    line-height: 1;
}

.memberport-hero .hero-copy {
    max-width: 660px;
}

.memberport-status {
    margin-top: -52px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 18px;
    border-radius: var(--radius);
    font-weight: 800;
    border: 1px solid var(--line-strong);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
    background: var(--lime);
    color: #07100c;
    border-color: var(--lime);
}

.btn-secondary {
    background: rgba(247, 251, 255, 0.06);
    color: var(--ink);
}

.status-strip,
.section-shell,
.feature-band,
.page-hero,
.case-study-list,
.system-board,
.tool-stack,
.lab-wall,
.notes-list,
.contact-hero,
.contact-fit,
.site-footer {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.status-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: -52px;
    position: relative;
    z-index: 2;
    background: var(--line-strong);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
}

.status-strip div {
    padding: 22px;
    background: rgba(17, 24, 33, 0.92);
}

.status-strip strong {
    display: block;
    margin-top: 8px;
    font-family: var(--font-display);
    font-size: 1.05rem;
}

.strip-label {
    color: var(--muted);
}

.section-shell,
.feature-band,
.tool-stack {
    padding: 104px 0;
}

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

.section-heading h2,
.page-hero h1,
.feature-copy h2,
.contact-copy h1 {
    margin-bottom: 18px;
    font-size: 4rem;
    line-height: 1;
}

.section-heading p:last-child,
.feature-copy p,
.page-lead,
.contact-copy p {
    max-width: 720px;
    color: var(--ink-2);
    font-size: 1.12rem;
    line-height: 1.75;
}

.memberport-tour-heading {
    max-width: none;
    margin-bottom: 44px;
}

.memberport-tour-heading h2 {
    max-width: 1140px;
}

.memberport-tour-heading p:last-child {
    max-width: 1040px;
}

.route-grid,
.brief-grid,
.tool-grid,
.app-grid,
.lab-wall,
.contact-fit {
    display: grid;
    gap: 16px;
}

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

.route-card,
.brief-card,
.app-card,
.feature-list article,
.system-block,
.tool-item,
.lab-card,
.note-row,
.fit-item {
    background: linear-gradient(180deg, rgba(17, 24, 33, 0.96), rgba(12, 17, 23, 0.96));
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.route-card {
    min-height: 260px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.route-card:hover,
.brief-card:hover,
.lab-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.route-card span {
    color: var(--lime);
    font-weight: 900;
}

.route-card h3,
.brief-card h3,
.feature-list h3,
.case-study h2,
.system-block h2,
.lab-card h2,
.note-row h2,
.fit-item h2 {
    margin-bottom: 12px;
    font-size: 1.7rem;
    line-height: 1.05;
}

.route-card p,
.brief-card p,
.feature-list p,
.case-study p,
.system-block p,
.lab-card p,
.note-row p,
.fit-item p {
    color: var(--muted);
    line-height: 1.7;
}

.feature-band {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: start;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-list {
    display: grid;
    gap: 14px;
}

.feature-list article {
    padding: 24px;
}

.feature-list span {
    color: var(--coral);
}

.brief-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.brief-card {
    min-height: 320px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brief-card-wide {
    background:
        linear-gradient(135deg, rgba(217, 255, 63, 0.18), transparent 46%),
        linear-gradient(180deg, rgba(17, 24, 33, 0.98), rgba(12, 17, 23, 0.98));
}

.advisory-single {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 16px;
}

.advisory-single .brief-card {
    min-height: 220px;
}

.brief-meta,
.case-tags,
.case-outcomes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
}

.brief-card a {
    font-weight: 900;
    color: var(--lime);
}

.memberport-access-event {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 58px;
    align-items: center;
    padding: 42px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.access-event-copy {
    display: grid;
    gap: 14px;
    max-width: 430px;
}

.access-event-copy span {
    color: var(--teal);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.access-event-copy h3 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.35rem);
    line-height: 0.98;
}

.access-event-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.access-event-rail {
    position: relative;
    display: grid;
    gap: 0;
}

.access-event-rail::before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 34px;
    width: 2px;
    background: linear-gradient(180deg, var(--lime), var(--teal), rgba(88, 101, 242, 0.95));
}

.access-event-row {
    position: relative;
    display: grid;
    grid-template-columns: 74px minmax(170px, 0.52fr) minmax(0, 1fr);
    gap: 18px;
    align-items: baseline;
    min-height: 110px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(247, 251, 255, 0.1);
}

.access-event-row:first-child {
    padding-top: 0;
}

.access-event-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.access-event-row span {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 68px;
    height: 68px;
    color: #07100c;
    font-weight: 900;
    border-radius: 999px;
    background: var(--lime);
    box-shadow: 0 0 36px rgba(205, 255, 31, 0.18);
}

.access-event-row:nth-child(2) span {
    color: var(--ink);
    background: var(--teal);
    box-shadow: 0 0 36px rgba(0, 220, 190, 0.18);
}

.access-event-row:nth-child(3) span {
    color: var(--ink);
    background: #5865f2;
    box-shadow: 0 0 36px rgba(88, 101, 242, 0.24);
}

.access-event-row strong {
    font-size: 1.35rem;
    line-height: 1.1;
}

.access-event-row p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.app-grid {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    padding-bottom: 72px;
}

.app-card {
    min-height: 360px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.app-card-featured {
    background:
        linear-gradient(135deg, rgba(215, 255, 63, 0.3), transparent 42%),
        linear-gradient(180deg, rgba(17, 24, 33, 0.98), rgba(12, 17, 23, 0.98));
}

.app-topline,
.app-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.app-topline {
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.app-topline strong {
    color: var(--blue);
}

.app-card h2 {
    margin: 26px 0 14px;
    font-size: 2.4rem;
    line-height: 1;
}

.app-card p {
    color: var(--muted);
    line-height: 1.7;
}

.app-points span {
    padding: 8px 10px;
    background: rgba(247, 251, 255, 0.06);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink-2);
    font-size: 0.82rem;
    font-weight: 800;
}

.app-feature-band {
    padding-top: 72px;
}

.shopify-portfolio-hero,
.app-listings,
.shopify-positioning {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.shopify-portfolio-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: end;
    padding: 96px 0 56px;
}

.shopify-hero-copy h1 {
    max-width: 850px;
    margin-bottom: 20px;
    font-size: 5rem;
    line-height: 0.96;
}

.shopify-hero-copy p:last-child {
    max-width: 760px;
    color: var(--ink-2);
    font-size: 1.14rem;
    line-height: 1.75;
}

.shopify-hero-panel {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
    box-shadow: var(--shadow);
}

.shopify-panel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    background: rgba(17, 24, 33, 0.96);
}

.shopify-panel-row span {
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.shopify-panel-row strong {
    font-family: var(--font-display);
}

.app-listings {
    display: grid;
    gap: 18px;
    padding-bottom: 82px;
}

.app-listing {
    display: grid;
    gap: 26px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(17, 24, 33, 0.98), rgba(12, 17, 23, 0.98));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.app-listing-featured {
    background:
        linear-gradient(135deg, rgba(217, 255, 63, 0.17), transparent 34%),
        linear-gradient(180deg, rgba(17, 24, 33, 0.98), rgba(12, 17, 23, 0.98));
}

.app-listing-main {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.app-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: var(--lime);
    color: #07100c;
    font-family: var(--font-display);
    font-weight: 900;
}

.app-listing h2 {
    margin: 18px 0 14px;
    font-size: 3.2rem;
    line-height: 0.95;
}

.app-listing-main p {
    max-width: 820px;
    color: var(--ink-2);
    font-size: 1.05rem;
    line-height: 1.75;
}

.app-inline-link {
    display: inline-flex;
    margin-top: 8px;
    color: var(--lime);
    font-weight: 900;
}

.app-listing-details {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.app-listing-details h3 {
    margin-bottom: 14px;
    color: var(--teal);
    font-size: 0.86rem;
    text-transform: uppercase;
}

.app-bullet-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.7;
}

.app-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.app-spec-grid span {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(247, 251, 255, 0.06);
    color: var(--ink-2);
    font-weight: 800;
}

.shopify-positioning {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: start;
    padding: 86px 0 112px;
    border-top: 1px solid var(--line);
}

.shopify-stack {
    display: grid;
    gap: 14px;
}

.shopify-stack div {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 24, 33, 0.96);
}

.shopify-stack span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--lime);
    font-weight: 900;
}

.shopify-stack strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.shopify-stack p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.memberport-use-cases,
.memberport-faq,
.memberport-cta {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.memberport-usecase-map {
    position: relative;
    min-height: 620px;
    margin-top: 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 220, 190, 0.11), transparent 24%),
        radial-gradient(circle at 18% 22%, rgba(205, 255, 31, 0.08), transparent 21%),
        radial-gradient(circle at 82% 78%, rgba(88, 101, 242, 0.12), transparent 24%);
}

.memberport-usecase-map::before,
.memberport-usecase-map::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.memberport-usecase-map::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(205, 255, 31, 0.45), rgba(0, 220, 190, 0.48), rgba(88, 101, 242, 0.42), transparent);
}

.memberport-usecase-map::after {
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(0, 220, 190, 0.42), transparent);
}

.usecase-map-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    place-content: center;
    gap: 12px;
    width: min(330px, 34vw);
    aspect-ratio: 1;
    padding: 36px;
    text-align: center;
    border: 1px solid rgba(0, 220, 190, 0.28);
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 0, rgba(205, 255, 31, 0.12), transparent 44%),
        rgba(7, 12, 16, 0.88);
    box-shadow: 0 0 70px rgba(0, 220, 190, 0.1);
    transform: translate(-50%, -50%);
}

.usecase-map-core span,
.usecase-map-index {
    color: var(--lime);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.usecase-map-core strong {
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.05;
}

.usecase-map-core p {
    max-width: 230px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.45;
}

.usecase-map-item {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 12px;
    width: min(330px, 29vw);
}

.usecase-map-item::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 132px;
    height: 1px;
    background: linear-gradient(90deg, var(--usecase-accent), transparent);
    opacity: 0.82;
}

.usecase-map-item::before {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--usecase-accent);
    box-shadow: 0 0 22px var(--usecase-accent);
}

.usecase-map-item h3 {
    margin: 0;
    font-size: clamp(1.65rem, 2.7vw, 3rem);
    line-height: 0.98;
}

.usecase-map-item p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
}

.usecase-map-memberships,
.usecase-map-courses {
    left: 0;
}

.usecase-map-vip,
.usecase-map-support {
    right: 0;
    text-align: right;
}

.usecase-map-memberships {
    --usecase-accent: var(--lime);
    position: absolute;
    top: 62px;
}

.usecase-map-vip {
    --usecase-accent: var(--teal);
    position: absolute;
    top: 62px;
}

.usecase-map-courses {
    --usecase-accent: #8fb0ff;
    position: absolute;
    bottom: 62px;
}

.usecase-map-support {
    --usecase-accent: #ff7a66;
    position: absolute;
    bottom: 62px;
}

.usecase-map-memberships::after,
.usecase-map-courses::after {
    left: calc(100% + 20px);
}

.usecase-map-vip::after,
.usecase-map-support::after {
    right: calc(100% + 20px);
    background: linear-gradient(270deg, var(--usecase-accent), transparent);
}

.usecase-map-memberships::before,
.usecase-map-courses::before {
    right: -26px;
}

.usecase-map-vip::before,
.usecase-map-support::before {
    left: -26px;
}

.memberport-workflow-visual {
    margin: 0;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.memberport-workflow-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.memberport-tour {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    padding: 34px 0 42px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.memberport-tour-steps {
    display: grid;
    gap: 0;
}

.memberport-tour-steps article {
    position: relative;
    padding: 0 0 12px 28px;
    border-left: 1px solid rgba(247, 251, 255, 0.16);
}

.memberport-tour-steps article:last-child {
    padding-bottom: 0;
}

.memberport-tour-steps article::before {
    content: "";
    position: absolute;
    top: 4px;
    left: -5px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(247, 251, 255, 0.32);
}

.memberport-tour-steps article.is-active::before {
    background: var(--lime);
    box-shadow: 0 0 0 5px rgba(205, 255, 31, 0.12);
}

.memberport-tour-step {
    display: grid;
    gap: 8px;
    width: 100%;
    min-height: 116px;
    padding: 14px;
    color: inherit;
    text-align: left;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.memberport-tour-step:hover,
.memberport-tour-step:focus-visible,
.memberport-tour-steps article.is-active .memberport-tour-step {
    border-color: rgba(247, 251, 255, 0.12);
    background: rgba(247, 251, 255, 0.04);
}

.memberport-tour-step:focus-visible {
    outline: 2px solid rgba(205, 255, 31, 0.76);
    outline-offset: 3px;
}

.memberport-tour-steps span,
.memberport-tour-preview figcaption span {
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.memberport-tour-steps article.is-active span {
    color: var(--lime);
}

.memberport-tour-steps h3 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.15;
}

.memberport-tour-steps p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.memberport-tour-preview {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(247, 251, 255, 0.16);
    border-radius: 12px;
    background:
        radial-gradient(circle at 18% 12%, rgba(205, 255, 31, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(19, 27, 36, 0.88), rgba(9, 13, 18, 0.96));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.memberport-tour-chrome {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 34px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(247, 251, 255, 0.12);
}

.memberport-tour-chrome span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(247, 251, 255, 0.24);
}

.memberport-tour-chrome strong {
    margin-left: 8px;
    color: var(--muted);
    font-size: 0.78rem;
}

.memberport-tour-screen {
    overflow: hidden;
    border-radius: 8px;
    background: #eef0f2;
}

.memberport-tour-screen img {
    display: block;
    width: 100%;
    height: clamp(330px, 34vw, 480px);
    object-fit: cover;
    object-position: center top;
    transition: opacity 0.18s ease;
}

.memberport-tour.is-switching .memberport-tour-screen img,
.memberport-tour.is-switching .memberport-tour-result {
    opacity: 0.35;
}

.memberport-tour-result {
    position: absolute;
    right: 24px;
    bottom: 64px;
    width: min(300px, 38%);
    overflow: hidden;
    border: 1px solid rgba(247, 251, 255, 0.22);
    border-radius: 10px;
    background: #202024;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.42);
    opacity: 1;
    transition: opacity 0.18s ease;
}

.memberport-tour-result.is-hidden {
    display: none;
}

.memberport-tour-result img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: left top;
}

.memberport-tour-preview figcaption {
    display: grid;
    gap: 8px;
    padding: 14px 4px 0;
}

.memberport-tour-preview figcaption strong {
    font-size: 1rem;
    line-height: 1.3;
}

.memberport-band {
    margin-top: 0;
}

.memberport-use-cases {
    padding: 96px 0;
    border-top: 1px solid var(--line);
}

.memberport-faq {
    padding: 96px 0;
    border-top: 1px solid var(--line);
}

.memberport-faq-list {
    display: grid;
    gap: 12px;
    max-width: 920px;
}

.memberport-faq details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 24, 33, 0.96);
}

.memberport-faq summary {
    cursor: pointer;
    padding: 20px 22px;
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 800;
    list-style-position: inside;
}

.memberport-faq details p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted);
    line-height: 1.75;
}

.memberport-cta {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
    padding: 90px 0 112px;
    border-top: 1px solid var(--line);
}

.memberport-cta-copy {
    max-width: 850px;
}

.memberport-cta h2 {
    margin-bottom: 18px;
    font-size: 4rem;
    line-height: 1;
}

.memberport-cta p:last-of-type {
    max-width: 720px;
    color: var(--ink-2);
    font-size: 1.12rem;
    line-height: 1.75;
}

.memberport-contact-form {
    display: grid;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(17, 24, 33, 0.98), rgba(12, 17, 23, 0.98));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

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

.memberport-contact-form label {
    display: grid;
    gap: 8px;
}

.memberport-contact-form span {
    color: var(--ink-2);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.memberport-contact-form input,
.memberport-contact-form select,
.memberport-contact-form textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(247, 251, 255, 0.06);
    color: var(--ink);
    font: inherit;
    padding: 12px 14px;
    outline: none;
}

.memberport-contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.memberport-contact-form input:focus,
.memberport-contact-form select:focus,
.memberport-contact-form textarea:focus {
    border-color: rgba(217, 255, 63, 0.72);
    box-shadow: 0 0 0 3px rgba(217, 255, 63, 0.1);
}

.memberport-contact-form button {
    justify-self: start;
}

.memberport-hidden-field {
    display: none;
}

.memberport-thanks {
    min-height: 100vh;
    display: grid;
    place-items: center;
    width: min(900px, calc(100% - 48px));
    margin: 0 auto;
}

.memberport-thanks-panel {
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(17, 24, 33, 0.98), rgba(12, 17, 23, 0.98));
    box-shadow: var(--shadow);
}

.memberport-thanks-panel h1 {
    max-width: 680px;
    margin-bottom: 18px;
    font-size: 4rem;
    line-height: 1;
}

.memberport-thanks-panel p:last-of-type {
    color: var(--ink-2);
    font-size: 1.1rem;
    line-height: 1.7;
}

.memberport-thanks-panel a:not(.btn) {
    color: var(--lime);
    font-weight: 900;
}

.memberport-policy-hero,
.memberport-policy {
    width: min(980px, calc(100% - 48px));
    margin: 0 auto;
}

.memberport-policy-hero {
    padding: 96px 0 42px;
}

.memberport-policy-hero h1 {
    margin-bottom: 18px;
    font-size: 5rem;
    line-height: 0.95;
}

.memberport-policy-hero p:last-child {
    color: var(--muted);
    font-weight: 800;
}

.memberport-policy {
    display: grid;
    gap: 18px;
    padding-bottom: 104px;
}

.memberport-policy article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(17, 24, 33, 0.96), rgba(12, 17, 23, 0.96));
}

.memberport-policy h2 {
    margin-bottom: 12px;
    font-size: 1.85rem;
}

.memberport-policy p,
.memberport-policy li {
    color: var(--ink-2);
    line-height: 1.75;
}

.memberport-policy p:last-child,
.memberport-policy ul:last-child {
    margin-bottom: 0;
}

.memberport-policy ul {
    display: grid;
    gap: 10px;
    padding-left: 22px;
}

.memberport-footer {
    font-size: 0.9rem;
    border-color: rgba(217, 255, 63, 0.18);
}

.memberport-footer a {
    color: var(--muted);
}

.page-hero {
    padding: 96px 0 54px;
}

.page-hero h1 {
    max-width: 860px;
}

.case-study-list {
    display: grid;
    gap: 18px;
    padding-bottom: 104px;
}

.case-study {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid var(--line-strong);
}

.case-index {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--blue);
}

.case-body {
    max-width: 900px;
}

.case-study h2 {
    max-width: 780px;
    margin-top: 18px;
    font-size: 2.9rem;
}

.case-outcomes span,
.case-tags span {
    padding: 8px 10px;
    background: rgba(247, 251, 255, 0.06);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.system-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding-bottom: 60px;
}

.system-block {
    min-height: 280px;
    padding: 28px;
}

.system-block span {
    color: var(--blue);
}

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

.tool-item {
    min-height: 90px;
    display: flex;
    align-items: center;
    padding: 22px;
    color: var(--ink);
}

.tool-item:nth-child(2),
.tool-item:nth-child(5) {
    background: var(--lime);
    color: #07100c;
}

.tool-item:nth-child(3) {
    background: var(--blue);
    color: #07100c;
}

.lab-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 104px;
}

.lab-card {
    min-height: 280px;
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lab-card span {
    color: var(--teal);
}

.lab-card:nth-child(2),
.lab-card:nth-child(5) {
    background: linear-gradient(135deg, rgba(0, 229, 195, 0.18), rgba(17, 24, 33, 0.98));
    color: var(--white);
}

.lab-card:nth-child(2) p,
.lab-card:nth-child(5) p {
    color: rgba(255, 255, 255, 0.72);
}

.notes-list {
    padding-bottom: 104px;
}

.note-row {
    display: grid;
    grid-template-columns: 190px minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 28px;
    padding: 28px;
    margin-bottom: 14px;
    align-items: start;
}

.note-row span {
    color: var(--blue);
}

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
    padding: 104px 0 70px;
    align-items: start;
}

.contact-copy h1 {
    max-width: 800px;
}

.contact-panel {
    display: grid;
    gap: 10px;
}

.contact-link {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 18px;
    background: rgba(17, 24, 33, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 900;
}

.contact-link.primary {
    background: var(--lime);
    color: #07100c;
    border-color: var(--lime);
}

.contact-fit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 104px;
}

.fit-item {
    padding: 28px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 0 44px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.site-footer a {
    color: var(--ink);
    font-weight: 900;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .status-strip,
    .route-grid,
    .feature-band,
    .brief-grid,
    .app-grid,
    .shopify-portfolio-hero,
    .app-listing-details,
    .shopify-positioning,
    .memberport-cta,
    .memberport-tour,
    .memberport-access-event,
    .system-board,
    .tool-grid,
    .lab-wall,
    .note-row,
    .contact-hero,
    .contact-fit {
        grid-template-columns: 1fr;
    }

    .site-nav,
    .memberport-nav {
        align-items: center;
        flex-direction: row;
        gap: 12px;
        min-height: 66px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .brand-mark,
    .memberport-nav-brand {
        min-width: 0;
        flex: 1 1 auto;
    }

    .brand-copy,
    .memberport-brand-copy {
        min-width: 0;
    }

    .brand-copy strong,
    .memberport-brand-copy strong {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .js .nav-links,
    .js .memberport-nav-links {
        position: absolute;
        top: calc(100% + 1px);
        left: max(16px, calc((100vw - 1180px) / 2));
        right: max(16px, calc((100vw - 1180px) / 2));
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(12, 17, 23, 0.98);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .js .site-nav.is-open .nav-links,
    .js .memberport-nav.is-open .memberport-nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .js .nav-links a,
    .js .memberport-nav-links a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 12px;
        border: 1px solid rgba(247, 251, 255, 0.08);
        background: rgba(247, 251, 255, 0.04);
        color: var(--ink-2);
        font-size: 0.92rem;
    }

    .js .nav-links a:hover,
    .js .memberport-nav-links a:hover,
    .js .nav-links a:focus-visible,
    .js .memberport-nav-links a:focus-visible {
        color: var(--ink);
        background: rgba(247, 251, 255, 0.09);
    }

    .hero h1,
    .memberport-hero h1,
    .section-heading h2,
    .page-hero h1,
    .shopify-hero-copy h1,
    .feature-copy h2,
    .memberport-cta h2,
    .memberport-thanks-panel h1,
    .memberport-policy-hero h1,
    .contact-copy h1 {
        font-size: 3.4rem;
    }

    .memberport-access-event {
        gap: 32px;
    }

    .access-event-copy {
        max-width: 680px;
    }

    .memberport-usecase-map {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 34px;
        min-height: 0;
        padding: 34px 0;
    }

    .memberport-usecase-map::before {
        top: 50%;
    }

    .memberport-usecase-map::after {
        display: none;
    }

    .usecase-map-core,
    .usecase-map-item {
        position: relative;
        inset: auto;
        right: auto;
        bottom: auto;
        left: auto;
        top: auto;
        width: auto;
        text-align: left;
        transform: none;
    }

    .usecase-map-core {
        grid-column: 1 / -1;
        width: min(420px, 100%);
        aspect-ratio: auto;
        padding: 0 0 30px;
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        text-align: left;
    }

    .usecase-map-core p {
        max-width: 420px;
        margin: 0;
    }

    .usecase-map-item::before,
    .usecase-map-item::after {
        display: none;
    }

}

@media (max-width: 640px) {
    .site-nav {
        padding-left: 16px;
        padding-right: 16px;
    }

    .memberport-nav {
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand-mark,
    .memberport-nav-brand {
        gap: 10px;
    }

    .brand-glyph,
    .memberport-product-mark {
        width: 40px;
        height: 40px;
        font-size: 0.68rem;
    }

    .brand-copy strong,
    .memberport-brand-copy strong {
        font-size: 0.94rem;
    }

    .brand-copy small,
    .memberport-brand-copy small {
        font-size: 0.64rem;
    }

    .js .nav-links,
    .js .memberport-nav-links {
        grid-template-columns: 1fr;
        left: 16px;
        right: 16px;
    }

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

    .hero {
        min-height: 680px;
    }

    .memberport-hero {
        min-height: 680px;
    }

    .hero-content,
    .memberport-hero-content,
    .status-strip,
    .section-shell,
    .feature-band,
    .app-grid,
    .shopify-portfolio-hero,
    .app-listings,
    .shopify-positioning,
    .memberport-use-cases,
    .memberport-faq,
    .memberport-cta,
    .page-hero,
    .case-study-list,
    .system-board,
    .tool-stack,
    .lab-wall,
    .notes-list,
    .contact-hero,
    .contact-fit,
    .memberport-policy-hero,
    .memberport-policy,
    .site-footer {
        width: calc(100% - 32px);
    }

    .hero-content {
        padding-top: 64px;
        padding-bottom: 76px;
    }

    .memberport-hero-content {
        padding-top: 68px;
        padding-bottom: 84px;
    }

    .memberport-hero-media {
        opacity: 0.44;
    }

    .hero h1,
    .memberport-hero h1,
    .section-heading h2,
    .page-hero h1,
    .shopify-hero-copy h1,
    .feature-copy h2,
    .memberport-cta h2,
    .memberport-thanks-panel h1,
    .memberport-policy-hero h1,
    .contact-copy h1 {
        font-size: 2.65rem;
        line-height: 1;
    }

    .hero-copy,
    .section-heading p:last-child,
    .feature-copy p,
    .page-lead,
    .shopify-hero-copy p:last-child,
    .memberport-cta p:last-of-type,
    .contact-copy p {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .status-strip div {
        padding: 18px;
    }

    .memberport-access-event {
        padding: 34px 0;
    }

    .access-event-row {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 14px;
        min-height: 0;
        padding: 20px 0;
    }

    .access-event-row span {
        width: 50px;
        height: 50px;
        grid-row: span 2;
    }

    .access-event-row p {
        grid-column: 2;
    }

    .access-event-rail::before {
        left: 24px;
    }

    .memberport-workflow-visual img {
        object-position: center;
    }

    .memberport-workflow-visual {
        aspect-ratio: 4 / 3;
    }

    .memberport-usecase-map {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 0;
    }

    .memberport-usecase-map::before {
        left: 24px;
        top: 160px;
        bottom: 30px;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, var(--lime), var(--teal), rgba(88, 101, 242, 0.65), rgba(255, 122, 102, 0.65));
    }

    .usecase-map-core {
        padding-left: 0;
    }

    .usecase-map-item {
        padding-left: 52px;
    }

    .usecase-map-item::before {
        top: 4px;
        left: 20px;
        display: block;
    }

    .usecase-map-item h3 {
        font-size: 1.7rem;
    }

    .memberport-tour {
        gap: 24px;
        padding-top: 20px;
    }

    .memberport-tour-steps article {
        padding-left: 22px;
        padding-bottom: 22px;
    }

    .memberport-tour-preview {
        padding: 8px;
        border-radius: 10px;
    }

    .memberport-tour-screen img {
        height: 310px;
        object-position: 38% top;
    }

    .memberport-tour-result {
        position: static;
        width: 100%;
        margin-top: 8px;
    }

    .memberport-tour-result img {
        aspect-ratio: 16 / 7;
    }

    .section-shell,
    .feature-band,
    .tool-stack,
    .memberport-use-cases,
    .memberport-faq,
    .memberport-cta {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .shopify-portfolio-hero {
        padding: 64px 0 38px;
    }

    .app-listing {
        padding: 22px;
    }

    .app-listing-main {
        grid-template-columns: 1fr;
    }

    .app-listing h2 {
        font-size: 2.25rem;
    }

    .app-spec-grid {
        grid-template-columns: 1fr;
    }

    .case-study {
        grid-template-columns: 1fr;
    }

    .case-study h2 {
        font-size: 2rem;
    }

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