@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);
.nav__wrapper {
    border-radius: 0 0 var(--r-1) var(--r-1);
    padding: 0.5rem var(--p-1) 1.5rem var(--p-1);
    background: var(--c-bkg);
    position: absolute;
    z-index: 1;

    --weird-gap: 0.04rem;
  }

  nav ul {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .no-flexbox-gap nav ul > *:not(:last-child) {
    margin-right: 1rem;
}

  nav ul li {
    white-space: nowrap;
    font-family: Nunito, sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
  }

  .nav-edge-left {
    position: absolute;
    left: calc(-1 * var(--r-1) + var(--weird-gap));
    height: var(--r-1);
    width: var(--r-1);
    top: calc(-1 * var(--weird-gap));
    transform: scaleY(-1);
  }

  .nav-edge-right {
    position: absolute;
    right: calc(-1 * var(--r-1) + var(--weird-gap));
    height: var(--r-1);
    width: var(--r-1);
    top: calc(-1 * var(--weird-gap));
    transform: scaleX(-1) scaleY(-1);
  }

.nav-link {
  position: relative;
  transition: all 0.15s ease-out;
  color: black;
}
.nav-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--c-3);
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s cubic-bezier(1, 0.25, 0, 0.75) 0s;
  transition: all 0.5s cubic-bezier(1, 0.25, 0, 0.75) 0s;
}
.nav-link:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.hero__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    --offset: 8rem;
    margin-bottom: var(--offset);
    padding: 0 2rem;
    --weird-gap: 0.04rem;
    z-index: 1;
}

.hero__video-wrap {
    width: 100%;
    border-radius: var(--r-1);
    overflow: hidden;

}

