:root {
    --300: 12px;
    --400: 16px;
    --700: 28px;
    --800: 32px;
    --1400: 56px;
    --1500: 60px;
    --1800: 96px;

    --foundations\/White: #ffffff;
    --foundations\/white: #ffffff;
    --foundations\/black: #0d0e10;
    --neutral\/700: #808385;
    --moss\/500: #878b8a;
    --marine\/500: #445862;
    --marine\/300: #8f9ba1;
    --amber\/500: #ba753f;
    --dark\/500: #0d0e10;
    --surface\/page: #ffffff;
    --surface\/page-secondary: #0d0e10;
    --surface\/information: #1e3046;

    --font\/copy\/body-xs\/text-size: 14px;
    --font\/copy\/body-xs\/letter-spacing: -0.05px;
    --font\/copy\/body-sm\/text-size: 16px;
    --font\/copy\/body-sm\/letter-spacing: 0px;
    --font\/copy\/body\/text-size: 18px;
    --font\/copy\/body\/letter-spacing: 0px;
    --font\/headings\/h1\/text-size: 112px;
    --font\/headings\/h1\/letter-spacing: -2px;
    --font\/headings\/h2\/text-size: 72px;
    --font\/headings\/h2\/letter-spacing: -2px;
    --font\/headings\/h3\/text-size: 56px;
    --font\/headings\/h3\/letter-spacing: -2px;
    --font\/headings\/h5\/text-size: 32px;
    --font\/headings\/h5\/letter-spacing: 0px;
    --font\/headings\/h6\/text-size: 24px;

    --font\/headings\/h6\/letter-spacing: 0px;

    --font-style\/primary-family:
        "PP Editorial Ultralight", Georgia, "Times New Roman", serif;
    --font-style\/secondary-family:
        "Inter", "Helvetica Neue", Arial, sans-serif;
    --font-style\/secondary-family-tight:
        "Inter Tight", "Inter", "Helvetica Neue", Arial, sans-serif;
    --font\/secondary: "Inter", "Helvetica Neue", Arial, sans-serif;

    --spacing\/padding\/button: 24px;
    --spacing\/padding\/margin: 60px;
    --spacing\/jumpers\/gap: 72px;
    --border-radius\/md: 24px;
    --border-radius\/xl: 96px;
    --border-width\/xs: 1px;
}

* {
    box-sizing: border-box;
    cursor: none !important;
}

html {
    scroll-behavior: smooth;
}


@font-face {
  font-family: 'PP Editorial Ultralight';
  src: url('fonts/pp-editorial/PPEditorialNew-Ultralight.otf') format('woff2'),
  font-weight: light;
  font-style: normal;
  font-display: swap; /* Helps with loading performance */
}

body {
    margin: 0 auto;
    font-family: var(--font-style\/secondary-family);
    font-size: var(--font\/copy\/body\/text-size);
    letter-spacing: var(--font\/copy\/body\/letter-spacing);
    color: var(--foundations\/black);
    background: var(--surface\/page);
    line-height: 140%;
}

a {
    color: var(--marine\/300);
    text-decoration: none;
    font-weight: bold;
}


input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    box-sizing: border-box;
    font-family: var(--font-style\/secondary-family);
    font-size: var(--font\/copy\/body\/text-size);
    background: var(--foundations\/black);
    border: none;
    border-bottom: 1px solid var(--marine\/500);
    color: var(--foundations\/white);

}

textarea {
    margin-bottom: 4%;
}


input::placeholder, textarea::placeholder  {
  color: var(--foundations\/white); /* Set your desired preview color here */
  opacity: 1;    /* Firefox lowers opacity by default; this ensures full color */
}


input:focus, textarea:focus  {
    border-bottom: 1px solid var(--foundations\/white);

    outline: none;

}

.error input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    box-sizing: border-box;
    font-family: var(--font-style\/secondary-family);
    font-size: var(--font\/copy\/body\/text-size);
    background: var(--foundations\/black);
    border: none;
    border-bottom: 1px solid red;
    color: var(--foundations\/white);

}




