@font-face {
    font-family: "Source Serif 4";
    src: url("../fonts/source-serif-4-regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Source Serif 4";
    src: url("../fonts/source-serif-4-semibold.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

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

:root {
    --header-height: 74px;
    --site-hero-height: clamp(610px, 72vh, 700px);
    --site-hero-content-offset: 54px;
    --site-hero-bottom-space: 54px;
    --mythborne-serif: "Source Serif 4", Georgia, serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1.5rem);
    background: var(--paper);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background-color: var(--paper);
    background-image:
        radial-gradient(circle at 82% 5%, var(--page-glow) 0, transparent 34rem),
        linear-gradient(145deg, transparent 0 48%, var(--page-sheen) 100%);
    background-attachment: fixed;
    color: var(--ink);
    font-family: Aptos, "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 4px;
}

::selection {
    background: var(--brand);
    color: #ffffff;
}

.wrap {
    width: min(calc(100% - 3rem), 76rem);
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.65rem 0.9rem;
    background: var(--ink);
    color: var(--paper);
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: absolute;
    z-index: 100;
    height: var(--header-height);
    inset: 0 0 auto;
    border-bottom: 1px solid var(--header-line);
    background: var(--header-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-header__inner {
    display: grid;
    width: min(1420px, calc(100% - 56px));
    height: 100%;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.brand {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 0.65rem;
    color: var(--header-ink);
    text-decoration: none;
}

.brand__mark {
    width: 2.15rem;
    height: 2.15rem;
}

.brand__name {
    font-size: 1.05rem;
    font-weight: 790;
    letter-spacing: 0.075em;
}

.brand--header {
    width: 215px;
    height: 100%;
    justify-self: start;
}

.brand__wordmark {
    width: 208px;
    height: auto;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.42));
}

.brand__symbol {
    display: none;
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.42));
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.site-nav a {
    position: relative;
    color: color-mix(in srgb, var(--header-ink) 72%, transparent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    background: var(--brand);
    content: "";
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--header-ink);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.site-header__actions .button {
    width: 154px;
    min-width: 154px;
    min-height: 40px;
    padding: 9px 15px;
    font-size: 10px;
}

.theme-toggle {
    display: grid;
    position: relative;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--header-ink) 24%, transparent);
    border-radius: 0;
    background: transparent;
    color: var(--header-ink);
    cursor: pointer;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.theme-toggle:hover {
    border-color: color-mix(in srgb, var(--header-ink) 48%, transparent);
    background: color-mix(in srgb, var(--header-ink) 9%, transparent);
}

.theme-toggle span {
    grid-area: 1 / 1;
    line-height: 1;
    transition: opacity 160ms ease, transform 160ms ease;
}

.theme-toggle__moon {
    opacity: 0;
    transform: rotate(-45deg) scale(0.6);
}

:root[data-theme="dark"] .theme-toggle__sun {
    opacity: 0;
    transform: rotate(45deg) scale(0.6);
}

:root[data-theme="dark"] .theme-toggle__moon {
    opacity: 1;
    transform: none;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme]) .theme-toggle__sun {
        opacity: 0;
        transform: rotate(45deg) scale(0.6);
    }

    :root:not([data-theme]) .theme-toggle__moon {
        opacity: 1;
        transform: none;
    }
}

.mobile-menu {
    display: none;
}

