@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-SemiBold.ttf") format("truetype");
    font-weight: 650;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --red: #b00012;
    --red-bright: #d11b2a;
    --ink: #161817;
    --charcoal: #242827;
    --forest: #23443b;
    --forest-soft: #dce8df;
    --paper: #fffaf2;
    --mist: #f4efe6;
    --line: #ded6c8;
    --muted: #66615a;
    --white: #ffffff;
    --shadow: 0 22px 55px rgba(22, 24, 23, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.55;
    overflow-x: clip;
}

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

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

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 250, 242, 0.92);
    border-bottom: 1px solid rgba(222, 214, 200, 0.9);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    width: min(1220px, calc(100% - 40px));
    min-height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.1rem;
}

.brand img {
    flex: 0 0 auto;
    object-fit: contain;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(22, 24, 23, 0.12);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
    color: #3f3a36;
    font-size: 0.94rem;
    font-weight: 650;
}

.main-nav a {
    padding: 8px 0;
}

.main-nav a:hover {
    color: var(--red);
}

.main-nav .nav-pill {
    color: var(--red);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 8px;
    border: 1px solid var(--red);
    background: var(--red);
    color: var(--white);
    font-weight: 800;
    font-size: 0.96rem;
    text-align: center;
    white-space: normal;
    box-shadow: 0 14px 28px rgba(176, 0, 18, 0.22);
}

.button:hover {
    background: #8e0010;
    border-color: #8e0010;
}

.button--light {
    background: var(--white);
    color: var(--ink);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 28px rgba(22, 24, 23, 0.16);
}

.button--light:hover {
    background: var(--mist);
    border-color: var(--mist);
}

.button--outline {
    background: rgba(255, 255, 255, 0.72);
    color: var(--red);
    border-color: rgba(176, 0, 18, 0.34);
    box-shadow: none;
}

.button--outline:hover {
    background: var(--white);
    color: #8e0010;
    border-color: #8e0010;
}

.button--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: none;
}

.button--ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.64);
}

.button--compact {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.9rem;
}

.hero {
    position: relative;
    min-height: clamp(640px, 82svh, 780px);
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.hero__media,
.hero__shade {
    position: absolute;
    inset: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.9) contrast(1.04) brightness(0.78);
}

.hero__shade {
    background:
        linear-gradient(90deg, rgba(10, 11, 10, 0.92) 0%, rgba(10, 11, 10, 0.72) 42%, rgba(10, 11, 10, 0.34) 100%),
        linear-gradient(0deg, rgba(10, 11, 10, 0.72) 0%, rgba(10, 11, 10, 0.05) 44%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: min(1220px, calc(100% - 40px));
    min-height: clamp(640px, 82svh, 780px);
    margin: 0 auto;
    padding: 78px 0 68px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.72fr);
    gap: 44px;
    align-items: center;
}

.hero__copy {
    max-width: 720px;
    min-width: 0;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--red-bright);
    font-weight: 800;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero h1 {
    margin: 0;
    font-size: 4.85rem;
    line-height: 1;
    letter-spacing: 0;
}

.hero__lead {
    margin: 28px 0 0;
    max-width: 720px;
    font-size: 2.02rem;
    line-height: 1.18;
    font-weight: 800;
}

.hero__text {
    margin: 20px 0 0;
    max-width: 660px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.12rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
}

.hero__facts li {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 650;
    font-size: 0.9rem;
}

