:root {
    color-scheme: light;
    --sh-primary: #1b1938;
    --sh-primary-deep: #0e0c1f;
    --sh-violet: #c9b4fa;
    --sh-teal: #0e3030;
    --sh-teal-mid: #155555;
    --sh-ink: #292827;
    --sh-muted: #73706d;
    --sh-faint: #66635f;
    --sh-canvas: #ffffff;
    --sh-soft: #fafaf8;
    --sh-line: #e8e4dd;
    --sh-line-dark: #3f3a52;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    background: var(--sh-canvas);
}

body,
.portfolio-root,
.portfolio-root > div {
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
    background: var(--sh-canvas);
}

.portfolio-root,
.portfolio-root > div,
.sh-shell {
    width: 100%;
    max-width: 100%;
    min-width: 0 !important;
}

.portfolio-root {
    flex: 1 1 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.sh-shell,
.sh-shell * {
    box-sizing: border-box;
}

.sh-shell {
    min-height: 100dvh;
    overflow-x: clip;
    color: var(--sh-ink);
    background: var(--sh-canvas);
    font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-variation-settings: "wght" 460;
    letter-spacing: 0;
}

.sh-shell a {
    color: inherit;
    text-decoration: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    clip-path: inset(50%);
}

.sh-skip {
    position: fixed;
    top: 18px;
    left: 22px;
    z-index: 100;
    transform: translateY(-180%);
    border-radius: 8px;
    padding: 10px 15px;
    color: var(--sh-primary);
    background: var(--sh-violet);
    font-weight: 700;
}

.sh-skip:focus {
    transform: translateY(0);
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

.sh-hero {
    position: relative;
    min-height: 100dvh;
    overflow: hidden;
    color: #ffffff;
    background: var(--sh-primary);
    isolation: isolate;
}

.sh-hero-media {
    --hero-shift: 0px;
    position: absolute;
    inset: -1% 0 0;
    z-index: 0;
    width: 100%;
    height: 102%;
    transform: translate3d(0, var(--hero-shift), 0) scale(1.015);
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.sh-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(14, 12, 31, 0.12);
}

.sh-announcement {
    position: relative;
    z-index: 4;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 10px 32px 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 10px 22px;
    color: #ffffff;
    background: rgba(25, 20, 48, 0.82);
    font-size: 14px;
    backdrop-filter: blur(14px);
    transition: background 160ms ease;
}

.sh-announcement > span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
}

.sh-announcement .sh-icon {
    font-size: 18px;
    transition: transform 160ms ease;
}

.sh-announcement:hover,
.sh-announcement:focus-visible {
    background: rgba(14, 12, 31, 0.94);
}

.sh-announcement:focus-visible {
    outline: 2px solid rgba(201, 180, 250, 0.7);
    outline-offset: 2px;
}

.sh-announcement:hover .sh-icon,
.sh-announcement:focus-visible .sh-icon {
    transform: translateX(3px);
}

.sh-nav {
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: auto 1fr auto;
    width: 100%;
    min-height: 72px;
    align-items: center;
    gap: 34px;
    padding: 0 34px;
}

.sh-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.sh-brand-mark {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 8px;
    color: var(--sh-primary);
    background: var(--sh-violet);
    font-size: 10px;
    font-weight: 800;
}

.sh-brand strong {
    color: #ffffff;
    font-size: 16px;
    font-variation-settings: "wght" 700;
}

.sh-desktop-nav,
.sh-nav-actions {
    display: flex;
    align-items: center;
}

.sh-desktop-nav {
    gap: 6px;
}

.sh-desktop-nav a,
.sh-nav-actions > a:not(.sh-nav-button) {
    border-radius: 8px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    transition: color 150ms ease, background 150ms ease;
}

.sh-desktop-nav a:hover,
.sh-desktop-nav a:focus-visible,
.sh-desktop-nav a.is-active,
.sh-nav-actions > a:not(.sh-nav-button):hover,
.sh-nav-actions > a:not(.sh-nav-button):focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.sh-nav-actions {
    gap: 8px;
}

.sh-nav-button {
    display: inline-flex;
    min-height: 0;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 10px 16px;
    color: var(--sh-primary) !important;
    background: var(--sh-violet);
    font-size: 14px;
    font-variation-settings: "wght" 700;
    transition: background 150ms ease, transform 150ms ease;
}

.sh-nav-button:hover,
.sh-nav-button:focus-visible {
    background: #dbcdfa;
}

.sh-nav-button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.sh-nav-button:active,
.sh-hero-button:active,
.sh-shell .button.primary:active {
    transform: translateY(1px) scale(0.98);
}

.sh-menu-button,
.sh-mobile-menu {
    display: none;
}

.sh-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(1240px, calc(100% - 80px));
    min-height: calc(100dvh - 140px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
    padding: 24px 0 82px;
}

.sh-hero-content > p:first-child,
.sh-section-heading > div > p {
    margin: 0;
    color: var(--sh-violet);
    font-size: 14px;
    font-variation-settings: "wght" 600;
}

.sh-hero-content h1 {
    max-width: 640px;
    margin: 15px 0 0;
    color: #ffffff;
    font-size: 72px;
    font-variation-settings: "wght" 540;
    line-height: 0.96;
}

.sh-hero-content > p:nth-of-type(2) {
    max-width: 510px;
    margin: 23px 0 28px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
    font-variation-settings: "wght" 460;
    line-height: 1.5;
}

.sh-hero-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 999px;
    padding: 0 12px 0 21px;
    color: var(--sh-primary) !important;
    background: var(--sh-violet);
    font-size: 15px;
    font-variation-settings: "wght" 700;
    transition: background 160ms ease, transform 160ms ease;
}

