:root {
    color-scheme: light dark;
    --background: #f5f5f7;
    --surface: #ffffff;
    --surface-soft: #fbfbfd;
    --text: #1d1d1f;
    --text-muted: #5f6368;
    --text-subtle: #656970;
    --accent: #6f5418;
    --accent-contrast: #ffffff;
    --brand-accent: #7a5b1d;
    --flash-accent: #3a3a3c;
    --learning-accent: #55565a;
    --line: rgba(0, 0, 0, 0.12);
    --line-strong: rgba(0, 0, 0, 0.24);
    --nav: rgba(245, 245, 247, 0.82);
    --nav-solid: rgba(245, 245, 247, 0.96);
    --nav-inverse: #fffaf1;
    --focus-ring: rgba(122, 91, 29, 0.72);
    --hover-bg: rgba(122, 91, 29, 0.1);
    --selected-bg: rgba(122, 91, 29, 0.14);
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    --hero-text: #fffaf1;
    --hero-muted: rgba(255, 250, 241, 0.78);
    --max-content: 1060px;
    --measure: 700px;
    --font-system: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: #050505;
        --surface: #111113;
        --surface-soft: #171719;
        --text: #f5f5f7;
        --text-muted: #c7c7cc;
        --text-subtle: #a1a1a8;
        --accent: #d8b779;
        --accent-contrast: #141414;
        --brand-accent: #d8b779;
        --flash-accent: #c7c7cc;
        --learning-accent: #a1a1a8;
        --line: rgba(255, 255, 255, 0.14);
        --line-strong: rgba(255, 255, 255, 0.34);
        --nav: rgba(5, 5, 5, 0.76);
        --nav-solid: rgba(5, 5, 5, 0.92);
        --focus-ring: rgba(216, 183, 121, 0.86);
        --hover-bg: rgba(216, 183, 121, 0.16);
        --selected-bg: rgba(216, 183, 121, 0.22);
        --shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
    }
}

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

html {
    min-height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--background);
    font-family: var(--font-system);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(122, 91, 29, 0.18);
}

body.nav-open {
    overflow: hidden;
}

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

main:focus {
    outline: 0;
}

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

a,
button {
    touch-action: manipulation;
}

a {
    color: var(--accent);
    font-weight: 600;
    text-decoration-color: var(--accent);
    text-decoration-color: color-mix(in srgb, var(--accent) 68%, transparent);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.22em;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, text-decoration-color 180ms ease;
}

a:hover {
    color: var(--accent);
    text-decoration-color: currentColor;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 24px;
    color: var(--text);
    font-family: var(--font-system);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.08;
    overflow-wrap: anywhere;
}

h1 {
    font-size: 46px;
}

h2 {
    font-size: 34px;
}

h3 {
    font-size: 21px;
}

p {
    max-width: var(--measure);
    margin: 0 0 24px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.56;
    overflow-wrap: break-word;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 40;
    transform: translateY(-150%);
    min-height: 44px;
    padding: 12px 16px;
    color: var(--accent-contrast);
    background: var(--accent);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 160ms ease;
}

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

.site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    color: var(--nav-inverse);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease;
}

.site-nav.is-scrolled,
.site-nav.is-open,
.site-nav:focus-within {
    color: var(--text);
    background: var(--nav-solid);
    border-color: var(--line);
}

@supports ((backdrop-filter: blur(18px)) or (-webkit-backdrop-filter: blur(18px))) {
    .site-nav.is-scrolled,
    .site-nav.is-open,
    .site-nav:focus-within {
        background: var(--nav);
        -webkit-backdrop-filter: saturate(180%) blur(18px);
        backdrop-filter: saturate(180%) blur(18px);
    }
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 1180px);
    min-height: 64px;
    margin: 0 auto;
    padding: 0 22px;
}

.brand,
.nav-links a,
.button,
.eyebrow,
.card-kicker,
.social-links a,
.site-footer {
    font-family: var(--font-system);
}

.brand,
.nav-links a {
    color: inherit;
    text-decoration: none;
}

.brand {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
}