.hero__video {
    border-radius: var(--r-1);
    background-color: var(--c-3);
    width: 100%;
    height: 32rem;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero__banner {
    background: var(--c-bkg);
    border-radius: var(--r-1) var(--r-1) 0 0;
    padding: var(--p-1);
    position: absolute;
    bottom: calc(-1 * var(--offset));
    left: 6rem;
}

.hero__banner h1 {
    width: 14ch;
    font-size: 4.2rem;
}

.banner-edge-left {
    position: absolute;
    left: calc(-1 * var(--r-1) + var(--weird-gap));
    height: var(--r-1);
    width: var(--r-1);
    bottom: calc(var(--offset) - var(--weird-gap));
}

.banner-edge-right {
    position: absolute;
    right: calc(-1 * var(--r-1) + var(--weird-gap));
    height: var(--r-1);
    width: var(--r-1);
    bottom: calc(var(--offset) - var(--weird-gap));
    transform: scaleX(-1);
}

.hero__info {
    position: absolute;
    top: 30%;
    right: 15%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.no-flexbox-gap .hero__info > *:not(:last-child) {
    margin-bottom: 1rem;
}

.hero__info .platform-list {
    display: flex;
    gap: 0.8rem;
}

.no-flexbox-gap .hero__info .platform-list > *:not(:last-child) {
    margin-right: 0.8rem;
}

.hero__info .platform-list svg {
    height: 1.8rem;
    width: 1.8rem;
}

.hero__info .platform-list svg path {
    fill: var(--c-2);
    opacity: 0.25;
}

.btn--hero {
    text-transform: uppercase;
    font-size: 1.5rem;
    background: var(--c-3);
    border-radius: 999px;
    padding: 1.9rem 2rem;
    line-height: 1;
    color: black;
}

.btn--hero:hover {
    background: var(--c-bkg);
}

/* ── intro animation ──────────────────────────────────── */
@keyframes hero-reveal {
    from { filter: blur(1.5rem); }
    to   { filter: blur(0);      }
}
.page--home article.blurb__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.blurb__wrapper section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    gap: 1.25rem;
}

.no-flexbox-gap .blurb__wrapper section > *:not(:last-child) {
    margin-bottom: 1.25rem;
}

.blurb__wrapper p {
    font-family: Nunito, sans-serif;
    font-size: max(1.1rem, 10pt);
    line-height: 1.65;
    color: var(--c-2);
    opacity: 0.85;
    margin: 0;
    position: relative;
    padding-left: 1.25rem;
    border-left: 3px solid transparent;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

.blurb__wrapper p:hover {
    opacity: 1;
    border-left-color: var(--c-3);
}

.blurb__wrapper p strong {
    color: var(--c-2);
    font-weight: 800;
}

.blurb__wrapper p em {
    font-style: normal;
    font-weight: 800;
    color: var(--c-3);
}

.blurb__visual {
    align-items: center;
    justify-content: center;
}

.blurb__float-stack {
    position: relative;
    width: 100%;
    height: 30rem;
}

.blurb__float-stack::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    background: radial-gradient(ellipse at center, rgba(31, 177, 215, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: blurb-pulse 4s ease-in-out infinite;
}

@keyframes blurb-pulse {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%       { transform: scale(1.1); opacity: 0.7; }
}

.blurb__float-card {
    position: absolute;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.08),
        0 20px 50px rgba(0, 0, 0, 0.16);
    transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.4s ease, opacity 0.4s ease;
}

.blurb__float-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

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

.blurb__float-card--2 {
    width: 52%;
    height: 72%;
    top: 14%;
    left: 2%;
    transform: rotate(-6deg) translateY(1rem);
    z-index: 1;
    opacity: 0.6;
}

.blurb__float-card--1 {
    width: 52%;
    height: 72%;
    top: 4%;
    right: 2%;
    transform: rotate(5deg) translateY(0.5rem);
    z-index: 2;
    opacity: 0.8;
}

.blurb__float-card--0 {
    width: 58%;
    height: 78%;
    top: 11%;
    left: 21%;
    transform: rotate(-1.5deg);
    z-index: 3;
    animation: blurb-float 5s ease-in-out infinite;
}

@keyframes blurb-float {
    0%, 100% { transform: rotate(-1.5deg) translateY(0);       }
    50%       { transform: rotate(-1.5deg) translateY(-0.7rem); }
}

.blurb__float-stack:hover .blurb__float-card--0 {
    animation: none;
    transform: rotate(0deg) translateY(-1rem) scale(1.03);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 32px 70px rgba(0, 0, 0, 0.22),
        0 0 0 3px rgba(31, 177, 215, 0.3);
    opacity: 1;
}

.blurb__float-stack:hover .blurb__float-card--1 {
    transform: rotate(10deg) translateX(1.5rem) translateY(-0.5rem);
    opacity: 1;
}

.blurb__float-stack:hover .blurb__float-card--2 {
    transform: rotate(-12deg) translateX(-1.5rem) translateY(0.5rem);
    opacity: 0.9;
}

@media screen and (max-width: 768px) {
    .hide-on-mobile {
        display: none;
    }

    .page--home article.blurb__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blurb__float-stack {
        height: 20rem;
    }
}
.showcase__wrapper {
    width: min(60rem, var(--viewportWidth));
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.showcase__list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* ── card ─────────────────────────────────────────────── */
.showcase__card {
    border-radius: var(--r-1);
    overflow: hidden;
    box-shadow:
        0 8px 24px rgba(0,0,0,0.1),
        0 24px 60px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase__card:hover {
    transform: translateY(-0.3rem);
    box-shadow:
        0 12px 32px rgba(0,0,0,0.14),
        0 32px 72px rgba(0,0,0,0.16);
}

/* ── hero ─────────────────────────────────────────────── */
.showcase__card-hero {
    position: relative;
    height: 22rem;
    overflow: hidden;
}

.showcase__card-hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.showcase__card:hover .showcase__card-hero > img {
    transform: scale(1.03);
}

.showcase__card-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 40%, transparent 55%, rgba(0,0,0,0.75) 100%);
}

/* ── top bar ──────────────────────────────────────────── */
.showcase__card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.showcase__card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    flex-shrink: 0;
    box-shadow:
        0 4px 14px rgba(0,0,0,0.3),
        0 0 0 2px rgba(255,255,255,0.15);
}

.showcase__card-identity {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.showcase__card-name {
    font-family: Bebas Neue;
    font-size: 2rem;
    color: white;
    margin: 0;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    width: auto;
}

.showcase__card-stores {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.showcase__store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.showcase__store-badge svg {
    width: 0.75rem;
    height: 0.75rem;
    flex-shrink: 0;
}

.showcase__store-badge:hover {
    background: var(--c-3);
    border-color: var(--c-3);
}

.showcase__card-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--c-3);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(31,177,215,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.showcase__card-cta svg {
    width: 0.85rem;
    height: 0.85rem;
    transition: transform 0.2s ease;
}

.showcase__card-cta:hover {
    transform: translate(0.1rem, -0.1rem);
    box-shadow: 0 8px 20px rgba(31,177,215,0.5);
}

.showcase__card-cta:hover svg {
    transform: translate(0.15rem, -0.15rem);
}

/* ── bottom bar ───────────────────────────────────────── */
.showcase__card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    z-index: 2;
}

.showcase__card-desc {
    font-family: Nunito, sans-serif;
    font-size: max(0.85rem, 9pt);
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.45;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.showcase__trailer-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.showcase__trailer-btn svg {
    width: 0.8rem;
    height: 0.8rem;
}

.showcase__trailer-btn:hover {
    background: rgba(255,255,255,0.22);
}

/* ── screenshots strip ────────────────────────────────── */
.showcase__screenshots {
    display: flex;
    gap: 0.75rem;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    padding: 1rem;
    background: var(--c-1);
}

.showcase__screenshots::-webkit-scrollbar { display: none; }
.showcase__screenshots.dragging { cursor: grabbing; }

.showcase__screenshot {
    flex-shrink: 0;
    cursor: zoom-in;
}

.showcase__screenshot img {
    height: 10rem;
    width: auto;
    border-radius: 0.75rem;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.25s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.showcase__screenshots:not(.dragging) .showcase__screenshot img:hover {
    transform: translateY(-0.3rem);
}
.glide {
    overflow-x: scroll;
}

.glide::-webkit-scrollbar {
    width: 1rem;
}

/* Track */
.glide::-webkit-scrollbar-track {
    background-color: var(--c-1);
    border-radius: 999px;
}

/* Handle */
.glide::-webkit-scrollbar-thumb {
    background-color: var(--c-3);
    border-radius: 999px;
    transition: .2s all;
}

/* Handle on hover */
.glide::-webkit-scrollbar-thumb:hover {
    background-color: var(--c-3);
}

.glide__slides {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    padding-bottom: 2rem;
}

.no-flexbox-gap .glide__slides > *:not(:last-child) {
    margin-right: 1rem;
}

.glide__slide img {
    max-width: 12rem;
}

.glide__slide img[src*='landscape'] {
    max-width: 37.8rem;
    /* height: 100%; */
    width: unset;
    aspect-ratio: 428 / 241;
}

.glide__slide img {
    border-radius: 2rem;
    /* pointer-events: none; */
    cursor:pointer;
}

.hires-details {
    display: flex;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 2rem;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.1s ease-in;
}

.hires-details img{
    max-height: 100%;
    max-width: 100%;
    width: auto;
}

.hires-details.hires-details--selected {
    opacity: 1;
    pointer-events: all;
    cursor:pointer;
}

.system__wrapper section {
    display: grid;
    grid-template-columns: 30rem auto;
}

.system__wrapper {
    display: flex;
    flex-direction: column;
}

.system__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.no-flexbox-gap .system__list > *:not(:last-child) {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.system__list li {
    aspect-ratio: 1;
    height: 9rem;
    width: 9rem;
    background-color: var(--c-1);
    border-radius: var(--r-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0.3rem solid transparent;
    transition: all 0.2s;
    cursor: pointer;
}

.system__list li:hover {
    border-color: var(--c-3);
}

.system__list li:hover img,
.system__list li:hover svg,
.system__list li:hover span {
    transform: scale(1.05);
}

.system__list li img {
    width: 4rem;
    transition: all 0.2s;
}

.system__list li svg {
    width: 4rem;
    height: 4rem;
    transition: all 0.2s;
}

.system__list li svg path {
    fill: #bbb;
}

.system__list li span {
    color: #bbb;
    transition: all 0.2s;
}

.system__list li.system--selected {
    background-color: var(--c-3);
}

.system__list li.system--selected svg path {
    fill: var(--c-bkg);
}

.system__list li.system--selected span {
    color: var(--c-bkg);
}

.system__zoom-wrapper {
    position: relative;
    background-color: var(--c-1);
    padding: var(--p-1);
    border-radius: var(--r-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

li.system--soon {
    opacity: 0.5;
    pointer-events: none;
}

li.system--soon::after {
    content: '(coming soon)';
    color: #bbb;
    font-size: smaller;
    font-weight: 700;
    text-transform: uppercase;
}

.zoom__image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.zoom__image--bkg {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
    transition: opacity 0.5s;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.zoom__image--visible {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .system__wrapper section {
        grid-template-columns: 20rem auto;
    }
}

/* Remove grey background from screenshots area */
.product-screenshots,
.product-screenshots .screenshot-frame,
.product-screenshots .screenshot-frame img {
    background: transparent;
}

/* Override any li background inside screenshots */
.product-screenshots li,
.showcase__wrapper li .product-screenshots {
    background: transparent;
    border: none;
    aspect-ratio: unset;
    height: auto;
    width: auto;
}

/* Fix hover brightness — likely from a filter on the parent <a> */
.showcase__wrapper li a:hover,
.showcase__wrapper li a:hover .product-screenshots,
.showcase__wrapper li a:hover .screenshot-frame,
.showcase__wrapper li a:hover .screenshot-frame img {
    filter: none;
    brightness: unset;
    opacity: 1;
}

/* Isolate screenshot hover to only the frame itself */
.screenshot-frame:hover {
    transform: scale(1.04);
}

.screenshot-frame:hover img {
    filter: none;
}

/* Reset transition on showcase a tag — prevents brightness flash */
.showcase__wrapper li a {
    transition: none;
}

/* Screenshot frame is a div not li — needs explicit reset */
.product-screenshots div.screenshot-frame {
    background: transparent;
    border: none;
    aspect-ratio: unset;
    height: auto;
    width: auto;
    border-radius: 0;
}
.pricing__content {
    display: grid;
    grid-template-columns: 0.75fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
}

.level__wrapper {
    display: grid;
    grid-template-rows: 3rem auto 2.5rem;
    gap: 1rem;
}

.level__wrapper--disabled {
    opacity: 0.25;
}

.level__wrapper header {
    text-align: center;
}

.level__wrapper header span {
    font-size: max(0.75rem, 8pt);
    color: var(--c-2);
    font-family: Nunito, sans-serif;
}

.level__wrapper header h2 {
    color: var(--c-2);
    display: inline-flex;
    flex-direction: column;
    align-items: end;
}

.level__content {
    border-radius: var(--r-1);
    background: var(--c-bkg);
    padding: 2rem 0;
    display: grid;
    grid-template-rows: 3rem auto;
}

.level__content ul {
    display: grid;
    grid-template-rows: repeat(11, 3rem);
    align-items: center;
}

.level__content li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    line-height: 1;
    font-size: 1.5rem;
}

.no-flexbox-gap .level__content li > *:not(:last-child) {
    margin-bottom: 0.25rem;
}

.level__content li svg {
    width: 1.5rem;
}

.level__content li span {
    font-size: max(0.75rem, 8pt);
}

.level__price-wrapper {
    text-align: center;
}

.level__price-wrapper h2 {
    display: inline-flex;
    flex-direction: column;
    align-items: end;
}

.level__price-wrapper span {
    font-size: max(0.75rem, 8pt);
    font-family: Nunito, sans-serif;
}

.level__wrapper .note {
    color: var(--c-bkg);
}

.level-wrapper--heading .level__content {
    background: transparent;
}

.level-wrapper--heading ul {
    justify-items: end;
    align-items: center;
}

.level-wrapper--heading ul li {
    color: var(--c-2);
    font-weight: 600;
    text-transform: uppercase;
    text-align: right;
    font-size: 1rem;
}

.level-wrapper--trial .level__content {
    background: #DBDBDB;
}

.level__wrapper--trial .note {
    color: gray;
}

.btn--level {
    text-align: center;
    background: var(--c-3);
    color: white;
    display: block;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.btn--level:hover {
    background: var(--c-bkg);
    color: var(--c-2);
}

.btn--disabled {
    background: var(--c-bkg);
    color: black;
    pointer-events: none;
    cursor: not-allowed;
}

@media screen and (max-width: 768px) {
    .level__wrapper--monthly, .level__wrapper--yearly {
        display: none;
    }

    .pricing__content {
        display: grid;
        grid-template-columns: 0.5fr 1fr 1fr;
        gap: 1rem;
    }
}
.btn--store {
    text-align: center;
    background: var(--c-3);
    padding: .5rem 1rem;
    color: white;
    display: block;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 1rem;
}

.download__content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
}

.platform__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--p-1);
    border-radius: var(--r-1);
    background-color: var(--c-bkg);
    gap: 1rem;
    border: 0.3rem solid transparent;
    transition: all 0.2s;
}

.no-flexbox-gap .platform__wrapper > *:not(:last-child) {
    margin-bottom: 1rem;
}

.platform__wrapper:hover {
    border-color: var(--c-3);
}

.platform__wrapper:hover .btn--store {
    background: var(--c-1);
}

.platform__wrapper svg {
    max-width: 100%;
    height: 9rem;
}

.platform__wrapper h2 {
    font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
    .download__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1rem;
    }
}
.reviews-wrapper {
    width: min(60rem, var(--viewportWidth));
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.review {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: var(--c-bkg);
    border-radius: var(--r-1);
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.review__header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-3);
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
}

.review__meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.review__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-2);
}

.review__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--c-2);
    opacity: 0.85;
    margin: 0;
}

.rating {
    border: none;
    display: flex;
}

.rating > label:before {
    margin: 0;
    font-size: 1em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}

.rating > .half:before {
    content: "\f089";
    position: absolute;
    color: var(--c-3);
}

.rating > label {
    color: var(--c-3);
}

@media screen and (max-width: 640px) {
    .reviews {
        grid-template-columns: 1fr;
    }

    .review {
        padding: 1.5rem;
    }

    .review__avatar,
    .review__avatar--placeholder {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .review__name {
        font-size: 1rem;
    }
}
.contact__wrapper {
    position: relative;
    width: min(60rem, var(--viewportWidth));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 2rem;
    gap: 1.5rem;
}

.contact__wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: rgba(31, 177, 215, 0.08);
    z-index: -1;
}

.contact__wrapper header {
    margin-bottom: 0;
}

.contact__wrapper h1 {
    text-align: left;
}

.contact__card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
    border-radius: calc(var(--r-1) * 1.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact__accent {
    position: relative;
    background: linear-gradient(160deg, var(--c-3) 0%, #0e8aad 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    overflow: hidden;
    color: white;
    text-align: center;
}

.contact__accent-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.15;
    mix-blend-mode: luminosity;
}

.contact__accent-glow {
    position: absolute;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    top: -3rem;
    right: -3rem;
    pointer-events: none;
    z-index: 1;
}

.contact__accent-glow::after {
    content: '';
    position: absolute;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    bottom: -8rem;
    left: -4rem;
}

.contact__accent-icon {
    width: 4rem;
    height: 4rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    animation: contact-float 4s ease-in-out infinite;
}

@keyframes contact-float {
    0%, 100% { transform: translateY(0);       }
    50%       { transform: translateY(-0.5rem); }
}

.contact__accent-text {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.contact__form-side {
    background: var(--c-bkg);
    padding: 2rem 2.25rem;
    display: flex;
    flex-direction: column;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    height: 100%;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form__label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.55;
    color: var(--c-2);
}

.contact__wrapper input,
.contact__wrapper textarea {
    background: var(--c-1);
    border: 2px solid transparent;
    border-radius: max(0.75rem, 12pt);
    padding: 0.65em 1em;
    font-size: max(1rem, 14pt);
    color: var(--c-2);
    transition: border-color 0.2s ease, background 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact__wrapper input::placeholder,
.contact__wrapper textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.contact__wrapper input:focus,
.contact__wrapper textarea:focus {
    outline: none;
    border-color: var(--c-3);
    background: var(--c-bkg);
}

.contact__wrapper textarea {
    min-height: 5em;
    resize: vertical;
    flex: 1;
}

.form__footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.btn--contact {
    text-align: center;
    background: var(--c-3);
    color: white;
    border-radius: 999px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: max(0.95rem, 13pt);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75em 1.75em;
    transition: 0.2s all;
    gap: 0.5rem;
    flex-shrink: 0;
    box-sizing: border-box;
}

.btn--contact svg {
    height: 1em;
    stroke: white;
    transition: transform 0.2s ease;
}

.btn--contact:hover {
    background: var(--c-2);
    transform: translateY(-0.15rem);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn--contact:hover svg {
    transform: translate(0.2rem, -0.2rem);
}

.btn--contact:disabled {
    opacity: 0.4;
    pointer-events: none;
}

.form-alerts {
    flex: 1;
}

.form-alert {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5em 1em;
    border-radius: 999px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.25s all;
}

#emailError {
    color: #c0392b;
    margin-top: 0.25rem;
    display: block;
}

#emailError.form-alert--visible {
    max-height: 3rem;
    opacity: 1;
}

.alert--failure {
    background: #fdecea;
    color: #c0392b;
}

.alert--success {
    background: #e8f8ee;
    color: #1e7e44;
}

.alert--loading {
    background: var(--c-1);
    color: var(--c-2);
}

.form-alert--visible {
    max-height: 3rem;
    opacity: 1;
}

.form-alert a {
    color: inherit;
    text-decoration: underline;
}

@media screen and (max-width: 700px) {
    .contact__card {
        grid-template-columns: 1fr;
    }

    .contact__accent {
        flex-direction: row;
        padding: 1.25rem 1.75rem;
        justify-content: flex-start;
        gap: 1rem;
    }

    .contact__accent-icon {
        width: 2.5rem;
        height: 2.5rem;
        flex-shrink: 0;
        animation: none;
    }

    .contact__accent-text {
        text-align: left;
        font-size: 0.85rem;
    }

    .contact__form-side {
        padding: 1.75rem;
    }

    .form__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--c-bkg);
    gap: 2.5rem;
    background: #0a0a0a;
    border-top: 3px solid var(--c-3);
    width: var(--viewportWidth);
    padding: 4rem 0 6rem;
}

footer section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: min(60rem, var(--viewportWidth));
    padding: 0 2rem;
}

footer section:first-child {
    order: 2;
    gap: 0.5rem;
}

footer section:last-child {
    order: 1;
    width: min(60rem, var(--viewportWidth));
}

footer h3 a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-3);
    transition: 0.2s all;
}