.sh-hero-button .sh-icon {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--sh-primary);
    font-size: 18px;
    transition: transform 160ms ease;
}

.sh-hero-button:hover,
.sh-hero-button:focus-visible {
    background: #dbcdfa;
}

.sh-hero-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.3);
    outline-offset: 3px;
}

.sh-hero-button:hover .sh-icon,
.sh-hero-button:focus-visible .sh-icon {
    transform: translateX(2px);
}

.sh-diabetes {
    color: var(--sh-ink);
    background: var(--sh-soft);
}

.sh-diabetes-inner {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
    padding: 128px 0 136px;
}

.sh-diabetes-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
    column-gap: 72px;
    align-items: end;
}

.sh-diabetes-heading > p:first-child,
.sh-diabetes-label {
    margin: 0;
    color: #5c42a5;
    font-size: 13px;
    font-variation-settings: "wght" 650;
}

.sh-diabetes-heading h2 {
    grid-column: 1;
    max-width: 760px;
    margin: 14px 0 0;
    font-size: 64px;
    font-variation-settings: "wght" 500;
    line-height: 0.96;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.sh-diabetes-heading > p:last-child {
    grid-column: 2;
    grid-row: 1 / span 2;
    max-width: 440px;
    margin: 0;
    color: var(--sh-muted);
    font-size: 18px;
    line-height: 1.6;
}

.sh-diabetes-origin,
.sh-diabetes-challenge {
    display: grid;
    align-items: center;
    gap: 88px;
    margin-top: 96px;
}

.sh-diabetes-origin { grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr); }
.sh-diabetes-challenge { grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr); }

.sh-story-photo { margin: 0; }
.sh-story-photo img {
    width: 100%;
    border-radius: 12px;
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.sh-story-photo-newborn {
    width: min(100%, 320px);
}
.sh-story-photo-newborn img {
    display: block;
    border: 1px solid var(--sh-line);
    background: #ffffff;
}
.sh-story-photo-challenge img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center 54%; }
.sh-story-photo figcaption {
    margin-top: 15px;
    color: var(--sh-faint);
    font-size: 12px;
    font-variation-settings: "wght" 600;
}

.sh-diabetes-copy p:not(.sh-diabetes-label),
.sh-diabetes-future p:not(.sh-diabetes-label) {
    max-width: 65ch;
    margin: 17px 0 0;
    color: var(--sh-muted);
    font-size: 17px;
    line-height: 1.65;
}

.sh-diabetes-quote {
    margin: 112px 0;
    border: 0;
    padding: 82px max(48px, 8vw);
    color: #ffffff;
    background: var(--sh-primary);
    text-align: center;
}
.sh-diabetes-quote p,
.sh-diabetes-quote strong {
    display: block;
    margin: 0;
    font-size: clamp(34px, 4.3vw, 62px);
    font-variation-settings: "wght" 460;
    line-height: 1.04;
    letter-spacing: -0.035em;
    text-wrap: balance;
}
.sh-diabetes-quote strong { margin-top: 10px; color: var(--sh-violet); }