.hero__device {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-shell {
    width: min(280px, 70vw);
    aspect-ratio: 0.461;
    border: 10px solid #060706;
    border-radius: 34px;
    overflow: hidden;
    background: #060706;
    box-shadow: var(--shadow);
}

.phone-shell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-shell--front {
    transform: rotate(4deg);
}

.appstore-poster {
    width: min(300px, 72vw);
    aspect-ratio: 598 / 1300;
    border-radius: 8px;
    overflow: hidden;
    background: var(--mist);
    box-shadow: var(--shadow);
}

.appstore-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appstore-poster--front {
    transform: rotate(2deg);
}

.device-note {
    position: absolute;
    width: 220px;
    padding: 14px;
    border-radius: 8px;
    background: rgba(19, 20, 19, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.device-note strong,
.device-note span {
    display: block;
}

.device-note strong {
    font-size: 0.98rem;
}

.device-note span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
}

.device-note--one {
    top: 78px;
    left: 8px;
}

.device-note--two {
    right: 0;
    bottom: 92px;
}

.quick-band {
    position: relative;
    z-index: 4;
    margin-top: -34px;
    padding-bottom: 54px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.quick-grid a {
    display: block;
    min-height: 154px;
    padding: 22px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(22, 24, 23, 0.12);
}

.quick-grid a:hover,
.topic-card:hover,
.module-link-card:hover {
    transform: translateY(-2px);
    border-color: rgba(176, 0, 18, 0.34);
    box-shadow: 0 22px 44px rgba(22, 24, 23, 0.14);
}

.quick-grid span {
    display: block;
    color: var(--red);
    font-weight: 800;
    font-size: 0.82rem;
}

.quick-grid strong {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    line-height: 1.28;
}

.quick-grid p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.band {
    padding: 92px 0;
}

.band--soft {
    background: var(--mist);
}

.band--dark {
    background: var(--ink);
    color: var(--white);
}

.band--price {
    background: #efe7da;
}

.band--download {
    background: var(--forest);
    color: var(--white);
}

.band--white {
    background: var(--white);
}

.band--red {
    background: var(--red);
    color: var(--white);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
    gap: 58px;
    align-items: center;
}

.split > *,
.module-layout > *,
.download-layout > *,
.faq-layout > *,
.subpage-hero__inner > *,
.article-layout > *,
.decision-grid > * {
    min-width: 0;
}

.split--wide {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.65fr);
}

.split--reversed {
    grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1fr);
}

h2 {
    margin: 0;
    font-size: 2.76rem;
    line-height: 1.08;
    letter-spacing: 0;
}

h1,
h2,
h3,
p,
li,
summary,
.button {
    overflow-wrap: break-word;
}

h3 {
    letter-spacing: 0;
}

.section-copy {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.band--dark .section-copy,
.band--download .section-copy {
    color: rgba(255, 255, 255, 0.76);
}

.section-head {
    max-width: 800px;
    margin-bottom: 36px;
}

.section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.feature-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.feature-list article {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.feature-list span {
    color: var(--red);
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.feature-list h3,
.feature-card h3,
.topic-card h3 {
    margin: 8px 0 0;
    font-size: 1.22rem;
    line-height: 1.24;
}

.feature-list p,
.feature-card p,
.topic-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.appstore-shot-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(170px, 1fr));
    gap: 16px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scrollbar-color: rgba(176, 0, 18, 0.48) transparent;
}

.appstore-shot-grid img {
    width: 100%;
    min-width: 170px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(22, 24, 23, 0.16);
}

.screen-stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 610px;
}

.screen-stage::before {
    content: "";
    position: absolute;
    width: 82%;
    height: 78%;
    border-radius: 8px;
    background: var(--forest-soft);
    transform: rotate(-5deg);
}

.screen-stage .phone-shell {
    position: relative;
    width: min(310px, 75vw);
}

.screen-stage .appstore-poster {
    position: relative;
    width: min(340px, 76vw);
}

.screen-caption {
    position: absolute;
    right: 0;
    bottom: 42px;
    max-width: 260px;
    padding: 16px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow);
}

.screen-caption strong,
.screen-caption span {
    display: block;
}

.screen-caption span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.9rem;
}

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

.module-link-grid,
.seo-grid,
.proof-grid,
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.module-link-card,
.seo-card,
.proof-card,
.usecase-card {
    display: block;
    min-height: 240px;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(22, 24, 23, 0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.module-link-card span,
.seo-card span,
.proof-card span,
.usecase-card span {
    display: block;
    color: var(--red);
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.module-link-card h3,
.seo-card h3,
.proof-card h3,
.usecase-card h3 {
    margin: 10px 0 0;
    font-size: 1.28rem;
    line-height: 1.22;
}

.module-link-card p,
.seo-card p,
.proof-card p,
.usecase-card p {
    margin: 12px 0 0;
    color: var(--muted);
}

.module-link-card strong {
    display: inline-block;
    margin-top: 18px;
    color: var(--red);
}

.feature-card {
    min-height: 230px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.module-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
    gap: 52px;
    align-items: center;
}

.check-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
}

.check-list li {
    padding: 16px 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.check-list strong,
.check-list span {
    display: block;
}

.check-list span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
}

.module-media img,
.media-pair img,
.topic-card img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.metric-row span {
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.metric-row strong {
    display: block;
    color: var(--white);
    font-size: 1.26rem;
}

.media-pair {
    display: grid;
    gap: 14px;
}

.media-pair img:nth-child(2) {
    width: 78%;
    margin-left: auto;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.mini-grid span {
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 14px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    font-weight: 650;
}

.resource-panel {
    display: grid;
    gap: 18px;
}

.resource-board {
    padding: 24px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow);
}

.resource-board__header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 18px;
}

.resource-board__header span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.resource-board__header strong {
    font-size: 1.6rem;
    line-height: 1.05;
}

.resource-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.resource-kpis span {
    padding: 14px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 0.82rem;
}

.resource-kpis strong {
    display: block;
    color: var(--white);
    font-size: 1.44rem;
}

.resource-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.resource-list div {
    padding: 14px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
}

.resource-list strong,
.resource-list span {
    display: block;
}

.resource-list span {
    color: var(--muted);
    font-size: 0.9rem;
}

.resource-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.decision-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 46px;
    align-items: start;
}

.decision-panel {
    padding: 28px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow);
}