.button {
    display: inline-flex;
    min-height: 2.85rem;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid transparent;
    background: transparent;
    color: inherit;
    font-size: 0.8rem;
    font-weight: 740;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--header {
    min-height: 2.55rem;
    background: var(--ink);
    color: var(--paper);
}

.button--header:hover,
.button--primary:hover {
    background: var(--brand-bright);
    color: #ffffff;
}

.button--primary {
    background: var(--brand);
    color: #ffffff;
}

.button--mythborne {
    border-color: #d3b474;
    background: linear-gradient(135deg, #e0c17e, #b88d4d);
    color: #11100c;
    box-shadow: 0 12px 30px rgba(140, 99, 44, 0.18);
}

.button--mythborne:hover {
    background: linear-gradient(135deg, #ebd397, #c99d59);
    box-shadow: 0 16px 36px rgba(140, 99, 44, 0.3);
}

.product-button__icon {
    width: 1.6rem;
    height: 1.6rem;
    flex: 0 0 auto;
    border-radius: 0.2rem;
}

.button--jobtracker {
    background: var(--jobtracker);
    color: #101526;
}

.button--jobtracker:hover {
    background: var(--jobtracker-bright);
}

.button--discord {
    border-color: rgba(255, 255, 255, 0.2);
    background: #5865f2;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(50, 58, 168, 0.24);
}

.button--discord:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: #6571f5;
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(50, 58, 168, 0.34);
}

.discord-button {
    width: 8.625rem;
    min-width: 8rem;
    flex: 0 0 auto;
    gap: 0.75rem;
    padding-inline: 1.1rem;
    white-space: nowrap;
}

.discord-button--header {
    min-height: 2.55rem;
}

.discord-mark {
    width: 1.5rem;
    height: 1.125rem;
    flex: 0 0 auto;
}

.button--light {
    border-color: rgba(255, 255, 255, 0.35);
    background: var(--on-dark);
    color: var(--navy);
}

.button--light:hover {
    border-color: #ffffff;
    background: #ffffff;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding-block: 0.4rem;
    border-bottom: 1px solid var(--line-strong);
    font-size: 0.82rem;
    font-weight: 730;
    letter-spacing: 0.035em;
    text-decoration: none;
    transition: gap 180ms ease, border-color 180ms ease;
}

.text-link:hover {
    gap: 1.1rem;
    border-color: var(--brand);
}

.eyebrow,
.site-footer__label {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 760;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.site-hero {
    display: grid;
    position: relative;
    min-height: var(--site-hero-height);
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--header-line);
    background: #060a14;
    color: #f6f4ef;
}

.site-hero__inner {
    display: flex;
    position: relative;
    z-index: 2;
    min-height: inherit;
    align-items: flex-start;
    padding-top: calc(var(--header-height) + var(--site-hero-content-offset));
    padding-bottom: var(--site-hero-bottom-space);
}

.site-hero__copy {
    position: relative;
    z-index: 2;
}

.site-hero__media {
    position: absolute;
    z-index: 0;
    inset: 0;
}

.site-hero__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 10, 20, 0.98) 0%, rgba(6, 10, 20, 0.92) 39%, rgba(6, 10, 20, 0.45) 67%, rgba(6, 10, 20, 0.08) 100%);
    content: "";
}

.site-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.site-hero__copy--home {
    max-width: 48rem;
}

.site-hero--home h1 {
    max-width: 17ch;
    margin: 0 0 1.5rem;
    font-size: clamp(2.65rem, 4.2vw, 4rem);
    font-weight: 640;
    letter-spacing: -0.052em;
    line-height: 1.02;
}

.site-hero__copy--home > p {
    max-width: 42rem;
    margin: 0;
    color: rgba(246, 244, 239, 0.72);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.55;
}

.site-hero--home .text-link {
    border-color: rgba(255, 255, 255, 0.38);
    color: #ffffff;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.75rem;
    margin-top: 2rem;
}

.product-overview {
    padding-block: 0;
}

.product-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5rem);
    padding-block: clamp(3.5rem, 7vw, 5.5rem);
    border-top: 1px solid var(--line);
    scroll-margin-top: 5rem;
}

.product-summary:last-child {
    border-bottom: 1px solid var(--line);
}

.product-summary__visual {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line);
    background: var(--navy);
    box-shadow: var(--shadow);
}

.product-summary__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.product-summary__visual:hover img {
    transform: scale(1.018);
}

.product-summary--mythborne .product-summary__visual img {
    object-position: center;
}

.product-summary--jobtracker .product-summary__visual img {
    object-position: center;
    object-fit: contain;
}