.sh-diabetes-future { display: grid; gap: 58px; }
.sh-diabetes-future > div + div { border-top: 1px solid var(--sh-line); padding-top: 48px; }
.sh-diabetes-future h3 {
    max-width: 700px;
    margin: 14px 0 0;
    font-size: 38px;
    font-variation-settings: "wght" 500;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.sh-diabetes-post-link { min-height: 44px; margin-top: 22px; }

.sh-diabetes-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    margin-top: 118px;
}
.sh-diabetes-timeline::before {
    position: absolute;
    top: 7px;
    right: 0;
    left: 0;
    height: 1px;
    background: #cfc8bc;
    content: "";
}
.sh-diabetes-timeline article { position: relative; padding-top: 29px; }
.sh-diabetes-timeline article::before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 11px;
    height: 11px;
    border: 2px solid var(--sh-soft);
    border-radius: 50%;
    background: var(--sh-primary);
    box-shadow: 0 0 0 1px var(--sh-primary);
    content: "";
}
.sh-diabetes-timeline span { color: var(--sh-ink); font-size: 13px; font-variation-settings: "wght" 700; }
.sh-diabetes-timeline p { margin: 8px 0 0; color: var(--sh-muted); font-size: 13px; line-height: 1.45; }

.sh-diabetes-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    margin-top: 86px;
    border-top: 1px solid var(--sh-line);
    padding-top: 42px;
}
.sh-diabetes-close p { max-width: 560px; margin: 0; font-size: 20px; line-height: 1.45; }
.sh-diabetes-cta {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid currentColor;
    padding: 10px 0;
    font-size: 15px;
    font-variation-settings: "wght" 700;
}
.sh-diabetes-cta .sh-icon { transition: transform 160ms ease; }
.sh-diabetes-cta:hover .sh-icon,
.sh-diabetes-cta:focus-visible .sh-icon { transform: translateX(3px); }
.sh-diabetes-cta:focus-visible { border-radius: 2px; outline: 3px solid var(--sh-primary); outline-offset: 4px; }

@media (hover: hover) and (pointer: fine) {
    .sh-story-photo:hover img { transform: scale(1.02); }
}

.sh-main {
    background: var(--sh-canvas);
}

#main-content:focus,
.sh-section[tabindex="-1"]:focus {
    outline: none;
}

.sh-section {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
    padding: 112px 0;
}

.sh-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 38px;
}

.sh-section-heading h2,
.sh-simple-heading h2,
.sh-about-lead h2,
.sh-contact-copy h2 {
    margin: 13px 0 0;
    color: var(--sh-ink);
    font-size: 48px;
    font-variation-settings: "wght" 460;
    line-height: 0.98;
}

.sh-section-heading h2 {
    max-width: 700px;
}

.sh-text-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    color: var(--sh-ink);
    font-size: 14px;
    font-variation-settings: "wght" 600;
    white-space: nowrap;
    transition: color 150ms ease;
}

.sh-text-link .sh-icon {
    font-size: 18px;
    transition: transform 150ms ease;
}

.sh-text-link:hover,
.sh-text-link:focus-visible {
    color: #5c42a5;
    outline: none;
}

.sh-text-link:hover .sh-icon,
.sh-text-link:focus-visible .sh-icon {
    transform: translateX(3px);
}

.sh-text-link.is-disabled {
    border-bottom-color: transparent;
    color: var(--sh-faint);
    cursor: not-allowed;
    opacity: 0.62;
}

.sh-project-tabs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--sh-line);
    border-radius: 12px 12px 0 0;
    background: var(--sh-soft);
}