.decision-panel p {
    color: rgba(255, 255, 255, 0.76);
}

.decision-list {
    display: grid;
    gap: 14px;
}

.decision-list article {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.decision-list h3 {
    margin: 0;
}

.decision-list p {
    margin: 8px 0 0;
    color: var(--muted);
}

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

.topic-card {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 12px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
}

.topic-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: none;
}

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

.price-card {
    display: grid;
    align-content: start;
    min-height: 520px;
    padding: 24px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(22, 24, 23, 0.08);
}

.price-card--highlight {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.price-label {
    margin: 0;
    color: var(--red);
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.price-card--highlight .price-label {
    color: #ff6b72;
}

.price-card h3 {
    margin: 10px 0 0;
    font-size: 1.28rem;
    line-height: 1.25;
}

.price-lead {
    margin: 18px 0 0;
    font-size: 2.15rem;
    line-height: 1;
    font-weight: 800;
}

.price-subline {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.price-card--highlight .price-subline {
    color: rgba(255, 255, 255, 0.68);
}

.price-terms {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
}

.price-term {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid rgba(222, 214, 200, 0.72);
}

.price-card--highlight .price-term {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.price-term span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 650;
}

.price-card--highlight .price-term span {
    color: rgba(255, 255, 255, 0.62);
}

.price-term strong {
    text-align: right;
    font-size: 1.05rem;
}

.price-card ul {
    display: grid;
    gap: 11px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
    color: var(--muted);
    font-size: 0.94rem;
}

.price-card li {
    padding-left: 18px;
    position: relative;
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
}

.price-card--highlight ul {
    color: rgba(255, 255, 255, 0.76);
}

.price-note {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
}

.price-note a {
    color: var(--red);
    font-weight: 800;
}

.subpage-hero {
    position: relative;
    padding: 110px 0 78px;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.subpage-hero__media {
    position: absolute;
    inset: 0;
}

.subpage-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.04) brightness(0.62);
}

.subpage-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 11, 10, 0.92), rgba(10, 11, 10, 0.68), rgba(10, 11, 10, 0.22)),
        linear-gradient(0deg, rgba(10, 11, 10, 0.62), transparent 58%);
}

.subpage-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.45fr);
    gap: 52px;
    align-items: end;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.breadcrumbs a {
    color: var(--white);
    font-weight: 650;
}

.subpage-hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: 4rem;
    line-height: 1.03;
    hyphens: auto;
}

.subpage-hero__lead {
    max-width: 770px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.22rem;
}

.hero-side-card {
    padding: 22px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
}

.hero-side-card h2 {
    font-size: 1.28rem;
}

.hero-side-card ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.8);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.3fr) minmax(0, 1fr);
    gap: 54px;
    align-items: start;
}

.toc-card {
    position: sticky;
    top: 96px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(22, 24, 23, 0.08);
}

.toc-card strong {
    display: block;
    margin-bottom: 12px;
}

.toc-card a {
    display: block;
    padding: 8px 0;
    color: var(--muted);
    border-top: 1px solid rgba(222, 214, 200, 0.7);
}

.toc-card a:hover {
    color: var(--red);
}

.article-body {
    max-width: 850px;
    min-width: 0;
}

.article-body > p {
    color: #3f3a36;
    font-size: 1.08rem;
}

.article-body h2 {
    margin-top: 54px;
    font-size: 2.25rem;
}

.article-body h3 {
    margin: 24px 0 0;
    font-size: 1.35rem;
}

