:root {
    --navy-950: #07111f;
    --navy-900: #0b1b31;
    --navy-800: #123053;
    --blue-700: #1e5eaa;
    --blue-600: #2d74c8;
    --blue-100: #e9f3ff;
    --gold-500: #c89742;
    --gold-200: #f1dcae;
    --paper: #f8f6f0;
    --paper-deep: #eee9df;
    --white: #ffffff;
    --ink: #122033;
    --muted: #617083;
    --line: #dce2e8;
    --success: #287a54;
    --success-soft: #e5f4ec;
    --warning: #9b5a1a;
    --warning-soft: #fff3df;
    --shadow-sm: 0 10px 30px rgba(18, 48, 83, 0.09);
    --shadow-lg: 0 30px 80px rgba(6, 20, 39, 0.18);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 34px;
    --content: 1180px;
    --page-gutter: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 94px;
}

body {
    width: 100%;
    margin: 0;
    overflow-x: clip;
    color: var(--ink);
    background: var(--paper);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.32;
    background-image:
        linear-gradient(rgba(18, 48, 83, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 48, 83, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
}

a {
    color: inherit;
}

button,
input,
select {
    font: inherit;
}

button,
select {
    cursor: pointer;
}

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

:focus-visible {
    outline: 3px solid #75b3ff;
    outline-offset: 3px;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 11px 16px;
    border-radius: 10px;
    color: var(--white);
    background: var(--blue-700);
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

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

.section-inner,
.header-inner,
.hero-inner {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--content));
    max-width: var(--content);
    margin: 0 auto;
}

.section-space {
    padding: 96px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: var(--white);
    background: rgba(7, 17, 31, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
}

.brand-link img,
.footer-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    padding: 5px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.94);
}

.brand-link span,
.footer-brand span {
    display: grid;
    gap: 1px;
}

.brand-link strong,
.footer-brand strong {
    font-size: 0.94rem;
    line-height: 1.2;
}

.brand-link small,
.footer-brand small {
    color: #aebed1;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.header-nav a {
    color: #dce8f6;
    font-size: 0.88rem;
    font-weight: 650;
    text-decoration: none;
}

.header-nav a:hover {
    color: var(--white);
}

.header-nav .nav-cta {
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: var(--navy-950);
    background: var(--white);
}

.hero {
    min-height: 710px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(115deg, rgba(5, 18, 34, 0.98), rgba(11, 42, 72, 0.94)),
        var(--navy-950);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.14));
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-orb-one {
    width: 560px;
    height: 560px;
    top: -230px;
    right: -120px;
    background: radial-gradient(circle, rgba(45, 116, 200, 0.42), transparent 68%);
}

.hero-orb-two {
    width: 470px;
    height: 470px;
    left: 36%;
    bottom: -280px;
    background: radial-gradient(circle, rgba(200, 151, 66, 0.2), transparent 68%);
}

.hero-inner {
    min-height: 710px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.85fr);
    align-items: center;
    gap: 72px;
    padding: 74px 0 88px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--gold-500);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(3rem, 6.2vw, 5.5rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.hero-lead {
    max-width: 680px;
    margin: 28px 0 0;
    color: #c9d8e9;
    font-size: clamp(1.05rem, 1.8vw, 1.22rem);
    line-height: 1.75;
}

.hero-actions,
.final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 19px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 750;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-600), #4d91dd);
    box-shadow: 0 14px 36px rgba(45, 116, 200, 0.28);
}

.button-secondary {
    color: inherit;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.hero-proof {
    margin: 42px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.hero-proof div {
    min-width: 128px;
    padding: 0 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof div:first-child {
    padding-left: 0;
    border-left: 0;
}

.hero-proof dt {
    font-weight: 800;
    font-size: 1.02rem;
}

.hero-proof dd {
    margin: 3px 0 0;
    color: #aebed1;
    font-size: 0.78rem;
}

.hero-visual {
    position: relative;
    display: grid;
    justify-items: center;
}

.phone-shell {
    width: min(350px, 100%);
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 46px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.08));
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.48);
    transform: rotate(2deg);
}