.sh-project-tabs[data-project-count="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sh-project-tabs[data-project-count="4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.sh-project-tab {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 70px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-bottom: 3px solid transparent;
    padding: 10px 14px 7px;
    color: var(--sh-muted);
    background: transparent;
    font: inherit;
    font-size: 14px;
    font-variation-settings: "wght" 600;
    cursor: pointer;
    transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.sh-project-tab + .sh-project-tab {
    border-left: 1px solid var(--sh-line);
}

.sh-project-tab span {
    color: var(--sh-faint);
    font-size: 10px;
}

.sh-project-tab:hover,
.sh-project-tab:focus-visible {
    color: var(--sh-ink);
    background: #ffffff;
    outline: none;
}

.sh-project-tab:focus-visible {
    z-index: 2;
    outline: 3px solid #5c42a5;
    outline-offset: -4px;
}

.sh-project-tab.is-active {
    border-bottom-color: var(--sh-primary);
    color: var(--sh-ink);
    background: #ffffff;
}

.sh-project-panels {
    min-height: 550px;
}

.sh-project-panel {
    display: grid;
    min-height: 550px;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    overflow: hidden;
    border: 1px solid var(--sh-line);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    background: var(--sh-soft);
    box-shadow: 0 8px 24px rgba(29, 26, 51, 0.08);
}

.sh-project-panel[hidden] {
    display: none;
}

.sh-project-panel.is-active {
    animation: sh-panel-in 340ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes sh-panel-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.sh-project-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 52px;
}

.sh-project-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--sh-muted);
    font-size: 12px;
}

.sh-repo-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.sh-repo-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sh-faint);
}

.sh-repo-status.is-public i {
    background: #3b9d7e;
    box-shadow: 0 0 0 4px rgba(59, 157, 126, 0.1);
}

.sh-project-copy h3 {
    margin: 38px 0 0;
    color: var(--sh-ink);
    font-size: 38px;
    font-variation-settings: "wght" 540;
    line-height: 1.04;
    overflow-wrap: anywhere;
}

.sh-project-summary {
    max-width: 560px;
    margin: 17px 0 0;
    color: var(--sh-muted);
    font-size: 17px;
    line-height: 1.55;
}

.sh-project-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 25px 0;
}

.sh-project-stack span {
    border: 1px solid #dcd7ce;
    border-radius: 999px;
    padding: 6px 9px;
    color: var(--sh-muted);
    background: #ffffff;
    font-size: 10px;
    font-variation-settings: "wght" 600;
}

.sh-project-copy > .sh-text-link {
    min-height: 44px;
    margin-top: auto;
}

.sh-project-visual {
    position: relative;
    min-width: 0;
    min-height: 100%;
    margin: 0;
    overflow: hidden;
    background: var(--sh-primary);
}

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

.sh-project-image-button {
    width: 100%;
    border: 0;
    padding: 0;
    cursor: zoom-in;
}

.sh-project-image-button:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: -6px;
}

.sh-project-lightbox {
    box-sizing: border-box;
    width: min(86vw, 1200px);
    max-width: none;
    height: min(80vh, 820px);
    max-height: none;
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.sh-project-lightbox[open] {
    display: grid;
    place-items: center;
}

.sh-project-lightbox::backdrop {
    background: rgba(14, 12, 31, 0.82);
    backdrop-filter: blur(6px);
}

.sh-project-lightbox img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(min(80vh, 820px) - 64px);
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 24px 70px rgba(14, 12, 31, 0.42);
}

.sh-project-lightbox-close {
    position: absolute;
    z-index: 1;
    top: 14px;
    right: 14px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: var(--sh-ink);
    background: #ffffff;
    cursor: pointer;
}

.sh-project-lightbox-close:focus-visible {
    outline: 3px solid var(--sh-violet);
    outline-offset: 3px;
}

.sh-project-preview {
    background: #111722;
}

.sh-project-preview iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #3a4052;
}

.sh-archive-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #ffffff;
    background: var(--sh-primary);
    text-align: center;
}

.sh-archive-visual span,
.sh-archive-visual small {
    color: var(--sh-violet);
    font-size: 13px;
}

.sh-archive-visual strong {
    margin: 12px 0 18px;
    font-size: 64px;
    font-variation-settings: "wght" 460;
    line-height: 0.96;
}

.sh-about {
    width: 100%;
    max-width: none;
    padding: 112px max(40px, calc((100% - 1180px) / 2));
    background: var(--sh-soft);
}

.sh-about-lead {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 80px;
    align-items: end;
}

.sh-about-lead h2 {
    max-width: 720px;
    margin: 0;
}

.sh-about-lead > p {
    margin: 0;
    color: var(--sh-muted);
    font-size: 18px;
    line-height: 1.6;
}

.sh-simple-heading {
    max-width: 760px;
    margin-bottom: 52px;
}

.sh-simple-heading h2 {
    margin: 0;
}

.sh-simple-heading p {
    margin: 18px 0 0;
    color: var(--sh-muted);
    font-size: 17px;
    line-height: 1.55;
}

