:root {
    --woh-orange: #e84e16;
    --woh-orange-hover: #d04412;
    --woh-orange-soft: rgba(232, 78, 22, 0.12);
    --woh-ink: #14161a;
    --woh-charcoal: #1b1e23;
    --woh-hero: #121418;
    --woh-cream: #f3f0ea;
    --woh-paper: #faf8f4;
    --woh-white: #ffffff;
    --woh-muted: #4a5058;
    --woh-muted-dark: #c4c8cf;
    --woh-line: rgba(20, 22, 26, 0.1);
    --woh-line-strong: rgba(20, 22, 26, 0.16);
    --woh-line-dark: rgba(255, 255, 255, 0.1);
    --woh-max: 1200px;
    --woh-radius: 12px;
    --woh-radius-sm: 8px;
    --woh-radius-lg: 20px;
    --woh-shadow: 0 1px 2px rgba(20, 22, 26, 0.04), 0 16px 40px rgba(20, 22, 26, 0.08);
    --woh-shadow-hover: 0 1px 2px rgba(20, 22, 26, 0.05), 0 18px 36px rgba(20, 22, 26, 0.1);
    --woh-header: 4.5rem;
    --woh-font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 5.5rem;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: clip;
    font-family: var(--woh-font);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--woh-ink);
    background: var(--woh-paper);
    -webkit-font-smoothing: antialiased;
}