.brand span {
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 13px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="location"],
.nav-links a[aria-current="page"] {
    background: var(--selected-bg);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.nav-toggle:hover {
    background: var(--hover-bg);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 2px;
}

.intro {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: end;
    min-height: 100vh;
    min-height: 100svh;
    padding: 116px 24px 84px;
    color: var(--hero-text);
    background-color: #000;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.2) 28%, rgba(0, 0, 0, 0.82) 58%, rgba(0, 0, 0, 0.96) 100%),
        image-set(url("img/paul-tocatlian-hero-black-white-portrait.webp?v=564fe53321fc") type("image/webp"), url("img/paul-tocatlian-hero-black-white-portrait.jpg?v=edd721c7eebc") type("image/jpeg"));
    background-position: left center;
    background-size: cover;
}

.intro-body {
    align-self: center;
    width: 100%;
    max-width: 720px;
    margin-right: max(0px, calc((100vw - 1180px) / 2));
}

.intro h1,
.intro p {
    color: inherit;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--brand-accent);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.4;
}

.intro .eyebrow {
    color: #f1d18f;
}

.brand-heading {
    max-width: 780px;
    margin-bottom: 24px;
    color: var(--hero-text);
    font-size: 56px;
}

.intro-text {
    max-width: 650px;
    color: var(--hero-muted);
    font-size: 21px;
}

.hero-signals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 650px;
    padding: 0;
    margin: 34px 0 0;
    list-style: none;
}

.hero-signals li {
    min-width: 0;
}

.hero-signals a {
    display: block;
    min-height: 118px;
    padding: 18px;
    color: inherit;
    border: 1px solid rgba(255, 250, 241, 0.26);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.08);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
    text-decoration: none;
}

.hero-signals a:hover,
.hero-signals a:focus-visible {
    border-color: rgba(241, 209, 143, 0.72);
    background: rgba(255, 250, 241, 0.12);
}

.hero-signals span {
    display: block;
    margin-bottom: 14px;
    color: #f1d18f;
    font-size: 14px;
    font-weight: 700;
}

.hero-signals strong,
.hero-signals small {
    display: block;
}

.hero-signals strong {
    color: var(--hero-text);
    font-size: 17px;
    line-height: 1.24;
}

.hero-signals small {
    margin-top: 8px;
    color: rgba(255, 250, 241, 0.72);
    font-size: 14px;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 650px;
    margin-top: 18px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
}

.button-secondary {
    color: var(--hero-text);
    border-color: rgba(255, 250, 241, 0.45);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    color: var(--hero-text);
    background: rgba(255, 250, 241, 0.14);
}

.button-amazon {
    min-width: 190px;
    color: #18120a;
    border-color: #ffbc52;
    background: #ffbc52;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
}

.button-amazon:hover,
.button-amazon:focus-visible {
    color: #18120a;
    border-color: #ffd188;
    background: #ffd188;
}

.scroll-cue {
    position: absolute;
    right: 32px;
    bottom: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 250, 241, 0.44);
    border-radius: 50%;
    color: var(--hero-text);
    font-size: 28px;
    line-height: 1;
    text-decoration: none;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
    color: var(--hero-text);
    background: rgba(255, 250, 241, 0.14);
}

.scroll-cue:hover span {
    animation: pulse 1.5s linear infinite;
}

.article-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 88vh;
    min-height: 88svh;
    padding: 116px 24px 72px;
    color: var(--hero-text);
    background-color: #050505;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.66) 52%, rgba(0, 0, 0, 0.42)),
        image-set(url("img/paul-tocatlian-hero-black-white-portrait.webp?v=564fe53321fc") type("image/webp"), url("img/paul-tocatlian-hero-black-white-portrait.jpg?v=edd721c7eebc") type("image/jpeg"));
    background-position: center;
    background-size: cover;
}

.article-hero-inner {
    width: min(100%, var(--max-content));
    margin: 0 auto;
}

.article-hero .eyebrow {
    color: #f1d18f;
}

.article-hero h1 {
    max-width: 840px;
    color: var(--hero-text);
    font-size: 52px;
}

.article-hero-text {
    max-width: 720px;
    color: var(--hero-muted);
    font-size: 21px;
}

.article-section {
    padding: 104px 24px;
}

.article-summary {
    background: var(--surface);
}