.product-summary--jobtracker .product-summary__visual {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.product-summary__label {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 760;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.product-summary__accent {
    width: 1.8rem;
    height: 2px;
    background: var(--brand);
}

.product-summary--mythborne .product-summary__accent {
    background: var(--mythborne);
}

.product-summary--jobtracker .product-summary__accent {
    background: var(--jobtracker);
}

.product-summary h3 {
    margin: 0.85rem 0 0.15rem;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 670;
    letter-spacing: -0.05em;
    line-height: 1;
}

.product-summary__tagline {
    margin: 0 0 1.2rem;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    font-style: italic;
}

.product-summary__copy > p:not(.product-summary__tagline, .product-summary__platforms) {
    max-width: 36rem;
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.02rem;
}

.product-summary__platforms {
    margin: 1.3rem 0 0;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 730;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-summary__platforms span {
    padding-inline: 0.4rem;
    color: var(--line-strong);
}

.product-summary__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    margin-top: 1.8rem;
}

.product-summary__button {
    width: 13.75rem;
}

.home-about {
    display: grid;
    grid-template-columns: minmax(0, 0.52fr) minmax(18rem, 0.48fr);
    gap: clamp(3rem, 8vw, 8rem);
    padding-block: clamp(3.75rem, 7vw, 5.75rem);
}

.home-about .eyebrow {
    color: var(--brand);
}

.home-about h2 {
    max-width: 20ch;
    margin: 1rem 0 0;
    font-size: clamp(2.2rem, 4.1vw, 3.75rem);
    font-weight: 640;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.home-about__copy {
    align-self: end;
}

.home-about__copy p {
    margin: 0 0 1.5rem;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.home-community {
    background: var(--navy);
    color: var(--on-dark);
}

.home-community__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 3rem;
    padding-block: clamp(3.5rem, 6vw, 4.75rem);
}

.home-community .eyebrow {
    color: var(--brand-bright);
}

.home-community h2 {
    max-width: 32ch;
    margin: 1rem 0 0;
    font-size: clamp(1.75rem, 2.9vw, 2.6rem);
    font-weight: 630;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.site-footer {
    padding-block: clamp(3.75rem, 7vw, 5.5rem) 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: #070b1e;
    color: var(--on-dark);
}

.site-footer > .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4rem;
}

.brand--footer {
    color: var(--on-dark);
}

.site-footer__lead > p {
    max-width: 23rem;
    margin: 1.25rem 0 0;
    color: var(--on-dark-soft);
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(8rem, 1fr));
    gap: clamp(2rem, 6vw, 6rem);
}

.site-footer__links > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.site-footer__label {
    margin-bottom: 0.5rem;
    color: var(--brand-bright);
}

.site-footer__links a {
    color: var(--on-dark-soft);
    font-size: 0.86rem;
    text-decoration: none;
}

.site-footer__links a:hover {
    color: var(--on-dark);
}

.site-footer__base {
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    color: #838a9a;
    font-size: 0.7rem;
}

.site-footer__base p {
    margin: 0;
}

.page-intro {
    min-height: 65vh;
    padding-block: clamp(6rem, 12vw, 10rem);
}

.page-intro .eyebrow {
    color: var(--brand);
}

.page-intro h1 {
    max-width: 14ch;
    margin: 1rem 0 1.4rem;
    font-size: clamp(2.65rem, 5vw, 4.75rem);
    font-weight: 640;
    letter-spacing: -0.055em;
    line-height: 1;
}

.page-intro .lede {
    max-width: 42rem;
    margin: 0 0 2rem;
    color: var(--ink-soft);
    font-size: 1.15rem;
}

.product-page {
    overflow: clip;
}

.product-page .site-hero {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.site-hero__copy--product {
    max-width: 42rem;
}

.product-page .site-hero__media::after {
    background:
        linear-gradient(0deg, rgba(6, 10, 20, 0.46) 0%, transparent 42%),
        linear-gradient(90deg, rgba(6, 10, 20, 0.98) 0%, rgba(6, 10, 20, 0.9) 40%, rgba(6, 10, 20, 0.38) 69%, rgba(6, 10, 20, 0.12) 100%);
}

.site-hero--mythborne .site-hero__media img {
    object-position: 50% 55%;
}

.site-hero--jobtracker .site-hero__media img {
    object-position: center;
}

.product-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    color: var(--on-dark-soft);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-decoration: none;
}

.product-detail-back:hover {
    color: var(--on-dark);
}

.product-page .site-hero .eyebrow {
    color: var(--brand-bright);
}

.site-hero--mythborne .eyebrow {
    color: #dfbd79;
}

.site-hero--jobtracker .eyebrow {
    color: var(--jobtracker-bright);
}

.mythborne-wordmark {
    width: min(100%, 15rem);
    height: auto;
    margin: 0.55rem 0 0.75rem;
}

.product-page .site-hero h1 {
    max-width: 13ch;
    margin: 0 0 0.85rem;
    font-size: clamp(2.65rem, 4.2vw, 4rem);
    font-weight: 640;
    letter-spacing: -0.055em;
    line-height: 1;
}

.product-page .site-hero--mythborne h1 {
    max-width: 17ch;
    font-family: var(--mythborne-serif);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 0.98;
}

.product-detail-hero__lede {
    max-width: 39rem;
    margin: 0;
    color: rgba(246, 244, 239, 0.7);
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    line-height: 1.55;
}

.product-detail-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.1rem;
}

.product-detail__primary {
    width: 13.75rem;
}

.product-detail-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.product-detail-hero__meta li {
    padding-inline: 0.8rem;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--on-dark-soft);
    font-size: 0.7rem;
    font-weight: 730;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-detail-hero__meta li:first-child {
    padding-left: 0;
    border-left: 0;
}

.product-introduction {
    display: grid;
    grid-template-columns: minmax(0, 0.52fr) minmax(18rem, 0.48fr);
    gap: clamp(3rem, 8vw, 8rem);
    padding-block: clamp(4.5rem, 8vw, 7rem);
    border-bottom: 1px solid var(--line);
}

.product-introduction .eyebrow,
.product-feature .eyebrow,
.product-workflow .eyebrow {
    color: var(--brand);
}

.product-page--mythborne .product-introduction .eyebrow,
.product-page--mythborne .product-feature .eyebrow {
    color: var(--mythborne);
}

.product-page--jobtracker .product-introduction .eyebrow,
.product-page--jobtracker .product-workflow .eyebrow {
    color: var(--jobtracker);
}

.product-introduction h2,
.product-section-heading h2 {
    max-width: 19ch;
    margin: 1rem 0 0;
    font-size: clamp(2.2rem, 4vw, 3.65rem);
    font-weight: 640;
    letter-spacing: -0.05em;
    line-height: 1.04;
}

.product-introduction__body {
    align-self: end;
}

.product-introduction__body p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.product-introduction__body p + p {
    margin-top: 1.2rem;
}

.product-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
    padding-block: clamp(4rem, 7vw, 6rem);
    border-bottom: 1px solid var(--line);
}