main {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

main > .page-section:first-of-type {
    flex: 1 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

:focus-visible {
    outline: 2px solid var(--woh-orange);
    outline-offset: 3px;
}

.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;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 80;
    padding: 0.6rem 0.9rem;
    background: var(--woh-white);
    color: var(--woh-ink);
    border-radius: var(--woh-radius-sm);
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    top: 1rem;
}

.wrap {
    width: min(var(--woh-max), calc(100% - 2.5rem));
    margin-inline: auto;
}

.eyebrow {
    margin: 0 0 0.85rem;
    color: var(--woh-orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    max-width: 22ch;
    color: var(--woh-ink);
    font-size: clamp(1.85rem, 3.2vw, 2.85rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.035em;
    overflow-wrap: break-word;
}

.section-title-wide {
    max-width: 28ch;
}

.section-title span {
    display: block;
}

.lead {
    margin: 1.15rem 0 0;
    max-width: 38rem;
    color: var(--woh-muted);
    font-size: 1.125rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.7rem 1.2rem;
    border-radius: var(--woh-radius-sm);
    border: 1px solid transparent;
    font: inherit;
    font-size: 0.98rem;
    font-weight: 650;
    letter-spacing: -0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn-primary {
    background: var(--woh-orange);
    color: var(--woh-white);
}

.btn-primary:hover {
    background: var(--woh-orange-hover);
}

.btn-ghost {
    background: transparent;
    color: var(--woh-white);
    border-color: rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
}

.btn-ghost-dark {
    background: transparent;
    color: var(--woh-ink);
    border-color: var(--woh-line-strong);
}

.btn-ghost-dark:hover {
    background: rgba(20, 22, 26, 0.03);
}

.text-link {
    color: var(--woh-muted-dark);
    font-weight: 600;
    text-decoration: none;
}

.text-link:hover {
    color: var(--woh-white);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    flex-shrink: 0;
    height: var(--woh-header);
    color: var(--woh-white);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.is-home .site-header {
    position: fixed;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(18, 20, 24, 0.72), rgba(18, 20, 24, 0));
}

.is-inner .site-header,
.site-header.is-scrolled,
body.nav-open .site-header {
    background: rgba(18, 20, 24, 0.88);
    border-bottom-color: var(--woh-line-dark);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--woh-header);
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-wordmark {
    display: block;
    width: auto;
    height: 1.85rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.site-nav a:hover {
    color: var(--woh-white);
}

.site-nav .btn {
    color: var(--woh-white);
    margin-left: 0.25rem;
}

.nav-toggle {
    display: none;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--woh-radius-sm);
    background: rgba(255, 255, 255, 0.04);
    color: var(--woh-white);
    cursor: pointer;
}

.nav-toggle-bars {
    position: relative;
    display: block;
    width: 1.05rem;
    height: 1.5px;
    margin: 0 auto;
    background: currentColor;
    border-radius: 99px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 1.05rem;
    height: 1.5px;
    background: currentColor;
    border-radius: 99px;
    transition: transform 180ms ease;
}

.nav-toggle-bars::before {
    top: -5px;
}

.nav-toggle-bars::after {
    top: 5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
    top: 0;
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--woh-hero);
    color: var(--woh-white);
    padding: 7.25rem 0 3.75rem;
}

.is-home .hero {
    padding-top: 8.25rem;
}

.hero::before {
    content: "";
    position: absolute;
    width: 42rem;
    height: 42rem;
    right: -8rem;
    top: -10rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 78, 22, 0.16), transparent 68%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    margin: 0;
    max-width: 11.5em;
    font-size: clamp(2.35rem, 5.4vw, 4.35rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.045em;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.hero h1 em {
    display: block;
    margin-top: 0.12em;
    max-width: 11em;
    font-style: normal;
    color: #d8dbe0;
}

.hero-copy {
    margin: 1.15rem 0 0;
    max-width: 34rem;
    color: var(--woh-muted-dark);
    font-size: 1.1rem;
}

.hero-support {
    margin: 0.85rem 0 0;
    max-width: 34rem;
    color: #d5d8de;
    font-size: 1.02rem;
    font-weight: 600;
}

.hero-note {
    margin: 0.85rem 0 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.88rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.85rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 1.15rem;
    margin: 1.15rem 0 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-points li {
    position: relative;
    padding-left: 0.95rem;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48em;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: var(--woh-orange);
}

.hero-visual {
    position: relative;
    padding: 0.85rem 0.35rem 0.35rem;
}

.hero-visual-glow {
    position: absolute;
    inset: 8% 4% auto;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 78, 22, 0.22), transparent 72%);
    pointer-events: none;
}

.hero-visual-layer {
    position: absolute;
    inset: 1.15rem 0.35rem 0.15rem 1.15rem;
    border-radius: calc(var(--woh-radius-lg) + 4px);
    background: #1c2026;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    pointer-events: none;
}

.preview {
    position: relative;
    background: var(--woh-white);
    color: var(--woh-ink);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--woh-radius-lg);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    overflow: hidden;
}

.preview-hero {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18), 0 28px 64px rgba(0, 0, 0, 0.34);
}

.hero-float {
    position: absolute;
    right: -0.15rem;
    top: 0.15rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: var(--woh-charcoal);
    color: var(--woh-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.hero-float-dot {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--woh-orange);
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dash-stat {
    padding: 0.7rem 0.75rem;
    border-radius: 0.7rem;
    background: #f4f2ed;
}

.dash-stat.is-warn {
    background: rgba(232, 78, 22, 0.07);
}

.dash-stat.is-info {
    background: #eef4fb;
}

.dash-stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 750;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.dash-stat-label {
    display: block;
    margin-top: 0.2rem;
    color: var(--woh-muted);
    font-size: 0.76rem;
    font-weight: 650;
}

.dash-attention-title {
    margin: 0 0 0.35rem;
    color: var(--woh-muted);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dash-attention .preview-row {
    padding-left: 0;
    padding-right: 0;
}

.preview-chrome {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    background: #f3f4f6;
    border-bottom: 1px solid var(--woh-line);
}

.preview-dots {
    display: flex;
    gap: 0.35rem;
}

.preview-dots span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #d4d7dd;
}

.preview-chrome-title {
    color: var(--woh-muted);
    font-size: 0.82rem;
    font-weight: 650;
}

.preview-body {
    padding: 1.15rem 1.15rem 1.25rem;
}

.preview-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.preview-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.preview-count {
    margin: 0.2rem 0 0;
    color: var(--woh-muted);
    font-size: 0.86rem;
}

.preview-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.38rem 0.65rem;
    border-radius: 999px;
    background: var(--woh-orange-soft);
    color: var(--woh-orange);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.preview-rows {
    display: grid;
    gap: 0.15rem;
}

.preview-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.58rem 0.65rem;
    border-radius: 0.7rem;
}

.preview-row.is-warn {
    background: rgba(232, 78, 22, 0.06);
}

.preview-row strong {
    display: block;
    font-size: 0.92rem;
}

.preview-row p {
    margin: 0.15rem 0 0;
    color: var(--woh-muted);
    font-size: 0.78rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.badge-ok {
    background: #eef2f4;
    color: #3d4450;
}

.badge-warn {
    background: var(--woh-orange-soft);
    color: var(--woh-orange);
}

.badge-info {
    background: #eef4fb;
    color: #35557a;
}

.preview-row .badge {
    flex: 0 0 auto;
}

.section {
    padding: 4.25rem 0;
}

.section-light {
    background: var(--woh-paper);
}

.section-cream {
    background: var(--woh-cream);
}

.section-dark {
    background: var(--woh-charcoal);
    color: var(--woh-white);
}

.section-dark .section-title {
    color: var(--woh-white);
}

.section-problem {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}

.problem-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.75rem;
    align-items: center;
}

.problem-list {
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
}

.problem-list li {
    position: relative;
    padding: 0.7rem 0 0.7rem 1.05rem;
    border-top: 1px solid var(--woh-line);
    color: var(--woh-ink);
    font-weight: 650;
}

.problem-list li:last-child {
    border-bottom: 1px solid var(--woh-line);
}

.problem-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--woh-orange);
}