.article-band {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.article-wrap {
    width: min(100%, 820px);
    margin: 0 auto;
}

.article-wrap p {
    max-width: none;
}

.article-wrap h2 {
    max-width: 760px;
}

.article-section .content-wrap > .section-intro {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.project-stack {
    display: grid;
    gap: 18px;
    margin-top: 48px;
}

.journey-project,
.takeaway-item,
.experiment-note {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.journey-project:hover,
.journey-project:focus-within,
.takeaway-item:hover,
.takeaway-item:focus-within,
.experiment-note:hover,
.experiment-note:focus-within {
    background: var(--surface);
    border-color: var(--line-strong);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.journey-project {
    padding: 28px;
}

.project-copy p {
    max-width: none;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.56;
}

.project-copy h3 {
    margin-bottom: 16px;
    font-size: 28px;
}

.project-meta {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.project-meta strong {
    color: var(--text);
}

.project-link {
    margin-bottom: 0;
}

.project-link a,
.project-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.project-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.project-screenshots {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(140px, 220px);
    gap: 18px;
    align-items: start;
    margin-top: 28px;
}

.project-shot {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-width: 0;
    height: 100%;
    margin: 0;
}

.project-shot img {
    width: 100%;
    height: clamp(220px, 31vw, 360px);
    object-fit: contain;
    object-position: top center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.project-shot figcaption {
    margin-top: 12px;
    color: var(--text-subtle);
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

.project-showcase-set {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.project-site-showcase {
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.project-site-showcase h4 {
    margin-bottom: 18px;
    font-size: 20px;
}

.project-site-showcase .project-screenshots {
    margin-top: 0;
}

.experiment-note {
    margin-top: 18px;
    padding: 26px;
}

.experiment-note h4 {
    margin-bottom: 12px;
    font-size: 22px;
}

.experiment-note p {
    max-width: none;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 17px;
}

.takeaway-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 48px;
}

.takeaway-item {
    padding: 26px;
}

.takeaway-item span {
    display: block;
    margin-bottom: 26px;
    color: var(--brand-accent);
    font-size: 14px;
    font-weight: 700;
}

.takeaway-item h3 {
    margin-bottom: 14px;
}

.takeaway-item p {
    max-width: none;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.56;
}

.about-section,
.content-section {
    padding: 96px 24px;
}

.about-section {
    background: var(--surface);
}

.about-layout {
    width: min(100%, var(--measure));
    margin: 0 auto;
}

.about-copy {
    max-width: var(--measure);
}

.inline-portrait {
    display: block;
    float: left;
    width: 76px;
    aspect-ratio: 1;
    margin: 6px 18px 8px 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface-soft);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    shape-outside: circle(50%);
}

.inline-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.about-copy p {
    color: var(--text-muted);
}

.answer-lead {
    color: var(--text);
    font-weight: 600;
}

.content-wrap {
    width: min(100%, var(--max-content));
    margin: 0 auto;
}

.content-wrap > .eyebrow,
.content-wrap > h2,
.content-wrap > p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 52px auto 0;
}

.practice-panel {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #050505;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.practice-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.practice-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82));
}

.practice-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease, filter 700ms ease;
}

.practice-panel:hover .practice-media img,
.practice-panel:focus-within .practice-media img {
    filter: saturate(1.14) contrast(1.06);
    transform: scale(1.045);
}

.practice-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    padding: 28px;
    color: var(--hero-text);
}

.practice-copy h3 {
    max-width: 440px;
    margin-bottom: 16px;
    color: var(--hero-text);
    font-size: 34px;
}

.practice-copy p {
    max-width: 430px;
    color: rgba(255, 250, 241, 0.8);
    font-size: 17px;
    line-height: 1.56;
}

.practice-copy > a {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 44px;
    color: var(--hero-text);
    text-decoration-color: rgba(255, 250, 241, 0.6);
}

.practice-copy > a:hover,
.practice-copy > a:focus-visible {
    color: var(--hero-text);
    text-decoration-color: currentColor;
}

.card-kicker {
    display: block;
    margin-bottom: 16px;
    color: var(--brand-accent);
    font-size: 14px;
    font-weight: 700;
}

.practice-copy .card-kicker {
    color: #f1d18f;
}

.latest-post-section {
    background: var(--surface-soft);
    border-top: 1px solid var(--line);
}

.latest-post-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 0 0 26px;
    border-left: 4px solid var(--accent);
}

.latest-post-feature-inline {
    margin-top: 42px;
}

.latest-post-copy {
    min-width: 0;
}

.latest-post-copy h2 {
    max-width: 760px;
    margin-bottom: 18px;
}

.latest-post-copy p:not(.eyebrow) {
    max-width: 760px;
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.58;
}

.latest-post-copy time {
    display: block;
    color: var(--text-subtle);
    font-size: 14px;
    font-weight: 700;
}

.latest-post-link {
    color: var(--accent-contrast);
    border-color: var(--accent);
    background: var(--accent);
    white-space: nowrap;
}

.latest-post-link:hover,
.latest-post-link:focus-visible {
    color: var(--accent-contrast);
    border-color: var(--brand-accent);
    background: var(--brand-accent);
}

.manifesto-section {
    padding: 112px 24px;
    color: var(--hero-text);
    background-color: #050505;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42)),
        image-set(url("img/kisau-photography-black-white-travel-street-scene.webp?v=e207e7ba4652") type("image/webp"), url("img/kisau-photography-black-white-travel-street-scene.jpg?v=196f3423a898") type("image/jpeg"));
    background-position: center;
    background-size: cover;
}

.manifesto-wrap {
    width: min(100%, var(--max-content));
    margin: 0 auto;
}

.manifesto-section .eyebrow {
    color: #f1d18f;
}

.manifesto-section h2 {
    max-width: 680px;
    color: var(--hero-text);
    font-size: 48px;
}

.manifesto-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
    margin: 48px 0 0;
    list-style: none;
}

.manifesto-list li {
    min-height: 250px;
    padding: 24px;
    border: 1px solid rgba(255, 250, 241, 0.2);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.08);
}

.manifesto-list span {
    display: block;
    margin-bottom: 44px;
    color: #f1d18f;
    font-size: 14px;
    font-weight: 700;
}

.manifesto-list strong {
    display: block;
    margin-bottom: 14px;
    color: var(--hero-text);
    font-size: 24px;
    line-height: 1.14;
}

.manifesto-list p {
    margin-bottom: 0;
    color: rgba(255, 250, 241, 0.76);
    font-size: 16px;
    line-height: 1.5;
}

.detail-section {
    border-top: 1px solid var(--line);
    background: var(--background);
}

.story-block {
    max-width: 880px;
    margin: 0 auto;
}

.story-block > .eyebrow,
.story-block > h2,
.story-block > p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.story-block h2 > a,
.split-story h2 > a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.essay-stack {
    display: grid;
    gap: 16px;
    margin-top: 42px;
}

.essay-stack section {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.essay-stack section:hover,
.essay-stack section:focus-within {
    background: var(--surface);
    border-color: var(--line-strong);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.essay-stack h3 {
    margin-bottom: 14px;
}

.essay-stack p {
    max-width: none;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.56;
}

.spark-course-stack {
    margin-top: 0;
}

.purpose-section {
    background: var(--surface);
}

.challenge-feature {
    position: relative;
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
    margin: 42px 0 40px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 250, 241, 0.22);
    border-radius: 8px;
    color: var(--hero-text);
    background: #080809;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.challenge-feature::before,
.challenge-feature::after {
    position: absolute;
    inset: 0;
    content: "";
}

.challenge-feature::before {
    z-index: -2;
    background-image:
        linear-gradient(112deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.68) 54%, rgba(78, 78, 82, 0.38)),
        image-set(url("img/spark-academy-continuous-learning-stage-performance.webp?v=c4fc2674c0ef") type("image/webp"), url("img/spark-academy-continuous-learning-stage-performance.jpg?v=6a1bf6144bc0") type("image/jpeg"));
    background-position: center;
    background-size: cover;
}

.challenge-feature::after {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255, 250, 241, 0.12), transparent 34%),
        linear-gradient(155deg, transparent 42%, rgba(255, 250, 241, 0.08));
}