/* Custom cursor */
.cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    background: var(--foundations\/white);
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.cursor.is-hovering {
    transform: translate(-50%, -50%) scale(1.5);
}

/* Page container */
.section {
    padding: var(--1500) var(--spacing\/padding\/margin);

}


/*this is the homepage nav + header text*/

.hero {
    position: relative;
    min-height: 850px;
    overflow: hidden;
    background: linear-gradient(160deg, #372e29 60%, #1d1d1b 100%);
    color: var(--foundations\/white);
    max-width: 1920px;
    margin: 0 auto;

    border: 16px solid white;
    border-radius: 40px 40px 90px 90px;

}


/*this is the sub-page nav + header text*/
.hero-sub {
    position: relative;
    min-height: 150px;
    overflow: hidden;
    color: var(--foundations\/white);
    max-width: 1920px;
    margin: 0 auto;
    border: 16px solid #0d0e10;
    background-color: var(--foundations\/black);
    padding-bottom: 0px;
}




/*this is the sub-page nav + header text*/
.hero-sub-img {
    position: relative;
    min-height: 400px;
    max-width: 1920px;

    /* this added colored padding beneath the sub page header img
    padding-bottom: 460px;*/
    background-color:var(--foundations\/black);

/* this centers the banner */
    margin: 0 auto;
}




/*this is the homepage bg*/

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("imagery/image-home-hero.jpg");
    background-size: cover;
    background-position: top;
    opacity: 0.9;

}



/*this is the sub-page product bg */
.hero-bg-products, .hero-bg-membranes, .hero-bg-assemblies, .hero-bg-touch, .hero-bg-injections, .hero-bg-contact {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1.0;
    height: 100%;
    border-radius: var(--border-radius\/md);
    /*adds border to hero on desktop*/
    margin-left: 16px;
    margin-right: 16px;
    overflow: hidden;
    max-height: 400px;
}


.hero-bg-products {
    background-image: url("imagery/img-bg-products-desktop.jpg");

}

.hero-bg-membranes {
    background-image: url("imagery/img-bg-membrane-switches-desktop.jpg");

}


.hero-bg-assemblies {
    background-image: url("imagery/img-bg-full-assemblies-desktop.jpg");

}


.hero-bg-touch {
    background-image: url("imagery/img-bg-touch-screens-desktop.jpg");

}

.hero-bg-injections {
    background-image: url("imagery/img-bg-injection-molding-desktop.jpg");

}
.hero-bg-contact {
    background-image: url("imagery/img-bg-contact-desktop.jpg");

}

.nav,
.hero-copy, .hero-sub-page-header {
    position: relative;
    z-index: 1;

}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 98px;
}


.nav {
    padding-bottom: 4px;
}

.menu-toggle {
    display: none;
    border: 0;
    border-radius: var(--border-radius\/xl);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--foundations\/white);
    font-size: 20px;
    cursor: pointer;
}

.logo {
    font-weight: 600;
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 34px;
    margin: 0;
    padding: 0;
}
.nav-link:hover {
    color: var(--marine\/300);
    transition: 0.5s;
}

/* Hide CTA inside nav-links on desktop */
.nav-links .nav-cta {
    display: none;
}

.nav-link {
    background: transparent;
    border: 0;
    color: var(--foundations\/white);
    font: inherit;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}

.nav-link.is-active {
    border-bottom-color: var(--marine\/500);
}

/*this is the homepage hero h1 padding*/
.hero-copy {
    max-width: 60%;
    margin-top: 10%;
}

/*this is the sub-page hero h1 padding*/
.hero-sub-page-hero {
    max-width: 80%;
    padding-top: 60px;

}



h1,
h2,
h3 {
    margin: 0;
    font-weight: 300;
}

h5,
h6 {
    margin: 0;
    font-weight: 100;
}

h1 {
    font-family: var(--font-style\/primary-family);
    font-size: var(--font\/headings\/h1\/text-size);
    letter-spacing: var(--font\/headings\/h1\/letter-spacing);
    line-height: 1;
    margin-bottom: var(--700);
}