.preview-review {
    box-shadow: var(--woh-shadow);
}

.section-value {
    position: relative;
    overflow: hidden;
    background: #1a1613;
    color: var(--woh-white);
    padding: 4rem 0;
}

.section-value::before {
    content: "";
    position: absolute;
    width: 36rem;
    height: 36rem;
    left: -10rem;
    top: -12rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 78, 22, 0.2), transparent 68%);
    pointer-events: none;
}

.section-value .eyebrow,
.section-value .section-title,
.section-value .lead,
.section-value .value-example,
.section-value .value-note {
    margin-inline: auto;
    text-align: center;
}

.section-value .section-title {
    color: var(--woh-white);
    text-wrap: balance;
}

.section-value .lead {
    max-width: 34rem;
    color: var(--woh-muted-dark);
}

.value-inner {
    position: relative;
    max-width: 42rem;
    margin-inline: auto;
    text-align: center;
}

.value-equation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    margin: 2.15rem 0 0;
    color: var(--woh-white);
    text-transform: uppercase;
}

.value-eq-sum {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.35rem 0.65rem;
    color: #d8d4ce;
    font-size: clamp(1.02rem, 2.2vw, 1.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.value-eq-term {
    white-space: nowrap;
}

.value-eq-op,
.value-eq-equals {
    color: var(--woh-orange);
    font-weight: 750;
}

.value-eq-result {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.4rem 0.55rem;
    color: var(--woh-orange);
    font-size: clamp(1.7rem, 4.6vw, 2.85rem);
    font-weight: 750;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.value-eq-equals {
    color: #f08a5c;
}

.value-eq-result-text {
    white-space: nowrap;
}

@media (max-width: 520px) {
    .value-eq-sum {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
}

.value-example {
    margin: 1.35rem auto 0;
    max-width: 34rem;
    color: #f3f0ea;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
}

.value-note {
    margin-top: 1.15rem;
    max-width: 30rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
}

.review-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--woh-line);
}

.review-row:first-of-type {
    border-top: 0;
    padding-top: 0.15rem;
}

.review-row.is-active {
    margin: 0 -0.35rem;
    padding: 0.75rem 0.35rem;
    border-radius: 0.7rem;
    background: rgba(232, 78, 22, 0.05);
}

.review-row strong {
    display: block;
    font-size: 0.92rem;
}

.review-row p {
    margin: 0.15rem 0 0;
    color: var(--woh-muted);
    font-size: 0.78rem;
}

.review-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.4rem;
}

.review-choice {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.55rem;
    border: 1px solid var(--woh-line-strong);
    border-radius: var(--woh-radius-sm);
    color: var(--woh-muted);
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.review-choice.is-kept {
    background: #e8f3ec;
    border-color: transparent;
    color: #2f6f4e;
}

.review-choice.is-off {
    background: var(--woh-orange);
    border-color: transparent;
    color: #fff;
}

.walkthrough {
    display: grid;
    grid-template-columns: minmax(17rem, 24rem) minmax(0, 1fr);
    gap: 2.25rem 3rem;
    align-items: center;
    margin-top: 2rem;
}

.walkthrough-tabs {
    display: grid;
    gap: 0.35rem;
}

.walkthrough-tab {
    display: grid;
    gap: 0.4rem;
    width: 100%;
    padding: 0.95rem 1rem 1rem 1.05rem;
    border: 0;
    border-left: 3px solid transparent;
    border-radius: 0 var(--woh-radius-sm) var(--woh-radius-sm) 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.walkthrough-tab:hover {
    background: rgba(20, 22, 26, 0.03);
}

.walkthrough-tab[aria-selected="true"] {
    background: var(--woh-white);
    border-left-color: var(--woh-orange);
    box-shadow: 0 1px 2px rgba(20, 22, 26, 0.04);
}

.walkthrough-tab[aria-selected="true"] .walkthrough-tab-title {
    color: var(--woh-ink);
}

.walkthrough-tab-title {
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.walkthrough-tab-copy {
    color: var(--woh-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.walkthrough-stage {
    display: grid;
    min-width: 0;
}

.walkthrough-panel {
    grid-area: 1 / 1;
}

.walkthrough-panel[hidden] {
    display: block !important;
    visibility: hidden;
    pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
    .walkthrough-panel:not([hidden]) {
        animation: walkthrough-in 180ms ease;
    }
}

@keyframes walkthrough-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.preview-walkthrough {
    box-shadow: var(--woh-shadow);
}

.offhire-steps {
    margin: 0.15rem 0 0;
    padding: 0;
    list-style: none;
}

.offhire-steps li {
    position: relative;
    display: flex;
    gap: 0.8rem;
    padding: 0.7rem 0 0.7rem 0.15rem;
}

.offhire-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0.58rem;
    top: 1.7rem;
    bottom: -0.15rem;
    width: 1px;
    background: var(--woh-line-strong);
}

.offhire-step-mark {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: 0.85rem;
    height: 0.85rem;
    margin-top: 0.2rem;
    border-radius: 50%;
    border: 2px solid var(--woh-line-strong);
    background: var(--woh-white);
}

.offhire-steps .is-done .offhire-step-mark {
    border-color: var(--woh-orange);
    background: var(--woh-orange);
}

.offhire-steps .is-current .offhire-step-mark {
    border-color: var(--woh-orange);
    box-shadow: 0 0 0 4px var(--woh-orange-soft);
}

.offhire-steps strong {
    display: block;
    font-size: 0.92rem;
}

.offhire-steps p {
    margin: 0.15rem 0 0;
    color: var(--woh-muted);
    font-size: 0.78rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 1.2rem 1.2rem 1.3rem;
    background: var(--woh-white);
    border: 1px solid var(--woh-line);
    border-radius: var(--woh-radius);
    box-shadow: 0 1px 2px rgba(20, 22, 26, 0.03);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: var(--woh-line-strong);
    box-shadow: var(--woh-shadow);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 1rem;
    border-radius: 0.7rem;
    background: var(--woh-orange-soft);
    color: var(--woh-orange);
}

.feature-icon svg {
    display: block;
}

.feature-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    margin: 0;
    color: var(--woh-muted);
    font-size: 0.98rem;
}

.feature-support {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.25rem;
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
    color: var(--woh-muted);
    font-size: 0.92rem;
    font-weight: 650;
}

.feature-support li {
    position: relative;
    padding-left: 0.95rem;
}

.feature-support li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: var(--woh-orange);
}

.section-process {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem 1.35rem;
    margin: 1.6rem 0 0;
    padding: 0;
    list-style: none;
}

.steps li {
    position: relative;
    padding-top: 0.1rem;
}

.steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0.72rem;
    left: 2.55rem;
    right: -1.15rem;
    height: 1px;
    background: var(--woh-line-strong);
}

.step-num {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--woh-orange);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.08em;
}

.steps h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    letter-spacing: -0.025em;
}