.challenge-feature picture {
    position: relative;
    display: block;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 250, 241, 0.24);
    border-radius: 8px;
    aspect-ratio: 1;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.challenge-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.04);
}

.challenge-copy {
    align-self: center;
    min-width: 0;
}

.challenge-feature .eyebrow {
    margin-bottom: 10px;
    color: #f1d18f;
}

.challenge-feature h3 {
    margin-bottom: 12px;
    color: var(--hero-text);
    font-size: 28px;
}

.challenge-copy > p:not(.eyebrow) {
    max-width: 520px;
    margin-bottom: 0;
    color: rgba(255, 250, 241, 0.8);
    font-size: 17px;
}

.challenge-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 14px 0 0;
    margin: 22px 0 0;
    border-top: 1px solid rgba(255, 250, 241, 0.2);
    list-style: none;
}

.challenge-steps li {
    min-width: 0;
    min-height: 74px;
    padding: 12px;
    border: 1px solid rgba(255, 250, 241, 0.2);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.08);
}

.challenge-steps span,
.challenge-steps strong {
    display: block;
}

.challenge-steps span {
    margin-bottom: 12px;
    color: #f1d18f;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.challenge-steps strong {
    color: var(--hero-text);
    font-size: 15px;
    line-height: 1.24;
    overflow-wrap: anywhere;
}