h2 {
    font-family: var(--font-style\/primary-family);
    font-size: var(--font\/headings\/h2\/text-size);
    letter-spacing: var(--font\/headings\/h2\/letter-spacing);
    line-height: 1;
}

h3 {
    font-family: var(--font-style\/primary-family);
    font-size: var(--font\/headings\/h3\/text-size);
    letter-spacing: var(--font\/headings\/h3\/letter-spacing);
    line-height: 1;
}

h5 {
    font-family: var(--font\/secondary);
    font-size: var(--font\/headings\/h5\/text-size);
}

h6 {
    font-family: var(--font-style\/secondary-family-tight);
    font-size: var(--font\/headings\/h6\/text-size);
    line-height: 1.2;
}

.pill-btn {
    border: 0;
    border-radius: var(--border-radius\/xl);
    padding: var(--300) var(--spacing\/padding\/button);
    color: var(--foundations\/white);
    font-size: var(--font\/copy\/body-sm\/text-size);
    letter-spacing: var(--font\/copy\/body-sm\/letter-spacing);
    cursor: pointer;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.2);
    filter: url(#glass-distortion);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pill-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.28);
}

.intro-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 2fr;
    gap: 24px;
    border-top: var(--border-width\/xs) solid var(--foundations\/black);
    padding-top: var(--700);
}

.contact-page
{
    display: grid;
    grid-template-columns: 2fr 2fr;
    grid-template-rows: 1fr ;
    gap: 8%;
    padding-top: var(--700);
}


.contact-left
{

    padding-top: var(--700);
}

.contact-right
{

    padding-top: var(--700);
}

.contact-right a
{

    color: var(--foundations\/white);
}

/*changes intro grid to white border, more wide for sub pages*/
.intro-grid-sub {
    display: grid;
    grid-template-columns: 4fr 4fr 1fr 2fr;
    gap: 24px;
    border-top: var(--border-width\/xs) solid var(--foundations\/white);
    padding-top: var(--700);
    margin-bottom: 96px;
}


.intro-grid-left-container {
    border-top: var(--border-width\/xs) solid var(--foundations\/black);
}

.intro-grid-img img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius\/md);
}

.intro, .intro-sub {
    /* container for content so it doesn't scale up infinitely */
    max-width: 1920px;
    margin: 0 auto;
}

.intro-sub {
    background-color:var(--foundations\/black);
    color: var(--foundations\/white);
    border-color: pink;
}

.product-page {
    padding-top: 10px;

}

.quote-block {
    margin: 0px 0;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 2fr 2fr;
    /* moves the quote copy up slightly */
    margin-top: -5%;
    margin-bottom: 5%;
}

.quote-block h2 span {
    color: var(--neutral\/700);
}

.quote-block img {
    max-width: 50%;
    height: auto;
    /*moves image back down to compensate for margin-top negative above*/
    margin-top: 100px;

}

.markets-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8%;
    align-items: end;
    /* moves the quote copy up slightly */
    margin-top: -5%;
}

.markets-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius\/md);

}

.markets-list {
    border-top: var(--border-width\/xs) solid var(--foundations\/black);
}

.market-item {
    border-bottom: var(--border-width\/xs) solid var(--foundations\/black);
}




/* market image hover transition animation starts here */
#market-img {
    transition: opacity 0.3s ease;
}

#market-img.is-fading {
    opacity: 50%;
}
.market-grid-img {
    position: relative;
}

.market-grid-img img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius\/md);
    transition: opacity 0.5s ease;
}

.market-grid-img img.behind {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

/* market image hover transition animation ends here */

.market-trigger {
    width: 100%;
    padding: var(--700) 0;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font: inherit;
    cursor: pointer;
    font-weight: 600;
    color: var(--foundations\/black);
}



.market-item p {
    margin: 0 0 var(--700);
    max-width: 820px;
    display: none;
}

.market-item.is-open p {
    display: block;
}

.market-item.is-open .icon {
    transform: rotate(45deg);
}

.markets-wrap h6 {
    margin-bottom: 4%;
}

.number-light {
    color: var(--neutral\/700);
    font-weight: 100;
}

.founders {
    background: var(--surface\/page-secondary);
    color: var(--foundations\/white);
}

.founder-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
}