.steps p {
    margin: 0;
    color: var(--woh-muted);
    font-size: 0.95rem;
}

.cta-final-inner {
    max-width: 42rem;
    margin-inline: auto;
    text-align: center;
}

.cta-final .section-title,
.cta-final .lead,
.cta-support {
    margin-inline: auto;
}

.cta-final .lead {
    color: var(--woh-muted-dark);
}

.cta-support {
    margin: 0.85rem 0 0;
    max-width: 36rem;
    color: #d5d8de;
    font-size: 1.05rem;
}

.cta-note {
    margin: 1.35rem 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.88rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.1rem 1.4rem;
    margin-top: 1.6rem;
}

.updates-page {
    max-width: 44rem;
}

.updates-intro {
    max-width: 40rem;
}

.updates-timeline {
    margin: 2.5rem 0 0;
    padding: 0;
    list-style: none;
}

.updates-timeline > li + li {
    margin-top: 1.75rem;
}

.update-entry {
    padding: 1.35rem 0 0.15rem 1.25rem;
    border-left: 1px solid var(--woh-line-strong);
    scroll-margin-top: 6rem;
}

.update-header {
    margin-bottom: 0.7rem;
}

.update-meta,
.home-update-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.7rem;
    margin: 0 0 0.55rem;
    color: var(--woh-muted);
    font-size: 0.82rem;
    font-weight: 650;
}