.sh-simple-heading p a {
    color: var(--sh-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.sh-simple-heading p a:focus-visible {
    border-radius: 2px;
    outline: 3px solid var(--sh-primary);
    outline-offset: 3px;
}

.sh-path-layout {
    display: grid;
    grid-template-columns: minmax(290px, 0.76fr) minmax(0, 1.24fr);
    gap: 28px;
    align-items: start;
}

.sh-direction-list {
    display: grid;
    gap: 12px;
}

.sh-direction-item {
    border: 1px solid var(--sh-line);
    border-radius: 12px;
    padding: 26px;
    background: var(--sh-soft);
}

.sh-direction-item span {
    color: #6253a3;
    font-size: 12px;
    font-variation-settings: "wght" 600;
}

.sh-direction-item h3 {
    margin: 27px 0 8px;
    font-size: 21px;
    font-variation-settings: "wght" 540;
    line-height: 1.16;
}

.sh-direction-item p {
    margin: 0;
    color: var(--sh-muted);
    font-size: 14px;
    line-height: 1.55;
}

.sh-history > section + section {
    margin-top: 46px;
}

.sh-history > section > header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 0 0 18px;
    border-bottom: 1px solid var(--sh-line);
}

.sh-history > section > header h3 {
    margin: 2px;
    font-size: 24px;
    font-variation-settings: "wght" 540;
}

.sh-history > section > header span {
    color: var(--sh-faint);
    font-size: 12px;
}

.sh-history-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--sh-line);
}

.sh-history-item time {
    color: var(--sh-faint);
    font-size: 12px;
    line-height: 1.5;
}

.sh-history-item h3 {
    margin: 0;
    font-size: 17px;
    font-variation-settings: "wght" 600;
    line-height: 1.35;
}

.sh-history-item strong {
    display: block;
    margin-top: 4px;
    color: var(--sh-muted);
    font-size: 14px;
    font-variation-settings: "wght" 460;
    line-height: 1.45;
}

.sh-history-item p {
    margin: 7px 0 0;
    color: var(--sh-muted);
    font-size: 13px;
    line-height: 1.5;
}

.sh-skills {
    width: 100%;
    max-width: none;
    padding: 112px max(40px, calc((100% - 1180px) / 2));
    background: var(--sh-soft);
}

.sh-skill-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 56px;
    border-top: 1px solid var(--sh-line);
}

.sh-skill-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid var(--sh-line);
}

.sh-skill-item > .sh-skill-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: var(--sh-primary);
    background: #e7ddfb;
    font-size: 21px;
    font-weight: 700;
}

.sh-skill-item h3 {
    margin: 0;
    font-size: 19px;
    font-variation-settings: "wght" 600;
}

.sh-skill-item p {
    margin: 7px 0 0;
    color: var(--sh-muted);
    font-size: 14px;
    line-height: 1.5;
}

.sh-contact {
    color: #ffffff;
    background: var(--sh-teal);
}

.sh-contact-inner {
    display: grid;
    width: min(1180px, calc(100% - 80px));
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
    gap: 88px;
    margin: 0 auto;
    padding: 120px 0;
}

.sh-contact-copy h2 {
    margin: 0;
    color: #ffffff;
}

.sh-contact-copy > p {
    max-width: 490px;
    margin: 21px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.6;
}

.sh-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.sh-social-links a {
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 14px;
    transition: border-color 150ms ease, color 150ms ease;
}

.sh-social-links a:hover,
.sh-social-links a:focus-visible {
    border-color: var(--sh-violet);
    color: var(--sh-violet);
    outline: none;
}

.sh-contact-form {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 34px;
    background: var(--sh-teal-mid);
    box-shadow: 0 8px 24px rgba(3, 20, 20, 0.18);
}

.sh-shell .contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.sh-shell .contact-form label {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-variation-settings: "wght" 600;
}

.sh-shell .contact-form input,
.sh-shell .contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 6px;
    padding: 12px 13px;
    color: var(--sh-ink);
    background: #ffffff;
    font: inherit;
    font-size: 16px;
    line-height: 1.5;
    outline: 0;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.sh-shell .contact-form textarea {
    min-height: 148px;
    resize: vertical;
}

.sh-shell .contact-form input:focus,
.sh-shell .contact-form textarea:focus {
    border-color: var(--sh-violet);
    box-shadow: 0 0 0 3px rgba(201, 180, 250, 0.28);
}