.article-body ul,
.article-body ol {
    padding-left: 22px;
    color: #3f3a36;
}

.article-body li + li {
    margin-top: 8px;
}

.callout {
    margin: 32px 0;
    padding: 24px;
    border-radius: 8px;
    background: var(--mist);
    border-left: 5px solid var(--red);
}

.callout h2,
.callout h3 {
    margin-top: 0;
}

.wide-image {
    margin: 34px 0;
}

.wide-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 28px 0;
}

.detail-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.detail-card h3 {
    margin-top: 0;
}

.detail-card p {
    color: var(--muted);
}

.comparison {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(22, 24, 23, 0.08);
}

.comparison th,
.comparison td {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.comparison th {
    background: var(--ink);
    color: var(--white);
}

.page-cta {
    margin-top: 54px;
    padding: 34px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
}

.page-cta p {
    color: rgba(255, 255, 255, 0.76);
}

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

.related-grid a {
    display: block;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    font-weight: 800;
}

.related-grid span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 400;
}

.faq-list--article {
    margin-top: 28px;
}

.download-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
    gap: 44px;
    align-items: center;
}

.download-actions {
    display: grid;
    gap: 12px;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
    gap: 54px;
    align-items: start;
}

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

details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 800;
}

details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.final-cta {
    padding: 94px 0;
    background: var(--ink);
    color: var(--white);
}

.final-cta__inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
}

.final-cta .hero__actions {
    justify-content: center;
}

.site-footer {
    padding: 54px 0 30px;
    background: #0f1110;
    color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 0.35fr 0.35fr;
    gap: 40px;
}

.brand--footer {
    color: var(--white);
}

.site-footer p {
    max-width: 430px;
    margin: 14px 0 0;
}

.site-footer h2 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 1rem;
}

.site-footer a {
    display: block;
    margin-top: 8px;
}

.site-footer a:hover {
    color: var(--white);
}

.credits {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.52);
}

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

    .header-actions {
        margin-left: auto;
    }

    .hero__inner,
    .split,
    .split--wide,
    .split--reversed,
    .module-layout,
    .download-layout,
    .faq-layout,
    .subpage-hero__inner,
    .article-layout,
    .decision-grid {
        grid-template-columns: 1fr;
    }

    .hero__inner {
        gap: 26px;
        align-items: end;
    }

    .hero__device {
        display: none;
    }

    .feature-grid,
    .topic-grid,
    .pricing-grid,
    .module-link-grid,
    .seo-grid,
    .proof-grid,
    .usecase-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screen-stage {
        min-height: 560px;
    }

    .toc-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .container,
    .nav-wrap,
    .hero__inner {
        width: min(100% - 28px, 1160px);
    }

    .nav-wrap {
        min-height: 64px;
    }

    .brand span {
        font-size: 1rem;
    }

    .button--compact {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }

    .header-actions__login {
        display: inline-flex;
    }

    .hero {
        min-height: auto;
    }

    .hero__inner {
        min-height: 590px;
        padding: 64px 0 56px;
    }

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

    .hero__lead {
        font-size: 1.55rem;
    }

    .hero__text,
    .section-copy {
        font-size: 1rem;
    }

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

    .hero__facts {
        gap: 8px;
    }

    .hero__facts li {
        font-size: 0.84rem;
    }

    .quick-band {
        margin-top: 0;
        padding: 22px 0 44px;
        background: var(--mist);
    }

    .quick-grid,
    .feature-grid,
    .topic-grid,
    .pricing-grid,
    .module-link-grid,
    .seo-grid,
    .proof-grid,
    .usecase-grid,
    .related-grid,
    .detail-grid,
    .metric-row,
    .mini-grid,
    .resource-kpis,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .band {
        padding: 64px 0;
    }

    h2 {
        font-size: 2.05rem;
    }

    .subpage-hero {
        padding: 74px 0 54px;
    }

    .subpage-hero h1 {
        font-size: 2.44rem;
    }

    .subpage-hero__lead {
        font-size: 1.06rem;
    }

    .article-body h2 {
        font-size: 1.82rem;
    }

    .comparison {
        display: block;
        overflow-x: auto;
    }

    .final-cta h2 {
        font-size: 2.12rem;
    }

    .screen-stage {
        min-height: 500px;
    }

    .screen-caption {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: -30px;
        max-width: 100%;
    }

    .media-pair img:nth-child(2) {
        width: 100%;
    }

    .price-card {
        min-height: auto;
    }
}