footer h3 a:hover {
    color: var(--c-1);
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    row-gap: 0.85rem;
}

footer li {
    line-height: 1;
    font-size: 0.95rem;
}

footer li.menu-item {
    opacity: 0.55;
}

footer li svg {
    max-height: 1.5rem;
    padding: 0.3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    box-sizing: content-box;
    transition: 0.2s all;
}

footer li a {
    display: flex;
    align-items: center;
    color: var(--c-bkg);
    opacity: 0.85;
    gap: 0.6rem;
    transition: 0.2s all;
}

footer li a:hover {
    color: var(--c-3);
    opacity: 1;
    transform: translateX(0.2rem);
}

footer li a:hover svg {
    stroke: var(--c-3);
    background: rgba(31, 177, 215, 0.12);
}

.copywrite {
    opacity: 0.7;
}

.credit, .build {
    opacity: 0.45;
    font-size: 0.75rem;
}

.credit a {
    color: var(--c-1);
}

.credit a:hover {
    text-decoration: underline;
}
.screenshot-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.screenshot-lightbox.active {
    display: flex;
}

.screenshot-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}
html{-webkit-text-size-adjust:100%;line-height:1.15;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;margin:0}hr{color:inherit;height:0}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}body{font-family:inherit;line-height:inherit}*,:after,:before{border:0 solid;box-sizing:border-box}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#cbd5e0;opacity:1}input::placeholder,textarea::placeholder{color:#cbd5e0;opacity:1}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{color:inherit;line-height:inherit;padding:0}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}*,:after,:before{--tw-border-opacity:1;border-color:rgba(237,242,247,var(--tw-border-opacity))}html{color:#000;font-family:Nunito,sans-serif;font-size:2vmin;scroll-behavior:smooth}:root{--r-1:2rem;--p-1:1.5rem;--c-bkg:#fff;--c-1:#ececec;--c-2:#000;--c-3:#40cbf2;--viewportWidth:calc(100vw - var(--scrollbarWidth))}@keyframes pageload{0%{opacity:0}to{opacity:1}}body{animation:pageload 1.5s 1}a{color:var(--c-3)}.site-logo{border-radius:1rem;height:5rem;transform:rotate(0deg) translateY(1.2rem);transition:all .2s;width:5rem;z-index:2}.site-logo:hover{transform:rotate(4deg) translateY(1.2rem) scale(1.1)}.site-header{align-items:baseline;display:flex;gap:1rem;justify-content:center}.no-flexbox-gap .site-header>:not(:last-child){margin-right:1rem}.site-title{font-family:Bebas Neue;font-size:3rem;font-style:normal;font-weight:400;letter-spacing:.24em;line-height:1;margin:3rem 0 0;text-transform:uppercase;width:auto}#page,.page-content{align-items:center;display:flex;flex-direction:column}.btn{cursor:pointer;font-family:Nunito,sans-serif;transition:all .2s}.btn:hover,a:hover{text-decoration:none}article{display:flex;flex-direction:column;gap:1rem;padding:2rem;width:min(60rem,var(--viewportWidth))}.no-flexbox-gap article>:not(:last-child){margin-bottom:1rem}article>header{display:flex;flex-direction:column;gap:2rem}.no-flexbox-gap article>header>:not(:last-child),article>header{margin-bottom:2rem}article>header>aside{font-size:max(1rem,10pt);max-width:60ch}.inset{align-items:center;background:var(--c-1);display:flex;flex-direction:column;padding:4rem 0;position:relative;width:var(--viewportWidth)}.inset:before{border-radius:0 0 var(--r-1) var(--r-1);top:0}.inset:after,.inset:before{background:var(--c-bkg);content:"";height:var(--r-1);left:0;position:absolute;width:100%}.inset:after{border-radius:var(--r-1) var(--r-1) 0 0;bottom:0}h1{font-size:3.5rem;line-height:.77;padding-top:.75rem;width:17ch}h1,h2{color:var(--c-2);font-family:Bebas Neue}h2{font-size:3rem;line-height:.85}.blurb__wrapper{background:var(--c-bkg);border-radius:var(--radius)}
code[class*=language-],pre[class*=language-]{color:#c5c8c6;direction:ltr;font-family:Inconsolata,Monaco,Consolas,Courier New,Courier,monospace;-webkit-hyphens:none;hyphens:none;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;text-align:left;text-shadow:0 1px rgba(0,0,0,.3);white-space:pre;word-break:normal;word-spacing:normal}pre[class*=language-]{border-radius:.3em;margin:.5em 0;overflow:auto;padding:1em}:not(pre)>code[class*=language-],pre[class*=language-]{background:#1d1f21}:not(pre)>code[class*=language-]{border-radius:.3em;padding:.1em}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#7c7c7c}.token.punctuation{color:#c5c8c6}.namespace{opacity:.7}.token.keyword,.token.property,.token.tag{color:#96cbfe}.token.class-name{color:#ffffb6;text-decoration:underline}.token.boolean,.token.constant{color:#9c9}.token.deleted,.token.symbol{color:#f92672}.token.number{color:#ff73fd}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#a8ff60}.token.variable{color:#c6c5fe}.token.operator{color:#ededed}.token.entity{color:#ffffb6;cursor:help}.token.url{color:#96cbfe}.language-css .token.string,.style .token.string{color:#87c38a}.token.atrule,.token.attr-value{color:#f9ee98}.token.function{color:#dad085}.token.regex{color:#e9c062}.token.important{color:#fd971f}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}