.sh-shell .contact-message,
.sh-shell .contact-hp,
.sh-shell .form-status {
    grid-column: 1 / -1;
}

.sh-shell .contact-form .contact-hp {
    display: none;
}

.sh-shell .button.primary {
    display: inline-flex;
    width: fit-content;
    min-width: 150px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 0 20px;
    color: var(--sh-teal);
    background: #ffffff;
    font: inherit;
    font-size: 14px;
    font-variation-settings: "wght" 700;
    cursor: pointer;
    transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.sh-shell .button.primary:hover,
.sh-shell .button.primary:focus-visible {
    color: var(--sh-primary);
    background: var(--sh-violet);
}

.sh-shell .button.primary:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.22);
    outline-offset: 3px;
}

.sh-shell .button.primary:disabled {
    cursor: wait;
    opacity: 0.62;
}

.sh-shell .button.primary .sh-icon {
    font-size: 17px;
}

.sh-shell .form-status {
    min-height: 22px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    line-height: 1.5;
}

.sh-shell .form-status.success {
    color: #a9f2d6;
}

.sh-shell .form-status.error {
    border-left: 3px solid var(--sh-violet);
    padding-left: 10px;
    color: #ffffff;
}

.sh-footer {
    display: grid;
    width: min(1180px, calc(100% - 80px));
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 46px;
    align-items: center;
    margin: 0 auto;
    padding: 58px 0;
}

.sh-brand.footer .sh-brand-mark {
    color: #ffffff;
    background: var(--sh-primary);
}

.sh-brand.footer strong {
    color: var(--sh-ink);
}

.sh-footer p {
    margin: 0;
    color: var(--sh-muted);
    font-size: 14px;
}

.sh-footer > div {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--sh-faint);
    font-size: 12px;
}

.sh-footer > div a {
    color: var(--sh-ink);
    font-variation-settings: "wght" 600;
}

.sh-footer,
.sh-footer .sh-brand strong,
.sh-footer p,
.sh-footer > div,
.sh-footer > div a {
    font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-variation-settings: "wght" 460;
    line-height: 1.5;
}

.sh-footer > div a:hover,
.sh-footer > div a:focus-visible {
    color: #5c42a5;
    outline: none;
}

.sh-shell.is-motion-ready [data-sh-reveal] {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--sh-delay, 0ms);
}