.founder-container {
    /* container for content so it doesn't scale up infinitely */

    max-width: 1800px;
    margin: 0 auto;
}

.founder-card img {
    display: block;
    width: 50%;
    max-width: 50%;
    height: auto;
    border-radius: var(--border-radius\/md);

   /* aspect-ratio: 536 / 393; */


    border-radius: var(--border-radius\/md);
}

.role-description {
    width: 90%;
    font-size: var(--font\/copy\/body-sm\/text-size);
}

.founder-card h5 {
    margin-top: 16px;
}

.founder-card .role {
    font-weight: 600;
}

.products {
    margin-top: 2%;
    margin-bottom: 5%;
}

.products h6 {
    text-align: center;
    margin-bottom: 6%;
}
.product-link {
  display: flex;
  align-items: center;
  justify-content: center; /* add this */
  gap: var(--700);
  width: 100%;
  text-decoration: none;
  color: inherit;
}

/*this is where the product image hover happens */

.product-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--700);
    margin: 14px 0;

    transition:
        opacity 200ms ease,
        transform 200ms ease;
    color: var(--foundations\/black);
}

.product-row img {
    width: 166px;
    height: 184px;
    object-fit: cover;
    border-radius: var(--border-radius\/md);
    background: var(--foundations\/black);
}

.product-row.is-active {
    opacity: 1;
    transform: scale(1.01);

    color: var(--marine\/300);
}

.product-img-wrap {
    position: relative;
    width: 166px;
    height: 184px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--border-radius\/md);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-row.is-active .product-img-wrap img {
    transform: scale(1.14);
}


/*this is where the product image hover ends */

.contact {
    background: var(--surface\/information);
    background-image: url("imagery/img-schematic-bg.png");
    background-position: center left -200px;
    background-size: 70%;
    background-repeat: no-repeat; /* Do not repeat the image */
    color: var(--foundations\/white);
    text-align: center;
    min-height: 500px; /* At least 500px tall */
    height: 60vh;
    display: flex;
    justify-content: space-around; /* aligns the items horizontally */
    align-items: center; /* aligns the items vertically */
}

.contact p {
    max-width: 600px;
    margin: 12px auto 32px;
    margin-bottom: 10%;
}

.contact h6 {
    margin-bottom: 8%;
}
.footer {
    background: var(--surface\/page-secondary);
    color: var(--foundations\/white);
}

.footer-top {
    /*  display: flex;
    justify-content: space-between; */
    margin-top: 60px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
}

.footer-top img {
    width: 50%;
    min-width: 300px;
}

.footer-wrapper {
    max-width: 1920px;
    margin: 0 auto;
}

.footer-links {
    /*  display: flex;
    gap: 24px;*/
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 8px 16px;

}

.footer-links a, .footer-links a:visited  {
    color: var(--foundations\/white);
    text-decoration: none;
    font-size: var(--font\/copy\/body-xs\/text-size);
    letter-spacing: var(--font\/copy\/body-xs\/letter-spacing);
    font-weight: 400;

}
.footer-links a:hover {
    color: var(--marine\/300);
    transition: 0.3s;
}

.top-level a, .top-level a:visited, .top-level {
    color: var(--moss\/500);
}

.top-level a:hover {
    color: var(--foundations\/white);
}
.copyright {
    margin-top: 60px;
    color: var(--moss\/500);
    font-size: 14px;
}

.footer-images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    width: 100%;
}
.footer-images img {
    width: 100%;
}




.go-dark {
    border-color:  var(--foundations\/white);
    color: var(--foundations\/white);
}

.dark-bg {
    background-color: var(--foundations\/black);
}

.light-bg {ar(--foundations\/white)var(--foundations\/black);
}