.product-feature--reverse {
    grid-template-columns: minmax(18rem, 0.88fr) minmax(0, 1.12fr);
}

.product-feature--reverse .product-feature__figure {
    grid-column: 2;
    grid-row: 1;
}

.product-feature--reverse .product-feature__copy {
    grid-column: 1;
    grid-row: 1;
}

.product-feature__figure {
    margin: 0;
}

.product-feature__figure img {
    width: 100%;
    height: auto;
    border: 1px solid var(--line);
    background: var(--navy);
    box-shadow: var(--shadow);
}

.product-feature__figure figcaption {
    margin-top: 0.85rem;
    color: var(--ink-soft);
    font-size: 0.76rem;
}

.product-feature__copy h2 {
    max-width: 14ch;
    margin: 1rem 0 1.35rem;
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    font-weight: 640;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.product-page--mythborne .product-feature__copy h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.product-feature__copy > p:last-child {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.03rem;
}

.product-workflow {
    padding-block: clamp(4.5rem, 8vw, 7rem);
    border-bottom: 1px solid var(--line);
}

.product-section-heading {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    align-items: end;
    gap: 3rem;
}

.product-section-heading h2 {
    grid-column: 2;
    margin: 0;
}

.product-workflow__list {
    padding: 0;
    margin: clamp(3.5rem, 7vw, 5.5rem) 0 0;
    border-bottom: 1px solid var(--line);
    list-style: none;
}

.product-workflow__list li {
    display: grid;
    grid-template-columns: 2rem minmax(12rem, 0.38fr) minmax(0, 0.62fr);
    align-items: baseline;
    gap: clamp(1.25rem, 3vw, 3rem);
    padding-block: 1.5rem;
    border-top: 1px solid var(--line);
}

.product-workflow__marker {
    width: 1.25rem;
    height: 2px;
    align-self: center;
    background: var(--jobtracker);
}

.product-workflow__list h3,
.product-audience__groups h3 {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 680;
    letter-spacing: -0.02em;
}

.product-workflow__list p {
    margin: 0;
    color: var(--ink-soft);
}

.product-audience {
    background: var(--navy);
    color: var(--on-dark);
}

.product-audience__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.52fr) minmax(18rem, 0.48fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
    padding-block: clamp(4.5rem, 8vw, 6.5rem);
}

.product-audience .eyebrow {
    color: var(--jobtracker-bright);
}

.product-audience h2 {
    max-width: 18ch;
    margin: 1rem 0 0;
    font-size: clamp(2.2rem, 4vw, 3.65rem);
    font-weight: 630;
    letter-spacing: -0.05em;
    line-height: 1.04;
}

.product-audience__groups {
    display: grid;
    gap: 2rem;
}

.product-audience__groups > div {
    padding-left: 1.5rem;
    border-left: 2px solid var(--jobtracker);
}

.product-audience__groups p {
    margin: 0.65rem 0 0;
    color: var(--on-dark-soft);
}

.product-final-cta {
    background: #060a14;
    color: var(--on-dark);
}

.product-final-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 3rem;
    padding-block: clamp(4rem, 7vw, 5.5rem);
}

.product-final-cta .eyebrow {
    color: var(--brand-bright);
}

.product-page--mythborne .product-final-cta .eyebrow {
    color: #dfbd79;
}

.product-page--jobtracker .product-final-cta .eyebrow {
    color: var(--jobtracker-bright);
}

.product-final-cta h2 {
    margin: 0.85rem 0 0;
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    font-weight: 630;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.product-final-cta p:last-child {
    margin: 1rem 0 0;
    color: var(--on-dark-soft);
}

.site-hero--about {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 82% 22%, rgba(0, 95, 234, 0.2), transparent 28rem),
        linear-gradient(145deg, #060a14, #0a102a 68%, #0d1832);
}

.about-hero__layout {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.45fr);
    align-items: start;
    gap: clamp(3rem, 8vw, 8rem);
}

.site-hero--about .eyebrow {
    color: var(--brand-bright);
}