.split-story {
    max-width: 820px;
    margin: 0 auto;
    padding: 52px 0 0;
    border-top: 1px solid var(--line);
}

.split-story:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.split-story p {
    color: var(--text-muted);
}

.answer-section {
    background: var(--background);
    border-top: 1px solid var(--line);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 44px;
}

.faq-item {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.faq-item:hover,
.faq-item:focus-within {
    border-color: var(--line-strong);
    background: var(--surface);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    margin-bottom: 14px;
    line-height: 1.14;
}

.faq-item p {
    max-width: none;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.56;
}

.contact-section {
    padding: 110px 24px;
    color: var(--hero-text);
    text-align: center;
    background-color: #000;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.84)),
        image-set(url("img/kisau-photography-black-white-travel-street-scene.webp?v=e207e7ba4652") type("image/webp"), url("img/kisau-photography-black-white-travel-street-scene.jpg?v=196f3423a898") type("image/jpeg"));
    background-position: center center;
    background-size: cover;
}

.contact-section .eyebrow,
.contact-section h2 {
    margin-right: auto;
    margin-left: auto;
}

.contact-section .eyebrow {
    color: #f1d18f;
}

.contact-section h2 {
    margin-bottom: 18px;
    color: var(--hero-text);
}

.contact-section .section-intro {
    margin: 0 auto 34px;
    color: var(--hero-muted);
    font-size: 18px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-links li {
    flex: 0 0 auto;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(255, 250, 241, 0.48);
    border-radius: 8px;
    color: var(--hero-text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.social-links a:hover,
.social-links a:focus-visible {
    color: var(--accent-contrast);
    background: var(--accent);
    border-color: var(--accent);
}

@media (min-width: 1000px) {
    .social-links {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .social-links a {
        min-height: 44px;
        padding-right: 14px;
        padding-left: 14px;
        font-size: 14px;
    }
}

.site-footer {
    padding: 26px 24px;
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.footer-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(100%, var(--max-content));
    margin: 0 auto;
}

.footer-layout p {
    max-width: none;
    margin: 0;
    color: var(--text-subtle);
    font-size: 15px;
    line-height: 1.4;
}

.footer-layout a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

::selection {
    color: var(--accent-contrast);
    text-shadow: none;
    background: var(--accent);
}

@keyframes pulse {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }

    100% {
        transform: translateY(0);
    }
}

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 40px;
    }

    p {
        font-size: 20px;
    }

    .brand-heading {
        font-size: 74px;
    }

    .intro-text {
        font-size: 22px;
    }

    .about-section,
    .content-section,
    .article-section {
        padding-top: 132px;
        padding-bottom: 132px;
    }
}

@media (max-width: 900px) {
    .intro {
        background-image:
            linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.76) 52%, rgba(0, 0, 0, 0.92) 100%),
            image-set(url("img/paul-tocatlian-hero-black-white-portrait.webp?v=564fe53321fc") type("image/webp"), url("img/paul-tocatlian-hero-black-white-portrait.jpg?v=edd721c7eebc") type("image/jpeg"));
    }

    .practice-grid,
    .takeaway-grid,
    .faq-grid,
    .manifesto-list {
        grid-template-columns: 1fr;
    }

    .practice-panel {
        min-height: 480px;
    }

    .manifesto-list li {
        min-height: 0;
    }

    .latest-post-feature {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .latest-post-link {
        justify-self: start;
    }

    .manifesto-list span {
        margin-bottom: 26px;
    }
}

@media (max-width: 720px) {
    html {
        scroll-padding-top: 78px;
    }

    .site-nav {
        color: var(--text);
        background: var(--nav-solid);
        border-color: var(--line);
    }

    @supports ((backdrop-filter: blur(18px)) or (-webkit-backdrop-filter: blur(18px))) {
        .site-nav {
            background: var(--nav);
            -webkit-backdrop-filter: saturate(180%) blur(18px);
            backdrop-filter: saturate(180%) blur(18px);
        }
    }

    .nav-inner {
        padding-right: 18px;
        padding-left: 18px;
    }

    .nav-toggle {
        display: inline-block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 12px 12px;
        background: var(--nav-solid);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    @supports ((backdrop-filter: blur(18px)) or (-webkit-backdrop-filter: blur(18px))) {
        .nav-links {
            background: var(--nav);
            -webkit-backdrop-filter: saturate(180%) blur(18px);
            backdrop-filter: saturate(180%) blur(18px);
        }
    }

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

    .nav-links a {
        justify-content: center;
        min-height: 48px;
        padding: 0 20px;
        text-align: center;
    }

    .intro {
        min-height: 94vh;
        min-height: 94svh;
        padding-top: 104px;
        justify-items: start;
        background-image:
            linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.78) 100%),
            image-set(url("img/paul-tocatlian-hero-black-white-portrait.webp?v=564fe53321fc") type("image/webp"), url("img/paul-tocatlian-hero-black-white-portrait.jpg?v=edd721c7eebc") type("image/jpeg"));
        background-position: 18% bottom;
    }

    .article-hero {
        min-height: 86vh;
        min-height: 86svh;
        padding-top: 104px;
        background-image:
            linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.74)),
            image-set(url("img/paul-tocatlian-hero-black-white-portrait.webp?v=564fe53321fc") type("image/webp"), url("img/paul-tocatlian-hero-black-white-portrait.jpg?v=edd721c7eebc") type("image/jpeg"));
        background-position: 22% bottom;
    }

    .intro-body {
        max-width: 640px;
        margin-right: 0;
    }

    .brand-heading {
        font-size: 48px;
    }

    .hero-signals {
        grid-template-columns: 1fr;
    }

    .social-links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button,
    .social-links a {
        width: 100%;
    }

    .scroll-cue {
        right: 24px;
        bottom: 22px;
        width: 50px;
        height: 50px;
    }

    .about-section,
    .content-section,
    .article-section,
    .manifesto-section,
    .contact-section,
    .site-footer {
        padding-right: 20px;
        padding-left: 20px;
    }

    .challenge-feature {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 18px;
    }

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

    .project-shot-mobile {
        width: min(100%, 260px);
    }

    .project-shot img {
        height: clamp(210px, 64vw, 320px);
    }

    .challenge-feature picture {
        width: 100%;
        max-width: 240px;
        justify-self: start;
    }

    .footer-layout {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 17px;
    }

    .nav-inner {
        min-height: 60px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .brand {
        font-size: 16px;
    }

    .intro {
        padding: 96px 18px 78px;
        background-position: 24% bottom;
    }

    .brand-heading {
        font-size: 40px;
        line-height: 1.06;
    }

    .intro-text {
        font-size: 19px;
    }

    .hero-signals a {
        min-height: 0;
        padding: 16px;
    }

    .latest-post-feature {
        padding-left: 18px;
    }

    .inline-portrait {
        width: 64px;
        margin-right: 14px;
        margin-bottom: 6px;
    }

    .about-section,
    .content-section,
    .article-section {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .article-hero {
        padding: 96px 18px 68px;
    }

    .article-hero h1 {
        font-size: 38px;
        line-height: 1.08;
    }

    .article-hero-text {
        font-size: 18px;
    }

    .manifesto-section {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .manifesto-section h2 {
        font-size: 36px;
    }

    .about-section,
    .content-section,
    .article-section,
    .contact-section,
    .site-footer {
        padding-right: 18px;
        padding-left: 18px;
    }

    .practice-panel {
        min-height: 420px;
    }

    .practice-copy {
        padding: 22px;
    }

    .practice-copy h3 {
        font-size: 28px;
    }

    .challenge-feature h3 {
        font-size: 24px;
    }

    .challenge-steps {
        gap: 6px;
    }

    .challenge-steps li {
        min-height: 68px;
        padding: 10px;
    }

    .challenge-steps strong {
        font-size: 14px;
    }

    .faq-item {
        padding: 22px;
    }

    .journey-project,
    .takeaway-item,
    .experiment-note {
        padding: 22px;
    }

    .split-story {
        padding-top: 44px;
        padding-bottom: 44px;
    }
}

@media (max-width: 340px) {
    .brand {
        max-width: 210px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-heading {
        font-size: 36px;
    }

    .article-hero h1 {
        font-size: 34px;
    }

    .button,
    .social-links a {
        padding-right: 14px;
        padding-left: 14px;
    }

    .practice-copy h3 {
        font-size: 26px;
    }
}

@media (prefers-contrast: more) {
    :root {
        --line: currentColor;
        --line-strong: currentColor;
    }

    .button,
    .nav-toggle,
    .practice-panel,
    .journey-project,
    .takeaway-item,
    .experiment-note,
    .project-shot img,
    .manifesto-list li,
    .challenge-feature,
    .faq-item,
    .social-links a,
    .site-footer {
        border-width: 2px;
    }
}

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

    .reveal-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
