@-webkit-keyframes fadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(22px);
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(22px);
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes blink {

    0%,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes blink {

    0%,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes toastIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(14px);
        transform: translateX(14px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes toastIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(14px);
        transform: translateX(14px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes toastOut {
    0% {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translateX(14px);
        transform: translateX(14px);
    }
}

@keyframes toastOut {
    0% {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translateX(14px);
        transform: translateX(14px);
    }
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@-webkit-keyframes slideDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes pulse {

    0%,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes pulse {

    0%,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ol,
ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    background: none;
    border: none;
}

html {
    font-size: 16px;
}

body {
    background-color: #f9f9f7;
    color: #373734;
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 1rem;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #f9f9f7;
}

::-webkit-scrollbar-thumb {
    background: #e3e3e1;
    border-radius: 2px;
}

::-moz-selection {
    background: #373734;
    color: #f9f9f7;
}

::selection {
    background: #373734;
    color: #f9f9f7;
}

:focus-visible {
    outline: 2px solid #373734;
    outline-offset: 3px;
}

body:before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px;
}

.fh {
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
}

.fb {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
}

.lbl {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.75rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #8a8a87;
}

.tag {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    padding: 0.5rem;
    border: 1px solid #e3e3e1;
    color: #8a8a87;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 0.88em;
    background: #373734;
    margin-left: 3px;
    vertical-align: text-bottom;
    -webkit-animation: blink 1s step-end infinite;
    animation: blink 1s step-end infinite;
}

.snum {
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.rv {
    opacity: 0;
    -webkit-transform: translateY(18px);
    transform: translateY(18px);
    -webkit-transition:
        opacity 600ms ease,
        -webkit-transform 600ms ease;
    transition:
        opacity 600ms ease,
        transform 600ms ease,
        -webkit-transform 600ms ease;
}

.rv.in {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.afu {
    -webkit-animation: fadeUp 0.65s ease both;
    animation: fadeUp 0.65s ease both;
}

.oi {
    opacity: 0;
}

.d1 {
    -webkit-animation-delay: 0.12s;
    animation-delay: 0.12s;
}

.d2 {
    -webkit-animation-delay: 0.24s;
    animation-delay: 0.24s;
}

.d3 {
    -webkit-animation-delay: 0.36s;
    animation-delay: 0.36s;
}

.d4 {
    -webkit-animation-delay: 0.48s;
    animation-delay: 0.48s;
}

.d5 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.td-1 {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.td-2 {
    -webkit-transition-delay: 0.08s;
    transition-delay: 0.08s;
}

.td-3 {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.td-4 {
    -webkit-transition-delay: 0.12s;
    transition-delay: 0.12s;
}

.td-5 {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.td-6 {
    -webkit-transition-delay: 0.16s;
    transition-delay: 0.16s;
}

.td-7 {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.td-8 {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.pricing-featured {
    background: #373734 !important;
    border-color: #373734 !important;
}

.text-bg {
    color: #f9f9f7;
}

.text-ink {
    color: #373734;
}

.skill-track {
    width: 100%;
    height: 3px;
    background: #e3e3e1;
}

.skill-bar {
    height: 3px;
    background: #373734;
    width: 0%;
    -webkit-transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-name {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.hgrid {
    display: grid;
    gap: 1px;
    background: #e3e3e1;
}

.hgrid>* {
    background: #f9f9f7;
}

.hgrid--alt>* {
    background: #efeeec;
}

.section-header {
    /* display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem; */
    /* margin-bottom: 2.5rem; */
}

/* @media (min-width: 576px) {
    .section-header {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
} */

.section-header__heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin-top: 0.75rem;
}

.section-header__sub {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    max-width: 22rem;
    line-height: 1.7;
}

.grid-2 {
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2 {
        -ms-grid-columns: (1fr) [2];
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3 {
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-3 {
        -ms-grid-columns: (1fr) [2];
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        -ms-grid-columns: (1fr) [3];
        grid-template-columns: repeat(3, 1fr);
    }
}

#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #f9f9f7;
    border-bottom: 1px solid #e3e3e1;
    -webkit-transition: -webkit-box-shadow 300ms ease;
    transition:
        box-shadow 300ms ease,
        -webkit-box-shadow 300ms ease;
    height: 4rem;
}

#nav.scrolled {
    -webkit-box-shadow: 0 2px 12px rgba(55, 55, 52, 0.05);
    box-shadow: 0 2px 12px rgba(55, 55, 52, 0.05);
}

.nav-inner {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
    height: 100%;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.nav-logo {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #373734;
    text-decoration: none;
    border: 1.5px solid #373734;
}


.nav-logo span {
    color: #8a8a87;
}

.nav-links {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nl {
    position: relative;
    color: #8a8a87;
    -webkit-transition: color 300ms ease;
    transition: color 300ms ease;
}

.nl:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #373734;
    -webkit-transition: width 300ms ease;
    transition: width 300ms ease;
}

.nl:hover {
    color: #373734;
}

.nl:hover:after {
    width: 100%;
}

.nl {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    letter-spacing: 0.07em;
}

.nav-cta {
    margin-left: 0.5rem;
}

.nav-hamburger {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    padding: 0.25rem;
}

@media (min-width: 768px) {
    .nav-hamburger {
        display: none;
    }
}

.nav-hamburger span {
    display: block;
    height: 1px;
    background: #373734;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.nav-hamburger span:first-child {
    width: 20px;
}

.nav-hamburger span:nth-child(2) {
    width: 20px;
}

.nav-hamburger span:nth-child(3) {
    width: 12px;
}

#mmenu {
    border-top: 1px solid #e3e3e1;
    background: #f9f9f7;
    -webkit-animation: slideDown 0.28s ease both;
    animation: slideDown 0.28s ease both;
}

#mmenu .mmenu-inner {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
    padding-block: 1.5rem;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.25rem;
}

.mwrap {
    overflow: hidden;
}

/* .mtrack {
    display: flex;
    gap: 1rem;
    width: max-content;
    -webkit-animation: marquee 24s linear infinite;
    animation: marquee 24s linear infinite;
}

.mtrack:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
} */

.footer {
    background: #efeeec;
    color: #373734;
}

.footer__top {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
    padding-top: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e3e3e1;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer__top {
        -ms-grid-columns: 4fr 2fr 2fr 3fr;
        grid-template-columns: 4fr 2fr 2fr 3fr;
    }
}

.footer__logo {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #373734;
    text-decoration: none;
    border: 1.5px solid #373734;
}

.footer__logo span {
    color: #8a8a87;
}

.footer__desc {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer__badge {
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid #e3e3e1;
    padding: 0.5rem 1rem;
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.78rem;
    color: #8a8a87;
}

.footer__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-animation: pulse 2s ease infinite;
    animation: pulse 2s ease infinite;
}

.footer__col-title {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.75rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #8a8a87;
    margin-bottom: 1.25rem;
}

.footer__contact-list,
.footer__nav-list {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__nav-link {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #373734;
    text-decoration: none;
    -webkit-transition: color 300ms ease;
    transition: color 300ms ease;
}

.footer__nav-link:hover {
    color: #000;
}

.footer__contact-item {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.6rem;
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #373734;
    text-decoration: none;
    -webkit-transition: color 300ms ease;
    transition: color 300ms ease;
}

.footer__contact-item svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.footer__contact-item:hover {
    color: #000;
}

.footer__contact-item--text {
    color: #8a8a87;
    cursor: default;
}

.footer__contact-item--text:hover {
    color: #8a8a87;
}

.footer__socials {
    display: flex;
    gap: 0.625rem;
    margin-top: 1.5rem;
}

.footer__social {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid #e3e3e1;
    color: #373734;
    text-decoration: none;
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-size: 0.6rem;
    font-weight: 700;
    -webkit-transition:
        border-color 300ms ease,
        color 300ms ease;
    transition:
        border-color 300ms ease,
        color 300ms ease;
}

.footer__social:hover {
    border-color: #373734;
    color: #000;
}

.footer__bottom {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
    padding-block: 1.25rem;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 576px) {
    .footer__bottom {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.footer__copy,
.footer__tagline {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.8rem;
    color: #8a8a87;
}

.footer__top-inner {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e3e3e1;
}

.footer__bottom-inner {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

/* .footer__logo {
    display: inline-block;
    margin-bottom: 1rem;
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #373734;
    text-decoration: none;
}

.footer__logo span {
    color: #8a8a87;
} */

.footer__desc {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer__badge {
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid #e3e3e1;
    padding: 0.5rem 1rem;
}

.footer__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-animation: pulse 2s ease infinite;
    animation: pulse 2s ease infinite;
}

.footer__badge-text {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.78rem;
    color: #8a8a87;
}

.footer__col-title {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.75rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #8a8a87;
    margin-bottom: 1.25rem;
}

.footer__list {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer__link {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #373734;
    text-decoration: none;
    -webkit-transition: color 300ms ease;
    transition: color 300ms ease;
}

.footer__link:hover {
    color: #000;
}

.footer__contact-link {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.6rem;
    color: #373734;
    text-decoration: none;
    font-size: 0.875rem;
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    -webkit-transition: color 300ms ease;
    transition: color 300ms ease;
}

.footer__contact-link:hover {
    color: #000;
}

.footer__contact-text {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.6rem;
    color: #8a8a87;
    font-size: 0.875rem;
    font-family: "SF Mono", "SF Mono Fallback", monospace;
}

.footer__socials {
    display: flex;
    gap: 0.625rem;
    margin-top: 1.5rem;
}

.footer__social {
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid #e3e3e1;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #373734;
    text-decoration: none;
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-size: 0.6rem;
    font-weight: 700;
    -webkit-transition: border-color 300ms ease;
    transition: border-color 300ms ease;
}

.footer__social:hover {
    border-color: #373734;
}

.footer__copy {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.8rem;
    color: #8a8a87;
}

.btn {
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid #e3e3e1;
    background: #f9f9f7;
    color: #373734;
    -webkit-transition:
        background 300ms ease,
        border-color 300ms ease,
        -webkit-transform 150ms ease;
    transition:
        background 300ms ease,
        border-color 300ms ease,
        transform 150ms ease,
        -webkit-transform 150ms ease;
}

.btn:hover {
    background: #efeeec;
    border-color: #c8c8c5;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}

.btn-d {
    background: #373734;
    border-color: #373734;
    color: #f9f9f7;
}

.btn-d:hover {
    background: #4a4a47;
    border-color: #4a4a47;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}

.btn--sm {
    padding: 0.35rem 0.8rem;
    font-size: 0.75rem;
}

.btn--full {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn--sm {
    padding: 0.35rem 0.8rem !important;
    font-size: 0.75rem !important;
}

.btn--light {
    background: #f9f9f7;
    border-color: #f9f9f7;
    color: #373734;
}

#mbtn {
    background-color: #373734;
}

#mbtn span {
    background-color: #fff;
}

.scard {
    border: 1px solid #e3e3e1;
    padding: 2rem;
    background: #f9f9f7;
    -webkit-transition:
        border-color 300ms ease,
        -webkit-transform 300ms ease,
        -webkit-box-shadow 300ms ease;
    transition:
        border-color 300ms ease,
        transform 300ms ease,
        box-shadow 300ms ease,
        -webkit-transform 300ms ease,
        -webkit-box-shadow 300ms ease;
}

.scard:hover {
    border-color: #c0c0bd;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 8px 28px rgba(55, 55, 52, 0.1);
    box-shadow: 0 8px 28px rgba(55, 55, 52, 0.1);
}

#services .scard ul li>span {
    background-color: #373734;
}

.scard--alt {
    background: #efeeec;
}

.scard__icon {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid #e3e3e1;
    margin-bottom: 1.5rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.scard__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.scard__desc {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.scard__list {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
}

.scard__list li {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
}

.scard__list li:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #373734;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.pcard {
    border: 1px solid #e3e3e1;
    background: #f9f9f7;
    overflow: hidden;
    -webkit-transition:
        border-color 300ms ease,
        -webkit-transform 300ms ease,
        -webkit-box-shadow 300ms ease;
    transition:
        border-color 300ms ease,
        transform 300ms ease,
        box-shadow 300ms ease,
        -webkit-transform 300ms ease,
        -webkit-box-shadow 300ms ease;
}

.pcard:hover {
    border-color: #c0c0bd;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 8px 28px rgba(55, 55, 52, 0.1);
    box-shadow: 0 8px 28px rgba(55, 55, 52, 0.1);
}

.pcard.hid {
    display: none;
}

.pcard.fe {
    -webkit-animation: fadeUp 0.38s ease both;
    animation: fadeUp 0.38s ease both;
}

.pcard__thumb {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #e3e3e1;
    border-bottom: 1px solid #e3e3e1;
}

.pcard__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition:
        transform 0.4s ease,
        -webkit-transform 0.4s ease;
}

.pcard__thumb img:hover {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

.pcard__thumb-placeholder {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 16/9;
    background: #efeeec;
    border-bottom: 1px solid #e3e3e1;
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-size: 0.75rem;
    color: #8a8a87;
    letter-spacing: 0.1em;
}

.pcard__body {
    padding: 1.5rem;
}

.pcard__header {
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.pcard__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pcard__desc {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.pcard__tags {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.pcard__footer {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #e3e3e1;
}

.pcard__private {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    font-style: italic;
}

.tcard {
    background: #f9f9f7;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border: 1px solid #e3e3e1;
    padding: 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.tcard__stars {
    color: #f59e0b;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.tcard__quote {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tcard__author {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #e3e3e1;
}

.tcard__avatar {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: #e3e3e1;
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-size: 0.875rem;
    font-weight: 700;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.tcard__name {
    font-size: 0.875rem;
    font-weight: 700;
}

.tcard__role {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
}

.pricing-card {
    border: 1px solid #e3e3e1;
    padding: 2rem;
    background: #f9f9f7;
    -webkit-transition:
        border-color 300ms ease,
        -webkit-transform 300ms ease,
        -webkit-box-shadow 300ms ease;
    transition:
        border-color 300ms ease,
        transform 300ms ease,
        box-shadow 300ms ease,
        -webkit-transform 300ms ease,
        -webkit-box-shadow 300ms ease;
}

.pricing-card:hover {
    border-color: #c0c0bd;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 8px 28px rgba(55, 55, 52, 0.1);
    box-shadow: 0 8px 28px rgba(55, 55, 52, 0.1);
}

.pricing-card--featured {
    background: #373734;
    border-color: #373734;
    color: #f9f9f7;
}

.pricing-card--featured .pricing-card__desc,
.pricing-card--featured .pricing-card__item,
.pricing-card--featured .pricing-card__label,
.pricing-card--featured .pricing-card__unit {
    color: #8a8a87;
}

.pricing-card--featured .pricing-card__price {
    color: #f9f9f7;
}

.pricing-card--featured:hover {
    background: #444441;
}

.pricing-card__label {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.75rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #8a8a87;
    margin-bottom: 1rem;
}

.pricing-card__price {
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-card__unit {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    margin-bottom: 0.5rem;
}

.pricing-card__desc {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    line-height: 1.7;
    margin-block: 1rem 2rem;
}

.pricing-card__list {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pricing-card__item {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card__item:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.pcard__no-pad {
    padding: 0 !important;
}

.pcard__thumb {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #e3e3e1;
    border-bottom: 1px solid #e3e3e1;
}

.pcard__thumb-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition:
        transform 0.4s ease,
        -webkit-transform 0.4s ease;
}

.pcard__thumb-img:hover {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

.pcard__thumb-ph {
    width: 100%;
    aspect-ratio: 16/9;
    background: #efeeec;
    border-bottom: 1px solid #e3e3e1;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pcard__ph-text {
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-size: 0.75rem;
    color: #8a8a87;
    letter-spacing: 0.1em;
}

.pcard__body {
    padding: 1.5rem;
}

.ts-viewport {
    overflow: hidden;
}

.ts-track {
    display: flex;
    gap: 1px;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ts-slide {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    background: #f9f9f7;
    border: 1px solid #e3e3e1;
    padding: 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.ts-stars {
    color: #f59e0b;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.ts-avatar {
    width: 2rem;
    height: 2rem;
    background: #e3e3e1;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.ts-nav-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #e3e3e1;
    background: #f9f9f7;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: background 300ms ease;
    transition: background 300ms ease;
}

.ts-nav-btn:hover {
    background: #efeeec;
}

.form-wrap {
    border: 1px solid #e3e3e1;
    padding: 2rem;
}

.form-row {
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 576px) {
    .form-row {
        -ms-grid-columns: (1fr) [2];
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.75rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #8a8a87;
}

.fi {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    width: 100%;
    background: transparent;
    border: 1px solid #e3e3e1;
    padding: 0.72rem 1rem;
    font-size: 0.9rem;
    color: #373734;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: border-color 300ms ease;
    transition: border-color 300ms ease;
}

.fi::-webkit-input-placeholder {
    color: #b5b5b2;
}

.fi::-moz-placeholder {
    color: #b5b5b2;
}

.fi:-ms-input-placeholder {
    color: #b5b5b2;
}

.fi::-ms-input-placeholder {
    color: #b5b5b2;
}

.fi::placeholder {
    color: #b5b5b2;
}

.fi:focus {
    border-color: #373734;
}

.fi.err {
    border-color: #c0392b;
}

select.fi {
    cursor: pointer;
}

.ferr {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.75rem;
    color: #c0392b;
    margin-top: 0.2rem;
    display: none;
}

.ferr.on {
    display: block;
}

.form-footer {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.form-note {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
}

.sp {
    display: inline-block;
    width: 13px;
    height: 13px;
    border: 2px solid rgba(249, 249, 247, 0.35);
    border-top-color: #f9f9f7;
    border-radius: 50%;
    -webkit-animation: spin 0.7s linear infinite;
    animation: spin 0.7s linear infinite;
}

.filter-tabs {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.ftab {
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    padding: 0.38rem 0.85rem;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    border: 1px solid #e3e3e1;
    color: #8a8a87;
    cursor: pointer;
    background: transparent;
    -webkit-transition:
        background 300ms ease,
        border-color 300ms ease,
        color 300ms ease;
    transition:
        background 300ms ease,
        border-color 300ms ease,
        color 300ms ease;
}

.ftab.active,
.ftab:hover {
    background: #373734;
    border-color: #373734;
    color: #f9f9f7;
}

.faq-list {
    border-bottom: 1px solid #e3e3e1;
}

.faq-item {
    border-top: 1px solid #e3e3e1;
}

.faq-toggle {
    width: 100%;
    text-align: left;
    padding-block: 1.25rem;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    color: #373734;
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.3;
}

.faq-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: -webkit-transform 300ms ease;
    transition:
        transform 300ms ease,
        -webkit-transform 300ms ease;
}

.faq-icon.open {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.faq-body {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.35s ease;
    transition: max-height 0.35s ease;
}

.faq-body p {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    line-height: 1.7;
    padding-bottom: 1.25rem;
    padding-right: 2rem;
}

.toast {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 10000;
    border: 1px solid #e3e3e1;
    background: #f9f9f7;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    max-width: 300px;
    -webkit-box-shadow: 0 8px 28px rgba(55, 55, 52, 0.1);
    box-shadow: 0 8px 28px rgba(55, 55, 52, 0.1);
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0.7rem;
}

.toast.show {
    -webkit-animation: toastIn 0.35s ease both;
    animation: toastIn 0.35s ease both;
}

.toast.hide {
    -webkit-animation: toastOut 0.35s ease both;
    animation: toastOut 0.35s ease both;
}

.toast__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.toast__title {
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.toast__body {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    line-height: 1.5;
}

.toast__close {
    margin-left: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #8a8a87;
    -webkit-transition: color 300ms ease;
    transition: color 300ms ease;
    margin-top: 2px;
}

.toast__close:hover {
    color: #373734;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

.timeline-item__spine {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.timeline-item__dot {
    width: 8px;
    height: 8px;
    border: 2px solid #373734;
    border-radius: 50%;
    background: #f9f9f7;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 5px;
}

.timeline-item__line {
    width: 1px;
    background: #e3e3e1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 0.5rem;
}

.timeline-item__body {
    padding-bottom: 2.5rem;
}

.timeline-item__meta {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.timeline-item__year {
    font-size: 0.875rem;
    font-weight: 700;
}

.timeline-item__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.timeline-item__org {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    margin-bottom: 0.5rem;
}

.timeline-item__desc {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    line-height: 1.7;
}

.timeline-item__tags {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

#hero .profile-img-wrapper {
    background-color: #efeeec;
}

.hero {
    min-height: 100vh;
    padding-top: 4rem;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid #efeeec;
}

.hero__inner {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
    padding-block: 7rem;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 4rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero__inner {
        -ms-grid-columns: 7fr 5fr;
        grid-template-columns: 7fr 5fr;
    }
}

.hero__heading {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-top: 1.5rem;
}

.hero__heading em {
    font-style: normal;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
}

.hero__sub {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    line-height: 1.7;
    max-width: 32rem;
    margin-top: 1.75rem;
    margin-bottom: 2.25rem;
}

.hero__sub strong {
    color: #373734;
    font-weight: 600;
}

.hero__ctas {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero__tags {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero__card {
    border: 1px solid #e3e3e1;
    padding: 1.25rem;
    background: #efeeec;
}

.hero__photo {
    width: 100%;
    aspect-ratio: 3/4;
    max-width: 320px;
    margin: 0 auto;
    border: 1px solid #e3e3e1;
    background: #efeeec;
    overflow: hidden;
    position: relative;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.hero__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
}

.hero__photo-ph {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
    color: #b0b0ad;
}

.hero__stats {
    display: grid;
    -ms-grid-columns: 1fr 1px 1fr 1px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e3e3e1;
    margin-top: 1rem;
}

.hero__stats>div {
    background: #f9f9f7;
    padding: 1rem;
    text-align: center;
}

.hero__stat-label {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.75rem;
    color: #8a8a87;
    margin-top: 0.25rem;
    line-height: 1.4;
}

.hero__avail {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1rem;
}

.hero__avail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-animation: pulse 2s ease infinite;
    animation: pulse 2s ease infinite;
}

.hero__avail-text {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
}

.page-hero {
    padding-top: 4rem;
    border-bottom: 1px solid #e3e3e1;
    background: #efeeec;
}

.page-hero__inner {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
    padding-block: 5rem;
}

.page-hero__heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin-top: 1rem;
}

.page-hero__sub {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    line-height: 1.7;
    max-width: 36rem;
    margin-top: 1.25rem;
}

.page-hero__ctas {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.about {
    padding-block: 7rem;
    border-bottom: 1px solid #e3e3e1;
}

.about__inner {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.about__photo-col {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid #e3e3e1;
    background: #f9f9f7;
}

.about__photo-wrap {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2rem;
}

.about__photo {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 3/4;
    border: 1px solid #e3e3e1;
    background: #efeeec;
    overflow: hidden;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.about__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
}

.about__badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: #373734;
    color: #f9f9f7;
    padding: 0.5rem 0.75rem;
    text-align: center;
}

.about__badge-num {
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.about__badge-label {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.65rem;
    color: #8a8a87;
    margin-top: 2px;
}

.about__contact {
    border-top: 1px solid #e3e3e1;
}

.about__contact-row {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e3e3e1;
    -webkit-transition: background 300ms ease;
    transition: background 300ms ease;
    text-decoration: none;
    color: #373734;
}

.about__contact-row:hover {
    background: #efeeec;
}

.about__contact-row:last-child {
    border-bottom: none;
}

.about__contact-icon {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid #e3e3e1;
    background: #f9f9f7;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.about__contact-label {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.75rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #8a8a87;
}

.about__contact-value {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: #373734;
    margin-top: 2px;
}

.about__bio-col {
    padding: 2.5rem;
}

.about__quote {
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.about__text {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about__stats {
    display: grid;
    -ms-grid-columns: 1fr 1px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #e3e3e1;
    margin-top: auto;
}

@media (min-width: 576px) {
    .about__stats {
        -ms-grid-columns: (1fr) [4];
        grid-template-columns: repeat(4, 1fr);
    }
}

.about__stats>div {
    background: #f9f9f7;
    padding: 1.25rem;
    text-align: center;
}

.about__stat-label {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.75rem;
    color: #8a8a87;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.about__approach {
    padding: 2rem;
    background: #f9f9f7;
}

.about__icon {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid #e3e3e1;
    margin-bottom: 1.25rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.about__approach-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.about__approach-desc {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    line-height: 1.7;
}

.about__feature {
    display: flex;
    gap: 1rem;
    padding: 2rem 2.5rem;
    background: #f9f9f7;
}

.about__feature-icon {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid #e3e3e1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.about__feature-title {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.about__feature-desc {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.82rem;
    color: #8a8a87;
    line-height: 1.7;
}

.about__skills-col {
    padding: 2rem 2.5rem;
    background: #efeeec;
}

.about__skills-desc {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about__skill+.about__skill {
    margin-top: 1.5rem;
}

.about__skill-header {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.about__skill-name {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    font-weight: 600;
}

.about__skill-track {
    width: 100%;
    height: 3px;
    background: #e3e3e1;
}

.about__skill-fill {
    height: 3px;
    background: #373734;
    width: 0%;
    -webkit-transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-photo-wrapper {
    background: #efeeec;
}

.about-photo {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 3/4;
    border: 1px solid #e3e3e1;
    overflow: hidden;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.about-photo__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
}

.about-photo__ph {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
    color: #b0b0ad;
}

.about-photo__ph-text {
    font-size: 0.75rem;
    text-align: center;
    color: #b0b0ad;
}

.about-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: #373734;
    color: #f9f9f7;
    padding: 0.5rem 0.85rem;
    text-align: center;
}

.about-badge__num {
    font-family: "JetBrains Mono", "JetBrains Mono Fallback", monospace;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge__label {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.65rem;
    color: #8a8a87;
    margin-top: 2px;
}

.about-contact__value {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: #373734;
    margin-top: 2px;
}

.about-bio__text {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.9rem;
    color: #8a8a87;
    line-height: 1.7;
}

.approach-desc {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
    line-height: 1.7;
}

.feature-title {
    font-weight: 700;
    font-size: 0.9rem;
}

.feature-desc {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.82rem;
    color: #8a8a87;
    line-height: 1.7;
}

.stat-label {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.75rem;
    color: #8a8a87;
    line-height: 1.4;
    margin-top: 0.5rem;
}

.snum--lg {
    font-size: 1.8rem !important;
}

.services {
    padding-block: 7rem;
    border-bottom: 1px solid #e3e3e1;
}

.services__inner {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.projects {
    padding-block: 7rem;
    border-bottom: 1px solid #e3e3e1;
    background: #efeeec;
}

.projects__inner {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.experience {
    padding-block: 7rem;
    border-bottom: 1px solid #e3e3e1;
}

.experience__inner {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.experience__info-box {
    border: 1px solid #e3e3e1;
    padding: 1rem;
    background: #efeeec;
}

.experience__info-box .lbl {
    margin-bottom: 0.25rem;
}

.experience__info-box p {
    font-size: 0.875rem;
    font-weight: 700;
}

.testimonials {
    padding-block: 7rem;
    border-bottom: 1px solid #e3e3e1;
    background: #efeeec;
}

.testimonials__inner {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.testimonials__viewport {
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    gap: 1px;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonials__nav-btn {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #e3e3e1;
    background: #f9f9f7;
    cursor: pointer;
    -webkit-transition:
        background 300ms ease,
        border-color 300ms ease;
    transition:
        background 300ms ease,
        border-color 300ms ease;
}

.testimonials__nav-btn:hover {
    background: #efeeec;
    border-color: #c8c8c5;
}

.testimonials__dots {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.testimonials__dot {
    height: 0.5rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    background: #e3e3e1;
    width: 0.5rem;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    padding: 0;
}

.testimonials__dot.active {
    background: #373734;
    width: 1.5rem;
}

.pricing {
    padding-block: 7rem;
    border-bottom: 1px solid #e3e3e1;
}

.pricing__inner {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.contact {
    padding-block: 7rem;
    border-bottom: 1px solid #e3e3e1;
}

.contact__inner {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.contact__info-box {
    border: 1px solid #e3e3e1;
    padding: 1rem;
    background: #efeeec;
}

.contact__info-box .lbl {
    margin-bottom: 0.25rem;
}

.contact__info-box a,
.contact__info-box p {
    font-size: 0.875rem;
    font-weight: 700;
    color: #373734;
    text-decoration: none;
}

.contact__avail {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
    border: 1px solid #e3e3e1;
    padding: 1rem;
}

.contact__avail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-animation: pulse 2s ease infinite;
    animation: pulse 2s ease infinite;
}

.contact__avail-text {
    font-family: "SF Mono", "SF Mono Fallback", monospace;
    font-size: 0.875rem;
    color: #8a8a87;
}