.update-entry h2 {
    margin: 0;
    color: var(--woh-ink);
    font-size: 1.28rem;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.update-entry > p {
    margin: 0;
    color: var(--woh-muted);
}

.update-figure {
    margin: 0 0 0.9rem;
}

.update-figure img {
    display: block;
    width: 100%;
    border: 1px solid var(--woh-line);
    border-radius: var(--woh-radius);
    background: var(--woh-white);
}

.update-category {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.48rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.update-category-new {
    background: var(--woh-orange-soft);
    color: var(--woh-orange);
}

.update-category-improved {
    background: #eef2f4;
    color: #3d4450;
}

.update-category-fixed {
    background: #eef4fb;
    color: #35557a;
}

.update-feedback {
    color: var(--woh-muted);
    font-size: 0.78rem;
    font-weight: 650;
}

.section-updates {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}

.home-updates-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
    gap: 2rem 3.25rem;
    align-items: start;
}

.home-updates-main .lead {
    margin-bottom: 1.5rem;
}

.home-update-featured {
    padding-top: 1.35rem;
    border-top: 1px solid var(--woh-line-strong);
}

.home-update-featured h3 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    letter-spacing: -0.03em;
    line-height: 1.25;
    overflow-wrap: break-word;
}

.home-update-featured h3 a,
.home-update-row h3 a {
    color: inherit;
    text-decoration: none;
}

.home-update-featured h3 a:hover,
.home-update-row h3 a:hover {
    color: var(--woh-orange);
}

.home-update-featured p:last-child {
    margin: 0;
    color: var(--woh-muted);
    font-size: 1rem;
}