.dark-mode {
    border-color:  var(--foundations\/white);
    color:var(--foundations\/white);
}



/*  product cards start   */


.product-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: var(--foundations\/black);

}

.product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--foundations\/white);
    background: var(--foundations\/black);
    transition: opacity 0.2s ease;
}

.product-card:hover {
    opacity: 0.85;
    color: var(--foundations\/white);
}

.product-card-img {
    position: relative;
    width: 100%;
   /* aspect-ratio: 16 / 10; */
     aspect-ratio: 1 / 1;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius\/md);


}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;


}

.product-card-num {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: var(--font\/copy\/body-md\/text-size);
    color: var(--foundations\/white);
    font-family: var(--font-style\/secondary-family);
    z-index: 2;

}

.product-card-desc {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 40px;
    margin: 0;
    font-size: var(--font\/copy\/body-xs\/text-size);
    line-height: 1.5;
    color: var(--foundations\/white);
    font-weight: 300;
    z-index: 2;

}

.overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background:
    linear-gradient(180deg, rgba(13, 14, 16, 0.75) 0%, rgba(13, 14, 16, 0) 40%),
            linear-gradient(0deg, rgba(13, 14, 16, 0.75) 0%, rgba(13, 14, 16, 0) 40%);
    }


    .product-card-img img {
        transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .product-card:hover .product-card-img img {
        transform: scale(1.04);
    }

    .product-card-num {

        transform: translateY(0px);
        transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .product-card:hover .product-card-num {
        opacity: 1;
        transform: translateY(6px);
    }

    .product-card-desc {
        opacity: 0.6;
        transform: translateY(0px);
        transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .product-card:hover .product-card-desc {
        opacity: 1;
        transform: translateY(-6px);
    }



/*  product cards end   */

/* ── Tablet ── */
@media (max-width: 1100px) {
    :root {
        --spacing\/padding\/margin: 32px;
        --font\/headings\/h1\/text-size: 72px;
        --font\/headings\/h2\/text-size: 56px;
        --font\/headings\/h3\/text-size: 44px;
    }

    .hero-copy, .hero-sub-page-header {
        margin-top: 100px;
    }

    /*this is the sub-page hero h1 padding*/
    .hero-sub-page-hero {
        max-width: 90%;
        padding-top: 60px;


    }

    .intro-grid, .intro-grid-sub {
        grid-template-columns: 2fr 2fr 0fr 2fr;
    }

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

    .founder-card img {
        max-width: 40%;
        height: auto;
    }

    .intro-grid img {
        max-width: 100%;
        height: auto;
        /* aligns image to the right of the frame for tablet/mobile*/
        position: relative;
        float: right;
    }

    .quote-block img {
        max-width: 80%;
        height: auto;
    }

    .quote-block {
        grid-template-columns: 0fr 2fr 2fr;
        /* removes the left padding colum so the content floats to the left in tablet */
    }
}
.founder-grid {
    gap: 4%;
    padding-top: 5%;
    padding-bottom: 5%;
}

.role-description {
    font-size: var(--font\/copy\/body-sm\/text-size);
}

/* ── Mobile ── */
@media (max-width: 891px) {
    :root {
        --100: 4px;
        --200: 8px;
        --600: 24px;
        --900: 36px;
        --1200: 48px;
        --1600: 64px;
        --spacing\/padding\/margin: 24px;
        --spacing\/padding\/button: 32px;
        --font\/copy\/body-xs\/text-size: 14px;
        --font\/copy\/body-sm\/text-size: 14px;
        --font\/copy\/body\/text-size: 16px;
        --font\/headings\/h1\/text-size: 64px;
        --font\/headings\/h1\/letter-spacing: -1px;
        --font\/headings\/h2\/text-size: 56px;
        --font\/headings\/h2\/letter-spacing: -1px;
        --font\/headings\/h3\/text-size: 32px;
        --font\/headings\/h3\/letter-spacing: -1px;
        --font\/headings\/h5\/text-size: 28px;

        --font\/headings\/h6\/text-size: 20px;
        --neutral\/800: #555759;
        --border-radius\/sm: 16px;
    }

    /* Restore native cursor on touch devices */
    * {
        cursor: auto !important;
    }

    .cursor {
        display: none;
    }

    .hero {
        min-height: 708px;
        margin: 0 auto;
        /* Remove overflow:hidden so fixed overlay isn't clipped */
        overflow: hidden;
        border: 0px solid white;
        border-radius: 0px 0px 40px 40px;

    }

.hero-sub {
        margin: 0 auto;
        /* Remove overflow:hidden so fixed overlay isn't clipped */
        overflow: hidden;
        border: 0px solid white;
        border-radius: 0px 0px 40px 40px;

    }



    .hero-bg {
        background-image: url("imagery/image-home-hero-mobile.jpg");
        background-position: center;
    }

    .hero-bg-products {
        background-image: url("imagery/hero-bg-products.jpg");
        background-position: center;
    }

    /*this is the sub-page nav + header text*/
    .hero-sub-img {

        margin-left: 0px;
        margin-right: 0px;

    }

    /*
    .section {
        padding: var(--1800) var(--spacing\/padding\/margin);
    } */

    .nav {
        align-items: center;
        /* Sit above the overlay */
        position: relative;
        z-index: 300;
    }

    /* Fullscreen overlay */
    .nav-links {
        display: flex; /* always flex, never toggled to none */
        position: fixed;
        inset: 0;
        background: rgba(
            30,
            48,
            70,
            0.6
        ); /* your --surface/information at 60% opacity */
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        flex-direction: column;
        justify-content: center;
        padding: var(--spacing\/padding\/margin);
        z-index: 200;

        margin: 0;

        /* Clipped shut by default */
        clip-path: inset(0 0 100% 0);
        transition:
            clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1),
            visibility 0s linear 0.6s; /* delays hiding until after wipe completes */
    }

    .nav-links.is-open {
        clip-path: inset(0 0 0% 0);
        visibility: visible;
        transition:
            clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1),
            visibility 0s linear 0s; /* shows immediately on open */
    }

    /* i may not need this */
    .nav-left {
        position: relative;
        z-index: 300;
    }

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

    /* Show CTA inside overlay */
    .nav-links .nav-cta {
        display: block;
        margin-top: 32px;
    }

    /* Hide desktop pill */
    .nav-pill-desktop {
        display: none;
    }

    /* Big overlay link style */
    .nav-link {
        font-family: var(--font-style\/primary-family);
        font-size: clamp(48px, 12vw, 72px);
        font-weight: 300;
        letter-spacing: -1px;
        padding: 12px 0;
        width: 100%;
        text-align: left;
        border-bottom: none;
    }

    .nav-link.is-active {
        border-bottom: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 300;
    }

    .hero-copy, .hero-sub-page-header {
        margin-top: 96px;
        max-width: 330px;
    }

    .hero-bg-products, .hero-bg-membranes, .hero-bg-assemblies, .hero-bg-touch, .hero-bg-injections, .hero-bg-contact {

        /*removes border to hero on mobile*/
        margin-left: 0px;
        margin-right: 0px;
    }



    .hero-bg-products {

        background-image: url("imagery/img-bg-products-mobile.jpg");

    }


    .hero-bg-membranes {

        background-image: url("imagery/img-bg-membrane-switches-mobile.jpg");

    }


    .hero-bg-assemblies {
        background-image: url("imagery/img-bg-full-assemblies-mobile.jpg");

    }

    .hero-bg-touch {
        background-image: url("imagery/img-bg-touch-screens-mobile.jpg");

    }

    .hero-bg-injections {
        background-image: url("imagery/img-bg-injection-molding-mobile.jpg");

    }

    .hero-bg-contact {
        background-image: url("imagery/img-bg-contact-mobile.jpg");

    }


    .intro-grid, .intro-grid-sub  {
        gap: 0px;
        /* between text vertically*/

        grid-template-columns: 1fr;

    }

    .intro-grid img {
        max-width: 80%;
        height: auto;
    }

    .quote-block {
        margin: 48px 0 var(--900);
        grid-template-columns: 1fr;
    }

    .quote-block img {
        max-width: 50%;
        height: auto;
        /* aligns image to the right of the frame for tablet/mobile*/
        position: relative;
        float: right;
        /*moves image back down to compensate for margin-top negative above*/
        margin-top: 0;
    }

    .market-trigger {
        align-items: flex-start;
        gap: 8px;
    }

    .market-trigger .icon {
        display: none;
    }

    .market-item p {
        display: block;
        color: var(--foundations\/black);
    }

    /*turns market body copy white on mobile on dark sub pages*/
    .go-dark p {
        display: block;
        color: var(--foundations\/white);
    }
    .markets-wrap {
        display: grid;
        grid-template-columns: 1fr;
    }

    .markets-wrap img {
        max-width: 80%;
        max-height: 500px;

        height: auto;
        /* aligns image to the right of the frame for tablet/mobile*/
        position: relative;
        float: left;
        /*moves image back down to compensate for margin-top negative above*/
        margin-top: 0;
    }

    .founder-card {
        padding-bottom: 0px;
    }

    .founder-card img {
        max-width: 80%;
        height: auto;
    }
    .founder-card h5 {
        clear: both;
    }

    .founder-grid {
        gap: 4%;
        padding-top: 10%;
        padding-bottom: 30%;
    }

    /* this moves the market image to the bottom on mobile start */

    .market-grid-img {
        order: 2;
        margin-bottom: 10%;
    }

    .markets-wrap > div {
        order: 1;
    }

    /* this moves the market image to the bottom on mobile end */

    .Jim {
        float: right;
        margin-bottom: 24px;
    }

    .product-row img {
        width: 108px;
        height: 120px;
        border-radius: var(--border-radius\/sm);
    }

    .product-row h3 {
        font-size: var(--font\/headings\/h3\/text-size);
    }




    .product-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 10px 0;

        transition:
            opacity 200ms ease,
            transform 200ms ease;
        color: var(--foundations\/black);
    }



    .product-row.is-active {
        opacity: 1;
        transform: scale(1.0);

        color: var(--marine\/300);
    }

    .product-img-wrap {
        position: relative;
        width: 108px;
        height: 120px;
        flex-shrink: 0;
        overflow: hidden;

        border-radius: var(--border-radius\/md);
    }

    .product-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .product-row.is-active .product-img-wrap img {
        transform: scale(1.14);
    }

    .contact {
        background-position: center;
        background-size: 150%;
    }


    .contact-page
    {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        gap: 0%;

    }

    /*this stacks the footer content*/

    .footer-top {
        margin-top: 60px;
        margin-bottom: 60px;
        display: grid;
        grid-template-columns: 1fr;
    }

    /*this makes the footer image fill the frame*/
    .footer-images {
        grid-template-columns: 1fr;
    }
    .footer-links {
        padding: 16px 0;
    }

    .footer-links a {
        font-size: var(--font\/headings\/h6\/text-size);
        font-weight: 200;
        line-height: 140%;
    }

    .footer-top img {
        width: 80%;
    }
    .copyright {
        margin-top: var(--1600);
        font-size: 12px;
    }

    .product-cards {
        grid-template-columns: 1fr;
    }

    .product-card-num {
        position: absolute;
        top: 24px;
        left: 24px;
        font-size: var(--font\/copy\/body-md\/text-size);
        color: var(--foundations\/white);
        font-family: var(--font-style\/secondary-family);
        z-index: 2;

    }

    .product-card-desc {
        position: absolute;
        bottom: 0px;
        left: 0px;
        padding: 24px;
        margin: 0;
        font-size: var(--font\/copy\/body-xs\/text-size);
        line-height: 1.5;
        color: var(--foundations\/white);
        font-weight: 300;
        z-index: 2;

    }



    /*this hides the other two footer images, but can be used anywhere to hide on mobile*/

    .hide-on-mobile {
        display: none;
    }

}