.sh-shell.is-motion-ready [data-sh-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1080px) {
    .sh-desktop-nav {
        display: none;
    }

    .sh-nav {
        grid-template-columns: auto 1fr auto;
    }

    .sh-project-copy {
        padding: 40px;
    }

    .sh-about-lead {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .sh-about-lead > p {
        max-width: 720px;
    }

    .sh-path-layout {
        grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    }

    .sh-contact-inner {
        gap: 54px;
    }

    .sh-diabetes-heading {
        grid-template-columns: 1fr;
    }

    .sh-diabetes-heading > p:last-child {
        grid-column: 1;
        grid-row: auto;
        margin-top: 22px;
    }

    .sh-diabetes-origin,
    .sh-diabetes-challenge {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .sh-story-photo-challenge img {
        aspect-ratio: 16 / 10;
        object-position: center 39%;
    }
}

@media (max-width: 1080px) {
    .sh-announcement {
        margin-right: 18px;
        margin-left: 18px;
    }

    .sh-nav {
        grid-template-columns: auto 1fr auto;
        padding: 0 22px;
    }

    .sh-nav-actions {
        display: none;
    }

    .sh-menu-button {
        display: grid;
        grid-column: 3;
        width: 44px;
        height: 44px;
        place-items: center;
        justify-self: end;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 8px;
        padding: 0;
        color: #ffffff;
        background: rgba(14, 12, 31, 0.36);
        cursor: pointer;
    }

    .sh-menu-button:hover,
    .sh-menu-button:focus-visible {
        background: rgba(14, 12, 31, 0.72);
    }

    .sh-menu-button:focus-visible {
        outline: 2px solid var(--sh-violet);
        outline-offset: 2px;
    }

    .sh-mobile-menu {
        position: absolute;
        top: 62px;
        right: 22px;
        display: grid;
        width: min(240px, calc(100vw - 44px));
        overflow: hidden;
        border: 1px solid var(--sh-line-dark);
        border-radius: 12px;
        padding: 8px;
        background: var(--sh-primary-deep);
        box-shadow: 0 12px 30px rgba(5, 4, 13, 0.34);
    }

    .sh-mobile-menu[hidden] {
        display: none;
    }

    .sh-mobile-menu a {
        display: flex;
        min-height: 44px;
        align-items: center;
        border-radius: 8px;
        padding: 12px 14px;
        color: #ffffff;
        font-size: 14px;
    }

    .sh-mobile-menu a:hover,
    .sh-mobile-menu a:focus-visible {
        background: rgba(255, 255, 255, 0.1);
        outline: none;
    }

    .sh-hero-content {
        width: calc(100% - 48px);
    }

    .sh-section,
    .sh-contact-inner,
    .sh-footer {
        width: calc(100% - 48px);
    }

    .sh-section {
        padding: 88px 0;
    }

    .sh-section-heading h2,
    .sh-simple-heading h2,
    .sh-about-lead h2,
    .sh-contact-copy h2 {
        font-size: 42px;
    }

    .sh-project-tabs[data-project-count] {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
    }

    .sh-project-tab {
        min-width: 0;
    }

    .sh-project-tab + .sh-project-tab {
        border-left: 0;
    }

    .sh-project-tab:nth-child(even) {
        border-left: 1px solid var(--sh-line);
    }

    .sh-project-tab:nth-child(n + 3) {
        border-top: 1px solid var(--sh-line);
    }

    .sh-project-panel {
        grid-template-columns: 1fr;
    }

    .sh-project-visual {
        min-height: 0;
        aspect-ratio: 16 / 9;
        order: -1;
    }

    .sh-about,
    .sh-skills {
        padding: 88px 24px;
    }

    .sh-path-layout {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .sh-skill-grid {
        grid-template-columns: 1fr;
    }

    .sh-contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 88px 0;
    }

    .sh-footer {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sh-footer > div {
        justify-content: space-between;
    }
}

@media (max-width: 760px) {
    .sh-diabetes-heading { grid-template-columns: 1fr; }
    .sh-diabetes-heading > p:last-child { grid-column: 1; grid-row: auto; margin-top: 22px; }
    .sh-diabetes-heading h2 { font-size: 48px; }
    .sh-diabetes-origin,
    .sh-diabetes-challenge { gap: 42px; margin-top: 64px; }
    .sh-diabetes-quote { margin: 78px 0; padding: 58px 30px; }
    .sh-diabetes-timeline { grid-template-columns: 1fr; gap: 28px; margin-top: 78px; padding-left: 30px; }
    .sh-diabetes-timeline::before { top: 5px; right: auto; bottom: 6px; left: 6px; width: 1px; height: auto; }
    .sh-diabetes-timeline article { padding-top: 0; }
    .sh-diabetes-timeline article::before { top: 3px; left: -29px; }
    .sh-diabetes-close { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
    .sh-hero {
        height: min(780px, calc(100svh - 48px));
        min-height: 560px;
        background: #0d0c23;
    }

    .sh-diabetes-inner {
        width: calc(100% - 40px);
        padding: 88px 0 96px;
    }

    .sh-diabetes-heading h2 {
        font-size: 40px;
    }

    .sh-diabetes-future h3 {
        font-size: 31px;
    }

    .sh-hero-media {
        inset: -1% 0 0;
        top: -1%;
        bottom: auto;
        width: 100%;
        height: 102%;
        transform: none;
        object-position: 55% center;
    }

    .sh-hero-overlay {
        background: rgba(14, 12, 31, 0.18);
    }

    .sh-announcement {
        min-height: 62px;
        justify-content: space-between;
        gap: 10px;
        margin: 8px 16px 0;
        border-radius: 14px;
        padding: 10px 16px;
        font-size: 12px;
        line-height: 1.35;
    }

    .sh-announcement > span:first-child {
        max-width: 210px;
    }

    .sh-announcement > span:last-child > span:first-child,
    .sh-announcement > span:last-child {
        font-size: 0;
    }

    .sh-announcement .sh-icon {
        font-size: 22px !important;
    }

    .sh-nav {
        min-height: 66px;
        padding: 0 16px;
    }

    .sh-brand strong {
        font-size: 15px;
    }

    .sh-brand {
        min-height: 44px;
    }

    .sh-mobile-menu {
        top: 60px;
        right: 16px;
    }

    .sh-hero-content {
        width: calc(100% - 40px);
        height: calc(100% - 136px);
        min-height: 0;
        align-items: flex-start;
        justify-content: center;
        padding: 40px 0 70px;
        text-align: left;
    }

    .sh-hero-content > p:first-child {
        font-size: 12px;
    }

    .sh-hero-content h1 {
        max-width: 210px;
        margin-top: 12px;
        font-size: 48px;
        line-height: 1;
    }

    .sh-hero-content > p:nth-of-type(2) {
        max-width: 205px;
        margin: 18px 0 23px;
        font-size: 16px;
        line-height: 1.45;
    }

    .sh-section,
    .sh-contact-inner,
    .sh-footer {
        width: calc(100% - 32px);
    }

    .sh-section {
        padding: 72px 0;
    }

    .sh-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .sh-section-heading h2,
    .sh-simple-heading h2,
    .sh-about-lead h2,
    .sh-contact-copy h2 {
        font-size: 34px;
        line-height: 1.04;
    }

    .sh-project-tabs[data-project-count] {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
        scroll-snap-type: none;
    }

    .sh-project-tab {
        min-width: 0;
        min-height: 72px;
        flex: none;
        padding: 10px 9px 7px;
        font-size: 13px;
        line-height: 1.25;
        scroll-snap-align: none;
    }

    .sh-project-tab + .sh-project-tab {
        border-left: 0;
    }

    .sh-project-tab:nth-child(even) {
        border-left: 1px solid var(--sh-line);
    }

    .sh-project-tab:nth-child(n + 3) {
        border-top: 1px solid var(--sh-line);
    }

    .sh-project-panels,
    .sh-project-panel {
        min-height: 0;
    }

    .sh-project-panel {
        border-radius: 0 0 12px 12px;
    }

    .sh-project-visual {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .sh-project-copy {
        padding: 28px 24px 32px;
    }

    .sh-project-copy h3 {
        margin-top: 28px;
        font-size: 31px;
    }

    .sh-project-summary {
        font-size: 15px;
    }

    .sh-archive-visual strong {
        font-size: 48px;
    }

    .sh-about,
    .sh-skills {
        padding: 72px 16px;
    }

    .sh-about-lead > p,
    .sh-simple-heading p,
    .sh-contact-copy > p {
        font-size: 15px;
    }

    .sh-simple-heading {
        margin-bottom: 38px;
    }

    .sh-direction-item {
        padding: 22px;
    }

    .sh-history-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .sh-skill-item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
    }

    .sh-contact-inner {
        padding: 72px 0;
    }

    .sh-contact-form {
        padding: 24px;
    }

    .sh-shell .contact-form {
        grid-template-columns: 1fr;
    }

    .sh-shell .contact-form input,
    .sh-shell .contact-form textarea {
        min-height: 48px;
        font-size: 16px;
    }

    .sh-shell .contact-form textarea {
        min-height: 140px;
    }

    .sh-shell .contact-form .button.primary {
        width: 100%;
        min-height: 48px;
    }

    .sh-social-links a {
        min-height: 44px;
        padding-top: 8px;
    }

    .sh-footer {
        padding: 42px 0;
    }

    .sh-footer > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 340px) {
    .sh-hero {
        min-height: 540px;
    }

    .sh-announcement {
        min-height: 54px;
        padding: 8px 13px;
        font-size: 11px;
    }

    .sh-nav {
        min-height: 58px;
    }

    .sh-hero-content {
        height: calc(100% - 112px);
        min-height: 0;
        padding: 10px 0 105px;
    }

    .sh-hero-content h1 {
        margin-top: 8px;
        font-size: 38px;
    }

    .sh-hero-content > p:nth-of-type(2) {
        margin: 12px 0 16px;
        font-size: 15px;
        line-height: 1.35;
    }

    .sh-hero-button {
        min-height: 44px;
        gap: 10px;
        padding: 0 12px 0 16px;
        font-size: 14px;
    }

    .sh-hero-button .sh-icon {
        width: 28px;
        height: 28px;
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .sh-shell *,
    .sh-shell *::before,
    .sh-shell *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .sh-shell [data-sh-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }

    .sh-hero-media {
        transform: none !important;
    }

    .sh-story-photo img,
    .sh-diabetes-cta .sh-icon { transition: none; }
    .sh-story-photo:hover img { transform: none; }
}