.home-updates-list {
    display: grid;
    gap: 0.7rem;
    align-self: end;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-update-row {
    padding: 0.85rem 0 0.9rem 0.95rem;
    border-left: 2px solid var(--woh-line-strong);
}

.home-update-row h3 {
    margin: 0;
    font-size: 1.02rem;
    letter-spacing: -0.02em;
    line-height: 1.35;
    overflow-wrap: break-word;
}

.home-updates-more {
    grid-column: 1 / -1;
    margin: 0.15rem 0 0;
}

.updates-all-link {
    color: var(--woh-ink);
    font-weight: 650;
    text-decoration: none;
}

.updates-all-link:hover {
    color: var(--woh-orange);
}

.page-section {
    padding: 8.5rem 0 5.5rem;
}

.page-section-tight {
    padding-top: 7.25rem;
}

.page-section h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.prose {
    max-width: 40rem;
    color: var(--woh-muted);
}

.prose h2 {
    margin: 1.75rem 0 0.7rem;
    color: var(--woh-ink);
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.prose p + p,
.prose ul {
    margin-top: 1rem;
}

.prose code {
    font-size: 0.92em;
}

.prose a {
    color: var(--woh-ink);
    font-weight: 650;
}

.prose .btn {
    margin: 0.75rem 0.6rem 0 0;
}

.inner-page {
    max-width: 40rem;
}

.inner-page .lead {
    max-width: 34rem;
}

.inner-card {
    margin-top: 1.75rem;
    padding: 1.5rem 1.5rem 1.35rem;
    background: var(--woh-white);
    border: 1px solid var(--woh-line);
    border-radius: var(--woh-radius);
    box-shadow: var(--woh-shadow);
}

.inner-card-label {
    margin: 0 0 0.45rem;
    color: var(--woh-orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.inner-card-title,
.inner-card-address {
    display: block;
    margin: 0;
    color: var(--woh-ink);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.inner-card-address {
    display: inline-block;
    text-decoration: none;
}

.inner-card-address:hover {
    color: var(--woh-orange);
}

.inner-card-copy {
    margin: 0.7rem 0 0;
    color: var(--woh-muted);
    font-size: 0.98rem;
}

.inner-card-copy a {
    color: var(--woh-ink);
    font-weight: 650;
}

.inner-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.25rem;
}

.site-footer {
    flex-shrink: 0;
    background: #101216;
    color: var(--woh-muted-dark);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.footer-mark {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
}

.footer-mark img {
    width: 2.5rem;
    height: 2.5rem;
}

.footer-copy {
    margin: 0;
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1.25rem;
}

.footer-links a,
.footer-text-button {
    color: var(--woh-muted-dark);
    text-decoration: none;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.footer-links a:hover,
.footer-text-button:hover {
    color: var(--woh-white);
}

.footer-credit {
    margin: 0;
    color: #7d828b;
    font-size: 0.8rem;
    text-align: right;
}

.footer-credit a {
    color: inherit;
    text-decoration: none;
}

.footer-credit a:hover {
    color: var(--woh-white);
}

body.has-cookie-banner {
    padding-bottom: 7.5rem;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    background: var(--woh-paper);
    color: var(--woh-ink);
    border-top: 1px solid var(--woh-line-strong);
    box-shadow: 0 -12px 32px rgba(20, 22, 26, 0.08);
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 1.75rem;
    padding: 0.95rem 0;
}

.cookie-banner-copy h2 {
    margin: 0 0 0.25rem;
    font-size: 0.98rem;
    letter-spacing: -0.02em;
}

.cookie-banner-copy p {
    margin: 0;
    max-width: 42rem;
    color: var(--woh-muted);
    font-size: 0.9rem;
}

.cookie-banner-copy a {
    color: var(--woh-ink);
    font-weight: 650;
}

.cookie-banner-actions {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.cookie-banner .btn {
    min-height: 2.5rem;
    padding: 0.55rem 0.95rem;
    font-size: 0.9rem;
}

.reveal {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0.85;
        transform: translateY(6px);
        transition: opacity 280ms ease, transform 280ms ease;
    }

    .reveal.is-visible {
        opacity: 1;
        transform: none;
    }

    .btn:hover {
        transform: translateY(-1px);
    }
}

@media (max-width: 1100px) {
    .hero-grid,
    .problem-split,
    .walkthrough {
        gap: 2.25rem;
    }

    .preview-row,
    .review-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.45rem;
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .problem-split,
    .walkthrough,
    .home-updates-layout,
    .feature-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .home-updates-list {
        align-self: stretch;
    }

    .hero-grid {
        gap: 2.25rem;
    }

    .hero,
    .is-home .hero {
        padding: 7rem 0 2.85rem;
    }

    .section,
    .section-value,
    .section-problem,
    .section-process,
    .section-updates {
        padding: 3.25rem 0;
    }

    .walkthrough-tab {
        padding: 0.85rem 0.15rem 0.9rem;
        border-left-width: 2px;
    }

    .walkthrough-stage {
        min-height: 0;
    }

    .hero-float {
        right: 0.35rem;
        top: -0.15rem;
    }

    .steps li:not(:last-child)::after {
        display: none;
    }

    .steps li {
        padding: 0 0 1.35rem 1.15rem;
        border-left: 1px solid var(--woh-line-strong);
    }

    .steps li:last-child {
        padding-bottom: 0;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .footer-links,
    .footer-credit {
        justify-content: start;
        text-align: left;
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 0.85rem 0 1rem;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-banner-actions .btn {
        flex: 1 1 10rem;
    }
}

@media (max-width: 1120px) {
    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .site-nav {
        position: absolute;
        top: calc(var(--woh-header) - 1px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem 1.25rem 1.15rem;
        background: var(--woh-hero);
        border-bottom: 1px solid var(--woh-line-dark);
    }

    .site-nav.is-open {
        display: flex;
        min-height: calc(100vh - var(--woh-header));
        min-height: calc(100dvh - var(--woh-header));
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .site-nav a {
        padding: 0.85rem 0.15rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .site-nav .btn {
        margin: 0.85rem 0 0.25rem;
        width: 100%;
        border-bottom: 0;
    }

    body.nav-open {
        overflow: hidden;
    }
}

@media (max-width: 720px) {
    .wrap {
        width: min(var(--woh-max), calc(100% - 1.75rem));
    }

    .hero,
    .is-home .hero {
        padding: 6.35rem 0 2.5rem;
    }

    .section,
    .section-value,
    .section-problem,
    .section-process,
    .section-updates {
        padding: 2.75rem 0;
    }

    .preview-body {
        padding: 1rem 1rem 1.05rem;
    }

    .hero-visual {
        display: flex;
        flex-direction: column;
        padding: 0.15rem 0 0;
    }

    .hero-visual-layer {
        inset: 1.85rem 0.2rem 0.1rem 0.75rem;
    }

    .hero-float {
        position: static;
        order: -1;
        margin: 0 0 0.85rem;
        width: fit-content;
    }

    .feature-card {
        padding: 1.05rem 1.05rem 1.15rem;
    }

    .feature-icon {
        margin-bottom: 0.75rem;
    }

    .page-section {
        padding: 7.25rem 0 4rem;
    }

    .page-section-tight {
        padding-top: 6.35rem;
    }

    body.has-cookie-banner {
        padding-bottom: 11rem;
    }

    .feature-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .update-entry {
        padding-left: 1.05rem;
    }

    .steps li::after {
        display: none;
    }

    .steps li {
        padding: 0 0 1.8rem 1.15rem;
        border-left: 1px solid var(--woh-line-strong);
    }

    .steps li:last-child {
        padding-bottom: 0;
    }

    .hero h1 {
        font-size: clamp(1.95rem, 9.4vw, 2.75rem);
    }

    .brand-wordmark {
        height: 1.45rem;
    }

    .hero-actions,
    .cta-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .preview-alert {
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .btn,
    .feature-card,
    .site-header,
    .reveal,
    .walkthrough-panel {
        transition: none;
        animation: none;
    }
}