.site-hero--about h1 {
    max-width: 15ch;
    margin: 0.75rem 0 1.1rem;
    font-size: clamp(2.8rem, 5.3vw, 5rem);
    font-weight: 630;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.about-hero__copy > p:last-child {
    max-width: 44rem;
    margin: 0;
    color: rgba(246, 244, 239, 0.7);
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    line-height: 1.55;
}

.about-hero__facts {
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-hero__facts > div {
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    gap: 1.25rem;
    padding-block: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-hero__facts dt {
    color: var(--brand-bright);
    font-size: 0.66rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-hero__facts dd {
    margin: 0;
    color: var(--on-dark);
    font-size: 0.88rem;
    font-weight: 620;
}

.about-origin {
    display: grid;
    grid-template-columns: minmax(0, 0.46fr) minmax(20rem, 0.54fr);
    gap: clamp(3rem, 8vw, 8rem);
    padding-block: clamp(4.5rem, 8vw, 7rem);
}

.about-origin .eyebrow,
.about-principles .eyebrow,
.about-section-heading .eyebrow {
    color: var(--brand);
}

.about-origin h2,
.about-section-heading h2 {
    max-width: 18ch;
    margin: 1rem 0 0;
    font-size: clamp(2.2rem, 4vw, 3.65rem);
    font-weight: 640;
    letter-spacing: -0.05em;
    line-height: 1.04;
}

.about-origin__story p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.04rem;
}

.about-origin__story p + p {
    margin-top: 1.3rem;
}

.about-principles {
    display: grid;
    grid-template-columns: minmax(12rem, 0.8fr) repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-principles > div {
    padding: clamp(2rem, 4vw, 3rem);
    border-left: 1px solid var(--line);
}

.about-principles > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.about-principles__heading h2 {
    margin: 0.8rem 0 0;
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 640;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.about-principles h3 {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 690;
}

.about-principles > div > p:last-child {
    margin: 0.75rem 0 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.about-skills {
    padding-block: clamp(5rem, 9vw, 8rem);
    background: color-mix(in srgb, var(--paper-muted) 72%, transparent);
}

.about-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.58fr) minmax(18rem, 0.42fr);
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
}

.about-section-heading > p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.04rem;
}

.technology-cloud {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 0;
    margin: clamp(3.5rem, 6vw, 5rem) 0 0;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    list-style: none;
}

.technology-cloud li {
    display: flex;
    min-height: 5.25rem;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.technology-cloud img {
    width: 1.65rem;
    height: 1.65rem;
    flex: 0 0 auto;
    filter: var(--technology-icon-filter);
    opacity: 0.84;
}

.technology-cloud__monogram {
    display: grid;
    width: 1.65rem;
    height: 1.65rem;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--ink);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 780;
    line-height: 1;
}

.technology-cloud li > span:last-child {
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 730;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.skill-groups {
    margin-top: clamp(4rem, 7vw, 6rem);
    border-bottom: 1px solid var(--line);
}

.skill-groups > section {
    display: grid;
    grid-template-columns: minmax(15rem, 0.34fr) minmax(0, 0.41fr) minmax(15rem, 0.25fr);
    align-items: start;
    gap: clamp(2rem, 5vw, 5rem);
    padding-block: 2rem;
    border-top: 1px solid var(--line);
}

.skill-groups__label {
    margin: 0 0 0.6rem;
    color: var(--brand);
    font-size: 0.66rem;
    font-weight: 750;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.skill-groups h3 {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 670;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.skill-groups > section > p {
    margin: 0;
    color: var(--ink-soft);
}

.skill-groups__stack {
    font-size: 0.68rem;
    font-weight: 720;
    letter-spacing: 0.065em;
    line-height: 1.8;
    text-transform: uppercase;
}

.skill-groups__stack span {
    padding-inline: 0.25rem;
    color: var(--line-strong);
}

.about-education {
    padding-block: clamp(5rem, 9vw, 8rem);
}

.qualification-list {
    padding: 0;
    margin: clamp(3.5rem, 6vw, 5rem) 0 0;
    border-bottom: 1px solid var(--line);
    list-style: none;
}

.qualification-list li {
    display: grid;
    grid-template-columns: 9rem minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 2rem;
    padding-block: 1.6rem;
    border-top: 1px solid var(--line);
}

.qualification-list__year,
.qualification-list li > span:last-child {
    color: var(--ink-soft);
    font-size: 0.68rem;
    font-weight: 730;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.qualification-list h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 660;
    letter-spacing: -0.02em;
}

.about-practical {
    position: relative;
    background: var(--navy);
    color: var(--on-dark);
}

.about-practical::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 4%, rgba(83, 146, 244, 0.7) 50%, transparent 96%);
    content: "";
}

.about-practical__inner {
    padding-block: clamp(4.5rem, 8vw, 7rem);
}

.about-practical .eyebrow {
    color: var(--brand-bright);
}

.about-practical h2 {
    max-width: 18ch;
    margin: 1rem 0 1.5rem;
    font-size: clamp(2.25rem, 4.5vw, 4rem);
    font-weight: 630;
    letter-spacing: -0.05em;
    line-height: 1.03;
}

.about-practical__inner > p:last-child {
    max-width: 48rem;
    margin: 0;
    color: var(--on-dark-soft);
    font-size: 1.05rem;
}

.legal-page {
    min-height: 100vh;
}

.site-hero--legal {
    position: relative;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 5rem 5rem,
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 5rem 5rem,
        radial-gradient(circle at 78% 20%, rgba(0, 95, 234, 0.22), transparent 28rem),
        var(--navy);
}

.site-hero--legal::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(83, 146, 244, 0.65), transparent);
    content: "";
}

.legal-hero__content {
    width: 100%;
}

.site-hero--legal .eyebrow {
    color: var(--brand-bright);
}

.site-hero--legal h1 {
    max-width: 15ch;
    margin: 0.75rem 0 1rem;
    font-size: clamp(3rem, 7vw, 6.25rem);
    font-weight: 620;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.legal-hero__content > p:not(.eyebrow) {
    max-width: 43rem;
    margin: 0;
    color: var(--on-dark-soft);
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    line-height: 1.55;
}

.legal-meta {
    display: flex;
    margin: 2rem 0 0;
    gap: clamp(2rem, 5vw, 5rem);
}

.legal-meta > div {
    display: grid;
    gap: 0.25rem;
}

.legal-meta dt {
    color: color-mix(in srgb, var(--on-dark) 48%, transparent);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-meta dd {
    margin: 0;
    color: var(--on-dark);
    font-size: 0.9rem;
}

.legal-layout {
    display: grid;
    grid-template-columns: 12.5rem minmax(0, 49rem);
    justify-content: space-between;
    gap: clamp(3rem, 8vw, 8rem);
    padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.legal-navigation {
    position: sticky;
    top: 2rem;
    align-self: start;
    padding-top: 1rem;
    border-top: 2px solid var(--ink);
}

.legal-navigation__title {
    margin: 0 0 1rem;
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 760;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-navigation nav,
.legal-navigation__related {
    display: grid;
}

.legal-navigation a {
    padding-block: 0.38rem;
    color: var(--ink-soft);
    font-size: 0.78rem;
    line-height: 1.35;
    text-decoration: none;
    transition: color 160ms ease, transform 160ms ease;
}

.legal-navigation a:hover {
    color: var(--brand);
    transform: translateX(0.2rem);
}

.legal-navigation__related {
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--line);
}

.legal-navigation__related a {
    color: var(--ink);
    font-weight: 690;
}

.legal-document {
    min-width: 0;
}

.legal-document a:not(.button) {
    color: var(--brand);
    text-decoration-color: color-mix(in srgb, var(--brand) 42%, transparent);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.legal-document a:not(.button):hover {
    text-decoration-color: var(--brand);
}

.legal-summary,
.legal-notice {
    padding: 0.5rem 0 0.5rem 2rem;
    border-left: 3px solid var(--brand);
}

.legal-summary {
    margin-bottom: 4.5rem;
}

.legal-notice {
    margin-bottom: 4rem;
    border-left-color: var(--mythborne);
}

.legal-summary .eyebrow,
.legal-notice .eyebrow {
    color: var(--brand);
}

.legal-notice .eyebrow {
    color: var(--mythborne);
}

.legal-summary h2,
.legal-notice h2 {
    margin: 0.55rem 0 1.25rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 640;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.legal-summary ul {
    margin: 0;
    padding-left: 1.2rem;
}

.legal-summary li + li {
    margin-top: 0.55rem;
}

.legal-summary > p:last-child,
.legal-notice > p:last-child {
    margin: 1.25rem 0 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.legal-document > section {
    padding-block: clamp(3.25rem, 6vw, 5rem);
    border-top: 1px solid var(--line);
}

.legal-document > section:last-of-type {
    padding-bottom: 0;
}

.legal-document section > h2 {
    max-width: 22ch;
    margin: 0 0 1.65rem;
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 630;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.legal-document section > p,
.legal-document section > ul,
.legal-document section > ol,
.legal-document section > address {
    max-width: 44rem;
}

.legal-document section > p,
.legal-product-note p {
    margin: 0;
}

.legal-document section > p + p,
.legal-product-note p + p {
    margin-top: 1.15rem;
}

.legal-document section > ul,
.legal-document section > ol,
.legal-product-note ul {
    margin-block: 1.4rem;
    padding-left: 1.25rem;
}

.legal-document li {
    padding-left: 0.25rem;
}

.legal-document li + li {
    margin-top: 0.65rem;
}

.legal-document address {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    font-style: normal;
}

.legal-product-note {
    margin-top: 2.75rem;
    padding: 0.25rem 0 0.25rem 1.75rem;
    border-left: 3px solid var(--brand);
}

.legal-product-note--mythborne {
    border-left-color: var(--mythborne);
}

.legal-product-note--jobtracker {
    border-left-color: var(--jobtracker);
}

.legal-product-note__label {
    color: var(--brand);
    font-size: 0.68rem;
    font-weight: 780;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.legal-product-note--mythborne .legal-product-note__label {
    color: var(--mythborne);
}

.legal-product-note--jobtracker .legal-product-note__label {
    color: var(--jobtracker);
}

.legal-product-note h3 {
    margin: 0.45rem 0 1rem;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.deletion-steps {
    padding: 0 !important;
    list-style: none;
}

.deletion-steps li {
    display: grid;
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.35rem 0;
    border-top: 1px solid var(--line);
}

.deletion-steps li:last-child {
    border-bottom: 1px solid var(--line);
}

.deletion-steps li + li {
    margin-top: 0;
}

.deletion-steps li > span {
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 780;
    letter-spacing: 0.08em;
}

.deletion-steps strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1.02rem;
}

.deletion-steps p {
    margin: 0;
    color: var(--ink-soft);
}

.deletion-effects {
    padding-left: 0 !important;
    list-style: none;
}

.deletion-effects li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
}

.legal-endnote {
    margin-top: 4.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--ink);
    color: var(--ink-soft);
}

.legal-endnote p {
    margin: 0;
}

@media (max-width: 62rem) {
    :root {
        --site-hero-height: 660px;
    }

    .legal-layout {
        grid-template-columns: 10.5rem minmax(0, 1fr);
        gap: 3.5rem;
    }

    .legal-navigation a {
        font-size: 0.74rem;
    }

    .site-header__inner {
        display: flex;
        width: calc(100% - 40px);
        justify-content: flex-start;
        gap: 10px;
    }

    .brand--header {
        margin-right: auto;
    }

    .site-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
        position: relative;
    }

    .mobile-menu > summary {
        display: flex;
        width: 42px;
        height: 42px;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        gap: 5px;
        padding: 8px;
        cursor: pointer;
        list-style: none;
    }

    .mobile-menu > summary::-webkit-details-marker {
        display: none;
    }

    .mobile-menu > summary span {
        display: block;
        width: 23px;
        height: 1px;
        background: var(--brand-bright);
    }

    .mobile-menu > summary span:nth-child(2) {
        width: 17px;
    }

    .mobile-menu nav {
        position: absolute;
        top: 48px;
        right: 0;
        display: flex;
        width: min(300px, calc(100vw - 40px));
        flex-direction: column;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(7, 16, 24, 0.98);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
    }

    .mobile-menu nav > a {
        min-height: 0;
        justify-content: flex-start;
        padding: 13px 12px;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: transparent;
        color: var(--on-dark-soft);
        box-shadow: none;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-decoration: none;
        text-transform: uppercase;
        transform: none;
    }

    .mobile-menu nav > a:hover {
        background: rgba(255, 255, 255, 0.035);
        color: var(--on-dark);
        transform: none;
    }

    .mobile-menu nav > a.is-active {
        background: rgba(255, 255, 255, 0.035);
        color: var(--on-dark);
        box-shadow: inset 2px 0 var(--brand);
    }

    .mobile-menu nav > .mobile-discord {
        width: 100%;
        min-width: 0;
        min-height: 52px;
        flex-basis: auto;
        justify-content: center;
        gap: 12px;
        margin-top: 9px;
        padding: 13px 18px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: #5865f2;
        color: #ffffff;
        font-size: 13px;
    }

    .mobile-menu nav > .mobile-discord:hover {
        background: #6571f5;
        color: #ffffff;
    }

    .product-summary {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-summary__visual {
        width: min(100%, 43rem);
    }

    .product-summary__copy {
        max-width: 43rem;
    }

    .product-feature,
    .product-feature--reverse {
        grid-template-columns: 1fr;
    }

    .product-feature--reverse .product-feature__figure,
    .product-feature--reverse .product-feature__copy {
        grid-column: 1;
    }

    .product-feature--reverse .product-feature__figure {
        grid-row: 1;
    }

    .product-feature--reverse .product-feature__copy {
        grid-row: 2;
    }

    .product-feature__copy {
        max-width: 43rem;
    }

    .about-principles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-principles > div:nth-child(3) {
        border-left: 0;
    }

    .about-principles__heading {
        grid-column: 1 / -1;
        border-bottom: 1px solid var(--line);
    }

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

    .skill-groups > section {
        grid-template-columns: minmax(14rem, 0.42fr) minmax(0, 0.58fr);
    }

    .skill-groups__stack {
        grid-column: 2;
    }
}

@media (max-width: 45rem) {
    :root {
        --header-height: 64px;
        --site-hero-height: 820px;
        --site-hero-content-offset: 34px;
        --site-hero-bottom-space: 34px;
    }

    .site-hero--home h1 {
        font-size: clamp(2.45rem, 11.5vw, 3.5rem);
    }

    .product-page .site-hero h1 {
        font-size: clamp(2.55rem, 11.5vw, 3.65rem);
    }

    .site-hero--about h1 {
        font-size: clamp(2.65rem, 12vw, 4rem);
    }

    .site-hero--legal h1 {
        font-size: clamp(2.75rem, 14vw, 4rem);
    }

    .legal-meta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 2rem;
    }

    .legal-meta > div:last-child {
        grid-column: 1 / -1;
    }

    .legal-layout,
    .legal-layout--deletion {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-block: 3.75rem 5rem;
    }

    .legal-navigation {
        position: static;
        columns: 2;
        column-gap: 2rem;
    }

    .legal-navigation__title,
    .legal-navigation__related {
        column-span: all;
    }

    .legal-navigation nav {
        display: block;
    }

    .legal-navigation nav a {
        display: block;
        break-inside: avoid;
    }

    .legal-navigation__related {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem 1.25rem;
    }

    .legal-summary,
    .legal-notice {
        padding-left: 1.25rem;
    }

    .legal-summary {
        margin-bottom: 3.5rem;
    }

    .legal-document > section {
        padding-block: 3.25rem;
    }

    .legal-product-note {
        padding-left: 1.25rem;
    }

    .wrap {
        width: min(calc(100% - 2rem), 76rem);
    }

    .site-header__inner {
        width: calc(100% - 32px);
        gap: 7px;
    }

    .brand--header {
        width: 44px;
        margin-right: auto;
    }

    .brand--header .brand__wordmark {
        display: none;
    }

    .brand--header .brand__symbol {
        display: block;
    }

    .brand__name {
        font-size: 0.95rem;
    }

    .brand__mark {
        width: 1.95rem;
        height: 1.95rem;
    }

    .site-header__actions .discord-button--header {
        display: none;
    }

    .mobile-menu nav {
        width: min(280px, calc(100vw - 40px));
    }

    .site-hero__media::after,
    .product-page .site-hero__media::after {
        background:
            linear-gradient(180deg, rgba(6, 10, 20, 0.9) 0%, rgba(6, 10, 20, 0.72) 60%, rgba(6, 10, 20, 0.45) 100%),
            linear-gradient(90deg, rgba(6, 10, 20, 0.94) 0%, rgba(6, 10, 20, 0.58) 100%);
    }

    .site-hero--home .site-hero__media img {
        object-position: 64% center;
    }

    .button-row,
    .product-summary__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-summary {
        padding-block: 3.5rem;
    }

    .product-summary h3 {
        font-size: 2.5rem;
    }

    .home-about,
    .home-community__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-detail-back {
        margin-bottom: 0.75rem;
    }

    .mythborne-wordmark {
        width: min(100%, 13rem);
    }

    .product-detail-hero__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-hero--mythborne .site-hero__media img {
        object-position: 50% 57%;
    }

    .site-hero--jobtracker .site-hero__media img {
        object-position: 72% center;
    }

    .product-introduction,
    .product-audience__inner,
    .product-section-heading {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-section-heading h2 {
        grid-column: 1;
    }

    .product-feature {
        gap: 2.5rem;
    }

    .product-workflow__list li {
        grid-template-columns: 1.25rem 1fr;
        gap: 0.65rem 1rem;
    }

    .product-workflow__list p {
        grid-column: 2;
    }

    .product-final-cta__inner {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 2.5rem;
    }

    .about-hero__layout,
    .about-origin,
    .about-section-heading {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .about-hero__facts > div {
        padding-block: 0.75rem;
    }

    .about-hero__facts {
        width: 100%;
    }

    .about-principles {
        grid-template-columns: 1fr;
    }

    .about-principles__heading {
        grid-column: 1;
    }

    .about-principles > div,
    .about-principles > div:nth-child(3) {
        padding-inline: 0;
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .about-principles > div:first-child {
        border-top: 0;
    }

    .technology-cloud {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .skill-groups > section {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .skill-groups__stack {
        grid-column: 1;
    }

    .qualification-list li {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .home-community__inner {
        align-items: start;
    }

    .home-community .button {
        justify-self: start;
    }

    .site-footer > .wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .site-footer__links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .site-footer__base {
        flex-direction: column;
        gap: 0.45rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