.phone-app-shot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 36px;
}

.hero-capture-progress {
    width: min(320px, calc(100% - 28px));
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
    color: #dce8f5;
    font-size: 0.72rem;
    font-weight: 750;
}

.hero-capture-progress div {
    height: 6px;
    grid-column: 1 / -1;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.hero-capture-progress i {
    width: 0;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: #66a6ec;
    transition: width 0.3s ease;
}

.phone-screen {
    min-height: 560px;
    overflow: hidden;
    padding: 28px 20px 24px;
    border-radius: 36px;
    color: var(--ink);
    background:
        radial-gradient(circle at top right, rgba(45, 116, 200, 0.18), transparent 26%),
        #f7f9fc;
}

.phone-top {
    width: 106px;
    height: 25px;
    position: absolute;
    top: 20px;
    left: 50%;
    z-index: 2;
    border-radius: 99px;
    background: #03070d;
    transform: translateX(-50%);
}

.phone-status {
    display: flex;
    justify-content: space-between;
    margin: 0 0 26px;
    color: #5b6980;
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.phone-welcome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-800), var(--blue-700));
}

.phone-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 15px;
    color: var(--navy-900);
    background: var(--white);
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.phone-welcome div {
    display: grid;
}

.phone-welcome small,
.phone-tip small {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.phone-welcome strong {
    font-size: 0.9rem;
}

.phone-progress {
    margin-top: 16px;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
    border: 1px solid #dce5ef;
    border-radius: 18px;
    background: var(--white);
}

.phone-progress span,
.phone-progress strong {
    font-size: 0.7rem;
}

.phone-progress div {
    height: 6px;
    grid-column: 1 / -1;
    overflow: hidden;
    border-radius: 99px;
    background: #e6ebf1;
}

.phone-progress i {
    width: 0;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: var(--blue-600);
    transition: width 0.3s ease;
}

.phone-grid {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.phone-grid span {
    min-height: 72px;
    display: grid;
    place-items: center;
    border: 1px solid #e1e6ed;
    border-radius: 17px;
    background: var(--white);
    color: var(--navy-800);
    font-size: 0.72rem;
    font-weight: 750;
    box-shadow: 0 8px 20px rgba(18, 48, 83, 0.06);
}

.phone-tip {
    margin-top: 15px;
    display: grid;
    gap: 5px;
    padding: 16px;
    border-radius: 18px;
    color: #513d1e;
    background: #f6ead1;
}

.phone-tip span {
    color: #775e37;
    font-size: 0.68rem;
    line-height: 1.45;
}

.visual-note {
    max-width: 320px;
    margin: 22px 0 0;
    color: #93a9c2;
    font-size: 0.72rem;
    text-align: center;
}

.role-strip {
    position: relative;
    z-index: 4;
    margin-top: -42px;
}

.role-strip-inner {
    min-height: 150px;
    display: grid;
    grid-template-columns: 1fr 250px 1.1fr;
    align-items: center;
    gap: 34px;
    padding: 28px 32px;
    border: 1px solid rgba(18, 48, 83, 0.1);
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.role-strip h2 {
    margin: 0;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(1.35rem, 2.3vw, 1.9rem);
    line-height: 1.25;
}

.role-strip p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.role-control {
    display: grid;
    gap: 7px;
}

.role-control label {
    color: var(--navy-800);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.role-control select {
    width: 100%;
    min-height: 49px;
    padding: 0 42px 0 14px;
    border: 1px solid #cbd5e0;
    border-radius: 13px;
    color: var(--ink);
    background: var(--paper);
    font-weight: 700;
}

.role-summary {
    padding-left: 28px;
    border-left: 1px solid var(--line);
}

.role-summary-label {
    display: block;
    color: var(--blue-700);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.role-summary strong {
    display: block;
    margin-top: 3px;
    font-size: 1.02rem;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 42px;
}

.section-heading h2,
.readiness-copy h2,
.value-hero h2,
.final-cta h2 {
    margin: 0;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(2rem, 4.3vw, 3.55rem);
    line-height: 1.13;
    letter-spacing: -0.035em;
}

.section-heading > p {
    margin: 0 0 5px;
    color: var(--muted);
    line-height: 1.75;
}

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

.start-grid li {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
}

.start-grid > li > span,
.workflow-grid article > span {
    color: var(--gold-500);
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
}

.start-grid h3 {
    margin: 36px 0 8px;
    color: var(--navy-800);
    font-size: 1.05rem;
}

.start-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.guide-section {
    background: var(--white);
}

.guide-heading {
    margin-bottom: 28px;
}

.guide-toolbar {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.search-box {
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 0 16px;
    border: 1px solid #cbd6e2;
    border-radius: 16px;
    background: var(--paper);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-box:focus-within {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(45, 116, 200, 0.12);
}

.search-box > span:first-child {
    color: var(--blue-700);
    font-size: 1.7rem;
    line-height: 1;
}

.search-box input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    font-size: 1rem;
}

.search-box input::placeholder {
    color: #758396;
}

kbd {
    padding: 4px 7px;
    border: 1px solid #c9d2dc;
    border-bottom-width: 2px;
    border-radius: 7px;
    color: #66758a;
    background: var(--white);
    font-family: inherit;
    font-size: 0.7rem;
}

.text-button {
    border: 0;
    color: var(--blue-700);
    background: transparent;
    font-size: 0.82rem;
    font-weight: 750;
}

.guide-status {
    display: grid;
    grid-template-columns: auto minmax(120px, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 0.78rem;
}

.guide-status > span:nth-child(2) {
    height: 6px;
    overflow: hidden;
    border-radius: 99px;
    background: #e4e9ee;
}

.guide-status i,
.readiness-progress i {
    width: 0;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue-600), #58a1e9);
    transition: width 0.3s ease;
}

.guide-status strong {
    color: var(--navy-800);
}

.guide-layout {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: start;
    gap: 42px;
}

.topic-nav {
    min-width: 0;
    max-width: 100%;
    position: sticky;
    top: 110px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
}

.topic-nav > p {
    margin: 0 0 14px;
    color: var(--navy-800);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.topic-nav nav {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: grid;
    gap: 2px;
}

.topic-nav a {
    padding: 8px 10px;
    border-radius: 9px;
    color: var(--muted);
    font-size: 0.79rem;
    text-decoration: none;
}

.topic-nav a:hover {
    color: var(--navy-800);
    background: var(--white);
}

.topic-list {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: grid;
    gap: 12px;
}

.guide-topic {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    scroll-margin-top: 100px;
    overflow: clip;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(18, 48, 83, 0.045);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.guide-topic:hover {
    border-color: #bccbd9;
}

.guide-topic[open] {
    border-color: rgba(45, 116, 200, 0.36);
    box-shadow: var(--shadow-sm);
}

.guide-topic.is-complete {
    border-color: rgba(40, 122, 84, 0.35);
}

.guide-topic.role-unavailable,
.topic-nav a.role-unavailable {
    display: none;
}

.guide-topic.search-hidden {
    display: none;
}

.guide-topic summary {
    min-height: 102px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
}

.guide-topic summary::-webkit-details-marker {
    display: none;
}

.topic-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--blue-700);
    background: var(--blue-100);
    font-size: 0.76rem;
    font-weight: 800;
}

.is-complete .topic-number {
    color: var(--success);
    background: var(--success-soft);
}

.topic-summary {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.topic-summary small {
    color: var(--gold-500);
    font-size: 0.67rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.topic-summary strong {
    color: var(--navy-900);
    font-size: 1rem;
}

.topic-summary em {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.78rem;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.topic-state {
    min-width: 70px;
    padding: 7px 10px;
    border-radius: 99px;
    color: var(--blue-700);
    background: var(--blue-100);
    font-size: 0.7rem;
    font-weight: 800;
    text-align: center;
}

.guide-topic[open] .topic-state {
    color: #6d7785;
    background: #eef1f4;
}

.guide-topic.is-complete .topic-state {
    color: var(--success);
    background: var(--success-soft);
}

.topic-body {
    padding: 6px 28px 30px 88px;
    border-top: 1px solid #edf0f3;
}

.topic-body > p {
    color: #46566a;
}

.topic-intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.topic-intro p {
    margin-top: 18px;
    color: #46566a;
}

.time-chip,
.availability-note {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 99px;
    color: var(--blue-700);
    background: var(--blue-100);
    font-size: 0.7rem;
    font-weight: 750;
}

.availability-note {
    width: fit-content;
    margin: 20px 0;
}

.step-list {
    margin: 22px 0;
    padding: 0;
    display: grid;
    gap: 12px;
    counter-reset: guide-step;
    list-style: none;
}

.step-list li {
    position: relative;
    padding: 2px 0 2px 42px;
    color: #46566a;
    counter-increment: guide-step;
}

.step-list li::before {
    content: counter(guide-step);
    width: 28px;
    height: 28px;
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    border: 1px solid #cbd8e5;
    border-radius: 50%;
    color: var(--blue-700);
    background: #f4f8fc;
    font-size: 0.7rem;
    font-weight: 800;
}

.callout,
.warning {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--gold-500);
    border-radius: 0 14px 14px 0;
    color: #5e4926;
    background: #fbf4e7;
}

.callout-blue {
    border-left-color: var(--blue-600);
    color: var(--navy-800);
    background: var(--blue-100);
}

.warning {
    border-left-color: #d58331;
    color: #72441a;
    background: var(--warning-soft);
}

.callout p,
.warning p {
    margin: 3px 0 0;
    font-size: 0.85rem;
}

.feature-grid,
.trouble-grid {
    margin: 22px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

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

.feature-grid > div,
.trouble-grid > div {
    padding: 18px;
    border: 1px solid #e1e6eb;
    border-radius: 14px;
    background: #fafbfc;
}

.feature-grid p,
.trouble-grid p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.screenshot-gallery {
    margin: 22px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    align-items: start;
    gap: 16px;
}

.screenshot-gallery.is-single {
    max-width: 380px;
}

.app-screenshot,
.guide-video {
    margin: 0;
    overflow: hidden;
    border: 1px solid #dce4ec;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 16px 36px rgba(18, 48, 83, 0.09);
}

.app-screenshot a {
    display: block;
    overflow: hidden;
    background: #e8eef5;
}

.app-screenshot img,
.guide-video video {
    width: 100%;
    height: auto;
    display: block;
}

.app-screenshot a:focus-visible {
    outline: 3px solid var(--blue-600);
    outline-offset: -3px;
}

.app-screenshot figcaption,
.guide-video figcaption {
    display: grid;
    gap: 4px;
    padding: 14px 15px 16px;
}

.app-screenshot figcaption strong,
.guide-video figcaption strong {
    color: var(--navy-800);
    font-size: 0.82rem;
}

.app-screenshot figcaption span,
.guide-video figcaption span {
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.5;
}

.guide-video {
    max-width: 380px;
    margin: 22px 0;
}

.guide-video video {
    aspect-ratio: 1320 / 2868;
    object-fit: cover;
    background: #071321;
}

.body-heading {
    margin: 28px 0 6px;
    color: var(--navy-800);
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 1.1rem;
}

.topic-actions {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.topic-actions a {
    color: var(--blue-700);
    font-size: 0.8rem;
    font-weight: 750;
}

.complete-button {
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(40, 122, 84, 0.32);
    border-radius: 11px;
    color: var(--success);
    background: var(--success-soft);
    font-size: 0.78rem;
    font-weight: 800;
}

.complete-button:hover {
    background: #d7eee2;
}

.is-complete .complete-button {
    color: #66758a;
    border-color: #d4dce4;
    background: #eef1f4;
}

.no-results {
    padding: 60px 28px;
    border: 1px dashed #b8c5d1;
    border-radius: 18px;
    text-align: center;
    background: var(--paper);
}

.no-results span {
    color: var(--blue-600);
    font-size: 3rem;
}

.no-results h3 {
    margin: 6px 0;
    color: var(--navy-800);
}

.no-results p {
    margin: 0;
    color: var(--muted);
}

.no-results button {
    margin-top: 18px;
    padding: 9px 13px;
    border: 0;
    border-radius: 10px;
    color: var(--white);
    background: var(--blue-700);
    font-weight: 750;
}

.workflow-section {
    color: var(--white);
    background:
        radial-gradient(circle at 8% 20%, rgba(45, 116, 200, 0.2), transparent 25%),
        var(--navy-950);
}

.workflow-section .section-heading > p {
    color: #aebed1;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.workflow-grid article {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
}

.workflow-grid h3 {
    margin: 28px 0 15px;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 1.3rem;
    line-height: 1.35;
}

.workflow-grid ol {
    margin: 0;
    padding-left: 19px;
    color: #b8c9dc;
    font-size: 0.86rem;
}

.workflow-grid li + li {
    margin-top: 8px;
}

.workflow-grid a {
    margin-top: auto;
    padding-top: 26px;
    color: #8dc4ff;
    font-size: 0.8rem;
    font-weight: 750;
}

.readiness-section {
    background: var(--paper-deep);
}

.readiness-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
    align-items: center;
    gap: 70px;
}

.readiness-copy > p:not(.section-kicker) {
    color: var(--muted);
}

.readiness-progress {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 13px;
}

.readiness-progress span {
    height: 8px;
    overflow: hidden;
    border-radius: 99px;
    background: #d7d4cc;
}

.readiness-progress strong {
    color: var(--navy-800);
    font-size: 0.78rem;
}

.checklist {
    display: grid;
    gap: 10px;
}

.checklist label {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 16px;
    border: 1px solid #d5d2ca;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.checklist label:has(input:checked) {
    border-color: rgba(40, 122, 84, 0.35);
    background: var(--success-soft);
}

.checklist input {
    width: 20px;
    height: 20px;
    accent-color: var(--success);
}

.checklist span {
    font-size: 0.88rem;
    font-weight: 650;
}

.value-section {
    background: var(--white);
}

.value-hero {
    max-width: 780px;
    margin: 0 auto 54px;
    text-align: center;
}

.value-hero > p:last-child {
    max-width: 650px;
    margin: 20px auto 0;
    color: var(--muted);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.value-grid article {
    padding: 25px;
    border-top: 4px solid var(--blue-600);
    border-radius: 4px 4px 18px 18px;
    background: var(--paper);
}

.value-grid span {
    color: var(--gold-500);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.value-grid h3 {
    margin: 17px 0 10px;
    color: var(--navy-800);
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 1.12rem;
    line-height: 1.42;
}

.value-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.final-cta {
    padding: 78px 0;
    color: var(--white);
    background: linear-gradient(120deg, var(--navy-800), var(--blue-700));
}

.final-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
}

.final-cta h2 {
    max-width: 760px;
}

.final-cta p:last-child {
    margin: 12px 0 0;
    color: #c6d7e9;
}

.final-actions {
    margin-top: 0;
}

.final-actions .button-primary {
    color: var(--navy-900);
    background: var(--white);
    box-shadow: none;
}

.site-footer {
    padding: 40px 0;
    color: #aebed1;
    background: var(--navy-950);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 26px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.footer-inner nav {
    display: flex;
    gap: 20px;
}

.footer-inner a {
    color: #cfdbE8;
    font-size: 0.78rem;
    text-decoration: none;
}

.footer-inner > p {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
}

@media (max-width: 1040px) {
    .header-nav a:not(.nav-cta) {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr 340px;
        gap: 38px;
    }

    .role-strip-inner {
        grid-template-columns: 1fr 230px;
    }

    .role-summary {
        grid-column: 1 / -1;
        padding: 20px 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .start-grid,
    .workflow-grid,
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-layout {
        grid-template-columns: 200px minmax(0, 1fr);
        gap: 24px;
    }

    .topic-body {
        padding-left: 28px;
    }

    .readiness-grid {
        gap: 40px;
    }
}

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

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

    .header-inner {
        min-height: 68px;
    }

    .brand-link img {
        width: 40px;
        height: 40px;
    }

    .brand-link strong {
        font-size: 0.82rem;
    }

    .header-nav .nav-cta {
        padding: 9px 12px;
        font-size: 0.78rem;
    }

    .hero {
        min-height: 0;
    }

    .hero-inner {
        min-height: 0;
        grid-template-columns: 1fr;
        padding: 66px 0 102px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-proof {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 18px;
    }

    .phone-shell {
        width: min(330px, 88vw);
        transform: none;
    }

    .role-strip-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .role-summary {
        grid-column: auto;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .guide-layout {
        grid-template-columns: 1fr;
    }

    .topic-nav {
        position: static;
        padding: 16px;
    }

    .topic-nav nav {
        grid-template-columns: repeat(3, 1fr);
    }

    .topic-nav a {
        background: var(--white);
        text-align: center;
    }

    .readiness-grid,
    .final-cta-inner {
        grid-template-columns: 1fr;
    }

    .final-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    :root {
        --page-gutter: 14px;
    }

    .section-inner,
    .header-inner,
    .hero-inner {
        width: min(calc(100% - (var(--page-gutter) * 2)), var(--content));
    }

    .brand-link small {
        display: none;
    }

    .header-nav .nav-cta {
        font-size: 0;
    }

    .header-nav .nav-cta::after {
        content: "App Store";
        font-size: 0.74rem;
    }

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

    .hero-proof {
        gap: 16px;
    }

    .hero-proof div {
        min-width: 0;
        padding: 0 16px;
    }

    .role-strip {
        margin-top: -28px;
    }

    .role-strip-inner {
        padding: 24px 20px;
    }

    .start-grid,
    .workflow-grid,
    .value-grid,
    .feature-grid,
    .feature-grid.three,
    .trouble-grid {
        grid-template-columns: 1fr;
    }

    .guide-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .text-button {
        align-self: flex-end;
    }

    .guide-status {
        grid-template-columns: 1fr auto;
    }

    .guide-status > span:nth-child(2) {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .topic-nav nav {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        display: flex;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x proximity;
        overscroll-behavior-inline: contain;
    }

    .topic-nav a {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .guide-topic summary {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        padding: 17px 15px;
    }

    .topic-number {
        width: 36px;
        height: 36px;
    }

    .topic-summary strong {
        font-size: 0.9rem;
    }

    .topic-summary em {
        max-width: 100%;
    }

    .topic-state {
        display: none;
    }

    .topic-body {
        padding: 4px 17px 22px;
    }

    .topic-intro {
        display: block;
    }

    .time-chip {
        display: inline-flex;
        margin-bottom: 12px;
    }

    .topic-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .topic-actions a {
        text-align: center;
    }

    .workflow-grid article {
        min-height: 330px;
    }

    .readiness-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-inner nav {
        flex-wrap: wrap;
    }

    .footer-inner > p {
        grid-column: auto;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .site-header,
    .hero-visual,
    .role-strip,
    .guide-toolbar,
    .guide-status,
    .topic-nav,
    .complete-button,
    .readiness-section,
    .final-cta,
    .site-footer {
        display: none !important;
    }

    .hero {
        min-height: 0;
        color: var(--ink);
        background: var(--white);
    }

    .hero-inner {
        min-height: 0;
        display: block;
        padding: 30px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-lead {
        color: var(--ink);
    }

    .section-space {
        padding: 28px 0;
    }

    .guide-layout {
        display: block;
    }

    .guide-topic {
        break-inside: avoid;
    }

    .guide-topic > .topic-body {
        display: block;
    }
}
