@font-face {
    font-family: "Averia Serif Libre";
    src: url("../fonts/averia-serif-libre-bold.ttf") format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

:root {
    color-scheme: light;
    --ink: #0b1220;
    --ink-soft: #172033;
    --paper: #f5f3ee;
    --surface: #ffffff;
    --text: #172033;
    --muted: #596273;
    --line: #ccd1d8;
    --mint: #8ce7d5;
    --mint-strong: #52cdb7;
    --amber: #f2b84b;
    --focus: #126e63;
    --brand-ink: #16233a;
    --brand-night: #101a2e;
    --brand-night-soft: #17243a;
    --brand-canvas: #f5f0e8;
    --brand-paper: #fbf8f1;
    --brand-surface: #fffcf6;
    --brand-surface-muted: #eee5d8;
    --brand-muted: #596579;
    --brand-border: #d6cab9;
    --brand-red: #b53b2a;
    --brand-red-strong: #922d22;
    --brand-ochre: #bd812b;
    --brand-ochre-bright: #d89a42;
    --brand-ivory: #fff6e6;
    font-family: "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
    background: var(--paper);
    color: var(--text);
}

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

html {
    margin: 0;
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    min-height: 100%;
    margin: 0;
    overflow-x: clip;
    background: var(--paper);
    color: var(--text);
    line-height: 1.7;
}

body,
button,
input,
textarea {
    font: inherit;
}

a {
    color: inherit;
}

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

.page-shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 100;
    padding: 10px 14px;
    transform: translateY(-160%);
    border: 1px solid var(--ink);
    background: var(--surface);
    color: var(--ink);
}

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

:focus-visible {
    outline: 3px solid var(--amber);
    outline-offset: 3px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 76px;
    border-bottom: 1px solid rgba(255, 246, 230, 0.18);
    background: rgba(16, 26, 46, 0.97);
    color: var(--brand-ivory);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    height: 100%;
}

.site-brand {
    display: block;
    width: 188px;
    height: 54px;
    color: var(--brand-ivory);
    text-decoration: none;
}

.site-brand__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.site-header .site-brand {
    width: 172px;
    height: auto;
}

.site-header .site-brand__image {
    height: auto;
    object-fit: initial;
    object-position: initial;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
}

.site-nav__group {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav__group--resources {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 246, 230, 0.24);
}

.site-nav__account,
.site-nav-toggle {
    display: none;
}

.site-nav-toggle {
    min-height: 44px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 246, 230, 0.48);
    border-radius: 4px;
    background: transparent;
    color: var(--brand-ivory);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
}

.site-nav-toggle:hover,
.site-nav-toggle[aria-expanded="true"] {
    border-color: var(--brand-ochre-bright);
    color: var(--brand-ochre-bright);
}

.site-nav a,
.header-login,
.text-link {
    text-decoration: none;
}

.site-nav__group a,
.header-login {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
}

.site-nav a:hover,
.header-login:hover,
.text-link:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
}

.site-language {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.site-language a {
    color: inherit;
    text-underline-offset: 4px;
}

.site-language a[aria-current="page"] {
    color: var(--brand-ochre-bright);
    font-weight: 700;
    text-decoration: none;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button--header {
    min-height: 44px;
    padding: 8px 16px;
    border-color: var(--brand-red);
    background: var(--brand-red);
    color: var(--brand-ivory);
}

.button--header:hover {
    border-color: var(--brand-red-strong);
    background: var(--brand-red-strong);
}

.button--primary:hover {
    border-color: #b8f2e7;
    background: #b8f2e7;
}

.hero {
    position: relative;
    display: flex;
    min-height: min(760px, calc(100svh - 132px));
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background: var(--brand-night);
    color: var(--brand-ivory);
}

.hero__media,
.hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__media {
    z-index: -2;
    object-fit: cover;
    object-position: center 16%;
    opacity: 0.78;
}

.hero__shade {
    z-index: -1;
    background:
        radial-gradient(circle at 80% 14%, rgba(181, 59, 42, 0.16), transparent 34%),
        radial-gradient(circle at 52% 112%, rgba(189, 129, 43, 0.16), transparent 34%),
        linear-gradient(90deg, rgba(16, 26, 46, 0.98) 0%, rgba(16, 26, 46, 0.92) 42%, rgba(16, 26, 46, 0.44) 72%, rgba(16, 26, 46, 0.62) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-block: 88px 96px;
}

.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding: 7px 12px 7px 8px;
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 4px;
    background: rgba(16, 26, 46, 0.82);
    color: var(--brand-ivory);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.campaign-badge span {
    padding: 3px 7px;
    border-radius: 3px;
    background: var(--brand-ochre-bright);
    color: var(--brand-night);
}

.campaign-badge:hover {
    border-color: var(--brand-ochre-bright);
}

.hero__brand-lockup {
    display: block;
    width: min(440px, 78%);
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 8px 28px rgba(4, 8, 17, 0.32));
}

.hero__lead {
    max-width: 760px;
    margin: 8px 0 0;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.45;
}

.hero__description {
    max-width: 690px;
    margin: 22px 0 0;
    color: #e3e8ef;
    font-size: 16px;
    line-height: 1.9;
}

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

.button--primary {
    border-color: var(--mint);
    background: var(--mint);
    color: var(--ink);
}

.button--secondary {
    border-color: rgba(255, 255, 255, 0.66);
    background: rgba(11, 18, 32, 0.62);
    color: #ffffff;
}

.button--secondary:hover {
    border-color: #ffffff;
    background: rgba(11, 18, 32, 0.9);
}

.hero__note {
    margin: 14px 0 0;
    color: #d8dee8;
    font-size: 12px;
}

.trust-strip {
    border-top: 1px solid #334057;
    border-bottom: 1px solid #334057;
    background: var(--ink-soft);
    color: #ffffff;
}

.trust-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 60px;
    align-items: center;
}

.trust-strip span {
    padding: 10px 18px;
    border-right: 1px solid #334057;
    font-size: 12px;
    text-align: center;
}

.trust-strip span:first-child {
    border-left: 1px solid #334057;
}

.lp-announcements {
    border-bottom: 1px solid var(--line);
    background: #f7f6f2;
}

.lp-announcements__inner {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: center;
    gap: 48px;
    padding-block: 30px;
}

.lp-announcements__header {
    display: grid;
    gap: 12px;
}

.lp-announcements__header h2 {
    margin: 5px 0 0;
    color: var(--ink);
    font-size: 25px;
}

.lp-announcements__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.lp-announcements__links a {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.lp-announcements__links a:hover {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.lp-announcements__list {
    margin: 0;
    padding: 0;
    border-top: 2px solid var(--ink);
    list-style: none;
}

.lp-announcements__item {
    display: grid;
    grid-template-columns: 110px 160px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 18px;
    min-height: 66px;
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    text-decoration: none;
    transition: background-color 160ms ease;
}

.lp-announcements__item:hover {
    background: #ffffff;
}

.lp-announcements__item time {
    color: var(--muted);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
}

.lp-announcements__category {
    color: #287f74;
    font-size: 11px;
    font-weight: 700;
}

.lp-announcements__item strong {
    color: var(--ink);
    font-size: 15px;
}

.lp-announcements__arrow {
    color: var(--ink);
    font-size: 18px;
    text-align: center;
}

.section {
    padding-block: 104px;
}

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

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

.section--ink {
    border-block: 1px solid #29364c;
    background: var(--ink);
    color: #ffffff;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading--split {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: end;
    gap: 72px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.closing-cta h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.4;
    letter-spacing: 0;
}

.section-heading > p:last-child,
.section-heading--split > p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.section-heading--on-dark > p:last-child,
.section-heading--on-dark > p {
    color: #c8d0dd;
}

.problem-section {
    border-bottom: 1px solid var(--line);
}

.problem-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 88px;
}

.problem-layout .section-heading {
    margin-bottom: 34px;
}

.problem-copy__lead {
    margin: 0 0 30px;
    color: var(--text);
    font-size: 17px;
    line-height: 2;
}

.friction-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.friction-list li {
    position: relative;
    padding: 17px 12px 17px 32px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.friction-list li::before {
    position: absolute;
    top: 17px;
    left: 8px;
    color: #287d71;
    content: "—";
    font-weight: 700;
}

.founder-note {
    margin: 34px 0 0;
    padding: 24px 0 0 28px;
    border-top: 1px solid var(--line);
    border-left: 3px solid var(--amber);
}

.founder-note p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 2;
}

.founder-note footer {
    margin-top: 14px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.editorial-media,
.brand-film {
    position: relative;
    margin: 0;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #8f99a8;
    border-radius: 6px;
    background: #111c2e;
}

.editorial-media--story {
    aspect-ratio: 4 / 3;
    align-self: center;
}

.editorial-media--portrait {
    aspect-ratio: 4 / 5;
}

.editorial-media img,
.brand-film img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-media--story::after,
.brand-film::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(5, 10, 20, 0.84) 100%);
    content: "";
    pointer-events: none;
}

.editorial-media--story figcaption {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;
    z-index: 1;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
}

.brand-film {
    aspect-ratio: 16 / 9;
    margin-top: 56px;
    border-color: #526078;
}

.brand-film__caption {
    position: absolute;
    right: 40px;
    bottom: 36px;
    left: 40px;
    z-index: 1;
    display: grid;
    max-width: 760px;
    gap: 10px;
    color: #ffffff;
}

.brand-film__caption strong {
    max-width: 680px;
    font-size: 23px;
    line-height: 1.55;
}

.belief-section {
    padding-block: 112px;
}

.belief-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 88px;
}

.belief-copy h2 {
    max-width: 760px;
    margin: 0;
    font-size: 42px;
    line-height: 1.45;
}

.belief-copy__lead {
    max-width: 760px;
    margin: 30px 0 0;
    color: #d5dbe5;
    font-size: 16px;
    line-height: 2;
}

.belief-principles {
    border-top: 1px solid #526078;
}

.belief-principles > div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding-block: 22px;
    border-bottom: 1px solid #526078;
}

.belief-principles span {
    color: var(--mint);
    font-family: Consolas, "Courier New", monospace;
    font-size: 12px;
    font-weight: 700;
}

.belief-principles p {
    margin: 0;
    color: #e0e6ee;
    font-size: 14px;
    line-height: 1.8;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.product-proof {
    margin: 0 0 42px;
    border: 1px solid #8f99a8;
    background: var(--ink);
}

.product-proof img {
    display: block;
    width: 100%;
    height: auto;
}

.product-proof figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 18px;
    color: #d5dbe5;
    font-size: 12px;
}

.lp-product-gallery {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 18px;
    margin-top: 42px;
}

.lp-product-gallery__item {
    margin: 0;
    overflow: hidden;
    border: 1px solid #42506a;
    background: #121b2b;
}

.lp-product-gallery__item img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: top center;
}

.lp-product-gallery__item figcaption {
    display: grid;
    gap: 7px;
    padding: 20px 22px 22px;
}

.lp-product-gallery__item strong {
    color: #ffffff;
    font-size: 15px;
}

.lp-product-gallery__item span {
    color: #bdc8d8;
    font-size: 12px;
    line-height: 1.75;
}

.experience-item {
    min-width: 0;
    padding: 36px 32px 38px;
    border-left: 1px solid var(--line);
}

.experience-item:last-child {
    border-right: 1px solid var(--line);
}

.experience-item__number,
.feature-card__index {
    color: #287d71;
    font-family: Consolas, "Courier New", monospace;
    font-size: 13px;
    font-weight: 700;
}

.experience-item h3,
.feature-card h3 {
    margin: 28px 0 12px;
    font-size: 20px;
    line-height: 1.45;
}

.experience-item p,
.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

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

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

.difference-section {
    border-block: 1px solid var(--line);
}

.difference-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 84px;
}

.difference-layout .section-heading {
    margin-bottom: 0;
}

.comparison {
    border-top: 2px solid var(--ink);
}

.comparison__row {
    display: grid;
    grid-template-columns: 0.65fr 0.9fr 1fr 1.15fr;
    min-width: 0;
    border-bottom: 1px solid var(--line);
}

.comparison__row > * {
    min-width: 0;
    padding: 18px;
    border-left: 1px solid var(--line);
    font-size: 13px;
    line-height: 1.7;
}

.comparison__row > *:last-child {
    border-right: 1px solid var(--line);
    background: #e7f7f2;
    color: #173e37;
    font-weight: 700;
}

.comparison__row--head > * {
    background: #e9ecef;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
}

.comparison__row strong {
    color: var(--ink);
}

.founder-section {
    border-bottom: 1px solid var(--line);
}

.founder-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 88px;
}

.founder-copy h2 {
    margin: 0 0 28px;
    font-size: 40px;
    line-height: 1.45;
}

.founder-copy > p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 2;
}

.start-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    list-style: none;
}

.start-product-proof {
    margin: 0 0 32px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--ink);
}

.start-product-proof img {
    display: block;
    width: 100%;
}

.start-product-proof figcaption {
    padding: 13px 18px;
    color: #d5dbe5;
    font-size: 12px;
}

.start-steps li {
    min-width: 0;
    padding: 28px 24px 30px;
    border-left: 1px solid var(--line);
}

.start-steps li:last-child {
    border-right: 1px solid var(--line);
}

.start-steps__number {
    color: #287d71;
    font-family: Consolas, "Courier New", monospace;
    font-size: 13px;
    font-weight: 700;
}

.start-steps h3 {
    margin: 22px 0 8px;
    font-size: 18px;
    line-height: 1.45;
}

.start-steps p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.start-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid #aeb5bf;
    border-left: 4px solid var(--amber);
    background: var(--surface);
}

.start-cta p {
    margin: 0;
    font-size: 14px;
}

.start-cta strong {
    margin-right: 8px;
    color: #8b5700;
}

.feature-card {
    min-width: 0;
    min-height: 250px;
    padding: 26px;
    border: 1px solid #3a465c;
    border-radius: 6px;
    background: var(--ink-soft);
}

.feature-card__index {
    color: var(--mint);
}

.feature-card p {
    color: #c8d0dd;
}

.feature-card--audience {
    min-height: 0;
    padding: 34px;
}

.feature-card--audience .feature-card__index {
    color: var(--mint);
    font-size: 12px;
}

.feature-card--audience h3 {
    max-width: 520px;
    margin: 16px 0 14px;
    font-size: 27px;
}

.feature-card--audience > p {
    max-width: 620px;
}

.feature-card--audience ul {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid #3f4d64;
    list-style: none;
}

.feature-card--audience li {
    position: relative;
    padding-left: 22px;
    color: #e1e7ef;
    font-size: 13px;
    line-height: 1.75;
}

.feature-card--audience li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--mint);
    content: "→";
}

.feature-more {
    display: flex;
    margin-top: 28px;
}

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

.pricing-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 440px;
    flex-direction: column;
    padding: 34px;
    border: 1px solid #aeb5bf;
    border-radius: 6px;
    background: var(--surface);
}

.pricing-card--featured {
    border: 2px solid var(--ink);
    background: #e7f7f2;
}

.pricing-card__badge {
    position: absolute;
    top: -15px;
    left: 24px;
    margin: 0;
    padding: 4px 12px;
    border: 1px solid var(--ink);
    border-radius: 4px;
    background: var(--amber);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
}

.pricing-card__name {
    margin: 0;
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 22px 0 6px;
    color: var(--ink);
    font-family: Consolas, "Courier New", monospace;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}

.pricing-card__price span {
    font-size: 20px;
}

.pricing-card__price small {
    color: var(--muted);
    font-family: "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
    font-size: 13px;
    font-weight: 400;
}

.pricing-card__allowance {
    margin: 16px 0 0;
    padding-block: 12px;
    border-block: 1px solid var(--line);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.pricing-card__campaign {
    display: grid;
    gap: 4px;
    margin-top: 14px;
    padding: 12px 14px;
    border-left: 3px solid #287f74;
    background: #e9f4f1;
    color: var(--ink);
}

.pricing-card__campaign span {
    color: #287f74;
    font-size: 11px;
    font-weight: 700;
}

.pricing-card__campaign strong {
    font-size: 15px;
}

.pricing-card__campaign small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.pricing-card__description {
    flex: 1;
    margin: 22px 0 28px;
    color: var(--muted);
    font-size: 14px;
}

.button--outline {
    border-color: var(--ink);
    background: transparent;
    color: var(--ink);
}

.button--outline:hover {
    background: var(--ink);
    color: #ffffff;
}

.button--primary-dark {
    border-color: var(--ink);
    background: var(--ink);
    color: #ffffff;
}

.button--primary-dark:hover {
    border-color: #26344d;
    background: #26344d;
}

.pricing-note {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.pricing-note a,
.contact-form__footer a,
.document-content a,
.support-page a:not(.button),
.document-related a {
    color: var(--focus);
    text-underline-offset: 4px;
}

.mobile-only-break {
    display: none;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
    gap: 80px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    cursor: pointer;
    padding: 24px 42px 24px 0;
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
}

.faq-list details p {
    margin: -6px 0 24px;
    padding-right: 42px;
    color: var(--muted);
    font-size: 14px;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 88px;
}

.contact-layout .section-heading {
    margin-bottom: 0;
}

.contact-form-wrap {
    min-width: 0;
}

.contact-form {
    display: grid;
    gap: 24px;
}

.contact-form__field {
    display: grid;
    gap: 8px;
}

.contact-form__field label {
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.contact-form__field label span {
    margin-left: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 400;
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    border: 1px solid #9fa7b3;
    border-radius: 4px;
    background: var(--surface);
    color: var(--text);
    padding: 12px 14px;
}

.contact-form__field textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.7;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: #70798a;
    opacity: 1;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    border-color: var(--focus);
}

.contact-form__field .input-validation-error {
    border-color: #b42318;
}

.field-validation {
    min-height: 20px;
    color: #9b1c1c;
    font-size: 12px;
}

.contact-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 4px;
}

.contact-form__footer p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.contact-form__footer .button {
    min-width: 132px;
}

.contact-form__trap {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.form-status {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border: 1px solid;
    border-radius: 4px;
    font-size: 13px;
}

.contact-form[hidden],
.form-status[hidden] {
    display: none;
}

.form-status--success {
    border-color: #408778;
    background: #e7f7f2;
    color: #173e37;
}

.form-status--error {
    border-color: #d88a8a;
    background: #fff1f1;
    color: #8c1d1d;
}

.validation-summary-valid {
    display: none;
}

.closing-cta {
    padding-block: 76px;
    border-block: 1px solid #334057;
    background: var(--ink-soft);
    color: #ffffff;
}

.closing-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 48px;
}

.closing-cta__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.text-link {
    font-size: 13px;
}

.features-catalog-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--brand-ochre);
    background:
        radial-gradient(circle at 78% 12%, rgba(181, 59, 42, 0.22), transparent 28%),
        radial-gradient(circle at 92% 88%, rgba(216, 154, 66, 0.18), transparent 30%),
        linear-gradient(135deg, var(--brand-night) 0%, #182743 64%, #111c31 100%);
    color: var(--brand-ivory);
}

.features-catalog-hero::after {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(255, 255, 255, 0.025) 80px);
    content: "";
    pointer-events: none;
}

.features-catalog-hero__inner {
    position: relative;
    z-index: 1;
    padding-block: clamp(70px, 9vw, 126px) clamp(58px, 7vw, 92px);
}

.features-catalog-hero__label {
    margin: 0 0 16px;
    color: #efb354;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.features-catalog-hero h1 {
    max-width: 900px;
    margin: 0;
    color: var(--brand-ivory);
    font-family: "Averia Serif Libre", Georgia, serif;
    font-size: clamp(44px, 6.4vw, 76px);
    line-height: 1.08;
}

.features-catalog-hero__inner > p:not(.features-catalog-hero__label) {
    max-width: 760px;
    margin: 28px 0 0;
    color: #d9dfeb;
    font-size: 16px;
    line-height: 1.9;
}

.features-catalog-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    width: fit-content;
    margin: 38px 0 0;
    border: 1px solid rgba(255, 246, 230, 0.24);
    background: rgba(255, 246, 230, 0.14);
}

.features-catalog-hero__facts div {
    display: grid;
    grid-template-columns: auto auto;
    gap: 14px;
    padding: 13px 18px;
    background: rgba(16, 26, 46, 0.74);
}

.features-catalog-hero__facts dt {
    color: #b9c2d3;
    font-size: 11px;
}

.features-catalog-hero__facts dd {
    margin: 0;
    color: var(--brand-ivory);
    font-size: 12px;
    font-weight: 700;
}

.features-catalog-page {
    padding-block: 56px 112px;
}

.features-catalog-search {
    display: grid;
    grid-template-columns: minmax(260px, 560px) auto minmax(180px, 1fr);
    align-items: end;
    gap: 18px;
    margin-bottom: 22px;
    padding: 24px;
    border: 1px solid var(--brand-border);
    border-top: 3px solid var(--brand-red);
    background: var(--brand-surface);
}

.features-catalog-search__field {
    display: grid;
    gap: 8px;
}

.features-catalog-search label {
    color: var(--brand-ink);
    font-size: 13px;
    font-weight: 700;
}

.features-catalog-search input {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid #aeb6c1;
    border-radius: 2px;
    background: #ffffff;
    color: var(--brand-ink);
    font: inherit;
}

.features-catalog-search input:focus {
    border-color: var(--brand-red-strong);
    outline: 3px solid rgba(181, 59, 42, 0.16);
    outline-offset: 1px;
}

.features-catalog-search__clear {
    min-height: 48px;
    padding: 10px 16px;
    border: 1px solid var(--brand-ink);
    border-radius: 2px;
    background: transparent;
    color: var(--brand-ink);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
}

.features-catalog-search__clear:disabled {
    border-color: var(--brand-border);
    color: var(--brand-muted);
    cursor: default;
}

.features-catalog-search__status {
    margin: 0;
    color: var(--brand-muted);
    font-size: 13px;
    line-height: 1.6;
}

.features-catalog-screenshot-note {
    margin: 0 0 56px;
    padding: 16px 18px;
    border-left: 3px solid var(--brand-ochre);
    background: #eee7dc;
    color: var(--brand-muted);
    font-size: 12px;
    line-height: 1.8;
}

.features-catalog-layout {
    display: grid;
    grid-template-columns: 218px minmax(0, 1fr);
    align-items: start;
    gap: clamp(42px, 6vw, 78px);
}

.features-catalog-index {
    position: sticky;
    top: 104px;
    padding-top: 16px;
    border-top: 3px solid var(--brand-ink);
}

.features-catalog-index > p {
    margin: 0 0 12px;
    color: var(--brand-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.features-catalog-index ol {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--brand-border);
    list-style: none;
}

.features-catalog-index li {
    border-top: 1px solid var(--brand-border);
}

.features-catalog-index a {
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    min-height: 46px;
    padding: 8px 2px;
    color: var(--brand-ink);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
}

.features-catalog-index a:hover {
    color: var(--brand-red-strong);
}

.features-catalog-index a span {
    color: var(--brand-ochre);
    font-family: Georgia, serif;
    font-size: 12px;
}

.features-catalog-content {
    min-width: 0;
}

.features-catalog-section {
    padding-bottom: 88px;
    scroll-margin-top: 112px;
}

.features-catalog-section + .features-catalog-section {
    padding-top: 82px;
    border-top: 1px solid var(--brand-border);
}

.features-catalog-section__header {
    position: relative;
    max-width: 820px;
    margin-bottom: 34px;
    padding-right: 80px;
}

.features-catalog-section__header h2 {
    margin: 0;
    color: var(--brand-ink);
    font-family: "Averia Serif Libre", Georgia, serif;
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.2;
}

.features-catalog-section__header > p:not(.features-catalog-section__count) {
    margin: 16px 0 0;
    color: var(--brand-muted);
    font-size: 14px;
    line-height: 1.85;
}

.features-catalog-section__count {
    position: absolute;
    top: 5px;
    right: 0;
    margin: 0;
    color: var(--brand-red-strong);
    font-family: Georgia, serif;
    font-size: 13px;
    font-weight: 700;
}

.features-catalog-screenshots {
    display: grid;
    gap: 22px;
    margin: 0 0 36px;
}

.features-catalog-screenshot {
    min-width: 0;
    margin: 0;
}

.features-catalog-screenshot--narrow {
    width: min(100%, 620px);
    margin-inline: auto;
}

.features-catalog-screenshot a {
    display: block;
    padding: 5px;
    border: 1px solid #b9aa94;
    border-top: 3px solid var(--brand-ochre);
    border-radius: 5px;
    background: #f5eddf;
    box-shadow: 0 14px 32px rgba(22, 35, 58, 0.13);
}

.features-catalog-screenshot img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(22, 35, 58, 0.2);
    border-radius: 2px;
    background: #ffffff;
}

.features-catalog-screenshot figcaption {
    position: relative;
    margin-top: 11px;
    padding-left: 30px;
    color: var(--brand-muted);
    font-size: 12px;
    line-height: 1.7;
}

.features-catalog-screenshot figcaption::before {
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--brand-ochre);
    content: "";
}

.features-catalog-list {
    margin: 0;
    border-top: 2px solid var(--brand-ink);
}

.features-catalog-item {
    display: grid;
    grid-template-columns: minmax(190px, 28%) minmax(0, 1fr);
    gap: 30px;
    padding: 22px 8px;
    border-bottom: 1px solid var(--brand-border);
    scroll-margin-top: 112px;
}

.features-catalog-item:target {
    margin-inline: -10px;
    padding-inline: 18px;
    border-left: 4px solid var(--brand-red);
    background: #f3e8dc;
}

.features-catalog-item dt,
.features-catalog-item dd {
    margin: 0;
}

.features-catalog-item dt {
    color: var(--brand-ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.65;
}

.features-catalog-item dt a {
    color: inherit;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
}

.features-catalog-item dt a:hover,
.features-catalog-item dt a:focus-visible {
    color: var(--brand-red-strong);
    text-decoration-color: currentColor;
}

.features-catalog-item dd {
    color: #485469;
    font-size: 13px;
    line-height: 1.85;
}

.features-catalog-empty {
    margin: 0;
    padding: 48px 24px;
    border-block: 1px solid var(--brand-border);
    color: var(--brand-muted);
    text-align: center;
}

.features-catalog-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
    padding: 42px;
    border-left: 4px solid var(--brand-red);
    background: var(--brand-night);
    color: var(--brand-ivory);
}

.features-catalog-cta h2 {
    margin: 0;
    color: var(--brand-ivory);
    font-family: "Averia Serif Libre", Georgia, serif;
    font-size: clamp(27px, 3.5vw, 40px);
}

.features-catalog-cta p {
    margin: 12px 0 0;
    color: #cbd3df;
    font-size: 13px;
}

@media (max-width: 1100px) {
    .features-catalog-layout {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .features-catalog-index {
        position: static;
    }

    .features-catalog-index ol {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-bottom: 0;
        column-gap: 24px;
    }

    .features-catalog-index li:nth-last-child(-n + 2) {
        border-bottom: 1px solid var(--brand-border);
    }
}

@media (max-width: 680px) {
    .features-catalog-hero__inner {
        padding-block: 60px 52px;
    }

    .features-catalog-hero h1 {
        font-size: 40px;
    }

    .features-catalog-hero__facts {
        display: grid;
        width: 100%;
    }

    .features-catalog-hero__facts div {
        grid-template-columns: 1fr auto;
    }

    .features-catalog-page {
        padding-block: 38px 76px;
    }

    .features-catalog-search {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .features-catalog-search__clear {
        width: 100%;
    }

    .features-catalog-screenshot-note {
        margin-bottom: 40px;
    }

    .features-catalog-layout {
        gap: 46px;
    }

    .features-catalog-index ol {
        column-gap: 16px;
    }

    .features-catalog-index a {
        min-height: 52px;
        font-size: 11px;
    }

    .features-catalog-section {
        padding-bottom: 62px;
    }

    .features-catalog-section + .features-catalog-section {
        padding-top: 58px;
    }

    .features-catalog-section__header {
        padding-right: 0;
    }

    .features-catalog-section__count {
        position: static;
        margin-top: 12px;
    }

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

    .features-catalog-screenshot a {
        padding: 3px;
    }

    .features-catalog-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px 4px;
    }

    .features-catalog-item:target {
        margin-inline: -6px;
        padding-inline: 10px;
    }

    .features-catalog-cta {
        grid-template-columns: 1fr;
        align-items: start;
        padding: 30px 24px;
    }
}

@media print {
    .features-catalog-search,
    .features-catalog-index,
    .features-catalog-cta {
        display: none !important;
    }

    .features-catalog-layout {
        display: block;
    }

    .features-catalog-section,
    .features-catalog-section + .features-catalog-section {
        padding-block: 24px;
    }
}
.partnerships-hero {
    background:
        radial-gradient(circle at 82% 8%, rgba(82, 205, 183, 0.12), transparent 30%),
        linear-gradient(135deg, #0b1220 0%, #19263a 62%, #101c2c 100%);
}

.partnerships-hero .document-hero__inner {
    max-width: 1040px;
}

.partnerships-hero h1 {
    max-width: 840px;
    font-size: clamp(42px, 5.2vw, 64px);
    line-height: 1.22;
}

.partnerships-hero .partnerships-hero__label {
    margin: 0 0 16px;
    color: var(--mint);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.partnerships-hero p:last-child {
    max-width: 770px;
    font-size: 16px;
    line-height: 2;
}

.partnerships-page {
    max-width: 1120px;
    padding-block: 76px 112px;
}

.partnerships-direction {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: end;
    gap: 84px;
}

.partnerships-kicker,
.partnerships-opportunity__label {
    margin: 0 0 12px;
    color: #287f74;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.partnerships-direction h2,
.partnerships-contact h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.35;
}

.partnerships-direction > p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 2;
}

.partnerships-principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-top: 64px;
    border: 1px solid var(--line);
    background: var(--line);
}

.partnerships-principles article {
    min-height: 250px;
    padding: 32px 28px;
    background: var(--surface);
}

.partnerships-principles span {
    color: #287f74;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
}

.partnerships-principles h3 {
    margin: 42px 0 14px;
    color: var(--ink);
    font-size: 19px;
}

.partnerships-principles p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.85;
}

.partnerships-opportunities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 96px;
    padding-top: 96px;
    border-top: 1px solid var(--line);
}

.partnerships-opportunity {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    min-height: 620px;
    padding: 40px 36px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.partnerships-opportunity--investment {
    border-top: 4px solid #287f74;
}

.partnerships-opportunity--collaboration {
    border-top: 4px solid var(--amber);
}

.partnerships-opportunity h2 {
    margin: 22px 0 16px;
    color: var(--ink);
    font-size: 30px;
}

.partnerships-opportunity > p:not(.partnerships-opportunity__label, .partnerships-opportunity__note) {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.partnerships-opportunity ul {
    width: 100%;
    margin: 30px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.partnerships-opportunity li {
    position: relative;
    padding: 9px 0 9px 20px;
    color: var(--ink);
    font-size: 13px;
    line-height: 1.7;
}

.partnerships-opportunity li::before {
    position: absolute;
    left: 0;
    color: #287f74;
    content: "→";
}

.partnerships-opportunity__note {
    margin: auto 0 26px;
    padding-top: 26px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.partnerships-opportunity .button {
    width: 100%;
}

.partnerships-contact {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 84px;
    margin-top: 96px;
    padding: 56px;
    border-left: 4px solid #287f74;
    background: #e9f4f1;
}

.partnerships-contact h2 {
    font-size: clamp(28px, 3.5vw, 40px);
}

.partnerships-contact__body p {
    margin: 0;
    color: #374151;
    font-size: 14px;
    line-height: 1.9;
}

.partnerships-contact__body .partnerships-contact__note {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #bad6cf;
    color: var(--muted);
    font-size: 12px;
}

.news-page {
    padding-block: 72px 112px;
}

.news-page__intro h2 {
    margin: 8px 0 34px;
    color: var(--ink);
    font-size: 32px;
}

.news-list {
    border-top: 2px solid var(--ink);
}

.published-content-empty {
    margin: 0;
    padding: 34px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.news-list-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 34px;
    padding: 32px 18px;
    border-bottom: 1px solid var(--line);
}

.news-list-item__meta {
    display: grid;
    gap: 9px;
}

.news-list-item__meta time {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
}

.news-list-item__meta span,
.news-article__meta span {
    color: #287f74;
    font-size: 11px;
    font-weight: 700;
}

.news-list-item__content h3 {
    margin: 0 0 8px;
    font-size: 21px;
}

.news-list-item__content h3 a {
    color: var(--ink);
    text-decoration: none;
}

.news-list-item__content h3 a:hover,
.news-back-link:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.news-list-item__content p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.news-list-item__arrow {
    color: var(--ink);
    font-size: 24px;
    text-align: center;
    text-decoration: none;
}

.news-article {
    max-width: 900px;
    padding-block: 58px 112px;
}

.news-back-link {
    display: inline-flex;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    text-decoration: none;
}

.news-article__header {
    margin-top: 52px;
    padding-bottom: 52px;
    border-bottom: 2px solid var(--ink);
}

.news-article__meta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.news-article__meta time {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
}

.news-article__header h1 {
    margin: 22px 0 18px;
    color: var(--ink);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.25;
}

.news-article__header > p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.news-article__body {
    max-width: 760px;
    margin: 0 auto;
    padding-top: 64px;
}

.published-content-body h2:not(:first-child) {
    margin-top: 44px;
    padding-top: 44px;
    border-top: 1px solid var(--line);
}

.published-content-body table {
    width: 100%;
    margin-bottom: 24px;
    border-collapse: collapse;
}

.published-content-body th,
.published-content-body td {
    padding: 12px 14px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.published-content-body th {
    background: #f7f6f2;
    color: var(--ink);
}

.news-article__cta {
    margin-top: 10px;
}

.guide-hero {
    background:
        radial-gradient(circle at 82% 14%, rgba(82, 205, 183, 0.13), transparent 30%),
        linear-gradient(135deg, #0b1220 0%, #19263a 62%, #101c2c 100%);
}

.guide-hero__label {
    margin: 0 0 14px;
    color: var(--mint);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.guide-page__intro {
    display: grid;
    grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
    align-items: end;
    gap: 56px;
    margin-bottom: 34px;
}

.guide-page__intro h2 {
    margin-bottom: 0;
}

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

.guide-list-item__meta {
    align-content: start;
}

.guide-list-item__meta time {
    color: var(--muted);
    font-family: inherit;
    font-size: 12px;
}

.guide-list-item__content h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 21px;
    line-height: 1.5;
}

.guide-list-item__content h2 a {
    text-decoration: none;
}

.guide-list-item__content h2 a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.guide-breadcrumb {
    color: var(--muted);
    font-size: 12px;
}

.guide-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.guide-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.guide-breadcrumb li:not(:last-child)::after {
    color: #8992a1;
    content: "/";
}

.guide-breadcrumb a {
    text-decoration: none;
}

.guide-breadcrumb a:hover {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.guide-article__meta {
    flex-wrap: wrap;
}

.guide-article__meta time {
    color: var(--muted);
    font-family: inherit;
    font-size: 12px;
}

.guide-article__author {
    margin-top: 22px !important;
    color: var(--muted) !important;
    font-size: 12px !important;
}

.guide-article__body {
    overflow-wrap: anywhere;
}

.guide-article__body table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
}

.guide-product-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 0;
    margin-top: 80px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--brand-night);
    color: var(--brand-ivory);
}

.guide-product-cta__proof {
    display: grid;
    align-content: start;
    margin: 0;
    background: #111b2c;
}

.guide-product-cta__proof img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #344158;
    background: #f5f3ee;
}

.guide-product-cta__proof figcaption {
    padding: 14px 18px 16px;
    color: #bdc7d6;
    font-size: 11px;
    line-height: 1.75;
}

.guide-product-cta__content {
    align-self: center;
    padding: 34px 32px;
}

.guide-product-cta__label {
    margin: 0 0 10px;
    color: var(--mint);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.guide-product-cta__content h2 {
    margin: 0;
    color: var(--brand-ivory);
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.45;
}

.guide-product-cta__content > p:not(.guide-product-cta__label) {
    margin: 18px 0 0;
    color: #cbd4e0;
    font-size: 13px;
    line-height: 1.9;
}

.guide-product-cta__actions {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.news-campaign {
    padding: 34px;
    border-top: 3px solid #287f74;
    background: #e9f4f1;
}

.news-campaign h2 {
    margin-top: 10px;
}

.news-campaign strong {
    color: var(--ink);
}

.news-campaign__cta {
    margin-top: 8px;
}

.document-content .news-campaign__cta,
.document-content .news-article__cta {
    color: #ffffff;
}

.document-hero {
    padding-block: 82px 76px;
    border-bottom: 1px solid #334057;
    background: var(--ink-soft);
    color: #ffffff;
}

.document-hero__inner {
    max-width: 940px;
}

.document-hero h1 {
    margin: 12px 0 18px;
    font-size: 48px;
    line-height: 1.2;
}

.document-hero p {
    max-width: 760px;
    margin: 0;
    color: #d5dbe5;
}

.document-hero .document-hero__meta {
    margin-top: 22px;
    color: #aeb8c8;
    font-size: 12px;
}

.not-found-page {
    max-width: 940px;
    padding-block: 72px 104px;
}

.not-found-page h2 {
    margin: 0;
    color: var(--ink);
    font-size: 30px;
}

.not-found-page__message {
    max-width: 680px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.not-found-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.not-found-page__note {
    max-width: 680px;
    margin: 40px 0 0;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.document-layout {
    display: grid;
    grid-template-columns: 190px minmax(0, 760px);
    justify-content: center;
    gap: 76px;
    padding-block: 72px 104px;
}

.document-nav {
    position: sticky;
    top: 112px;
    align-self: start;
    border-top: 2px solid var(--ink);
}

.document-nav p {
    margin: 0;
    padding-block: 14px 10px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
}

.document-nav a {
    display: block;
    padding-block: 7px;
    color: var(--muted);
    font-size: 12px;
    text-decoration: none;
}

.document-nav a:hover {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.document-content {
    min-width: 0;
}

.document-content section {
    padding-bottom: 44px;
    scroll-margin-top: 108px;
}

.document-content section + section {
    padding-top: 44px;
    border-top: 1px solid var(--line);
}

.document-content h2,
.support-section h2,
.support-primary h2 {
    margin: 0 0 20px;
    color: var(--ink);
    font-size: 26px;
    line-height: 1.45;
}

.document-content h3 {
    margin: 30px 0 12px;
    color: var(--ink);
    font-size: 17px;
}

.document-content p,
.document-content li,
.support-page p,
.support-page li,
.support-page dt,
.support-page dd {
    color: #374151;
    font-size: 15px;
}

.document-content p {
    margin: 0 0 18px;
}

.document-content ul,
.document-content ol,
.support-page ul,
.support-page ol {
    margin: 0 0 20px;
    padding-left: 1.35rem;
}

.document-content li + li,
.support-page li + li {
    margin-top: 8px;
}

.document-single {
    max-width: 980px;
    padding-block: 72px 104px;
}

.document-notice {
    display: grid;
    gap: 4px;
    margin-bottom: 32px;
    padding: 18px 20px;
    border: 1px solid #c78b25;
    border-left-width: 4px;
    background: #fff8e8;
    color: #5d3a00;
    font-size: 13px;
}

.document-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    border-top: 2px solid var(--ink);
}

.document-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
}

.document-table th,
.document-table td {
    padding: 15px 16px;
    border-bottom: 1px solid var(--line);
    color: #374151;
    font-size: 13px;
    line-height: 1.7;
    text-align: left;
    vertical-align: top;
}

.document-table thead th,
.document-table--disclosure th {
    background: #e9ecef;
    color: var(--ink);
    font-weight: 700;
}

.document-table--disclosure th {
    width: 220px;
}

.document-related {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 13px;
}

.support-page {
    max-width: 980px;
    padding-block: 72px 104px;
}

.support-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-block: 0 48px;
    border-bottom: 1px solid var(--line);
}

.support-primary > div {
    max-width: 680px;
}

.support-primary p,
.support-section p {
    margin: 0 0 18px;
}

.support-section {
    padding-block: 44px;
    border-bottom: 1px solid var(--line);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px;
    border-bottom: 1px solid var(--line);
}

.support-grid .support-section {
    border-bottom: 0;
}

.support-section--warning {
    padding-left: 24px;
    border-left: 4px solid var(--amber);
}

.support-contact-list {
    margin: 0;
}

.support-contact-list > div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 16px;
    padding-block: 12px;
    border-bottom: 1px solid var(--line);
}

.support-contact-list dt {
    color: var(--ink);
    font-weight: 700;
}

.support-contact-list dd {
    margin: 0;
}

.support-section__note {
    margin-top: 22px !important;
    color: var(--muted) !important;
    font-size: 13px !important;
}

.site-footer {
    padding-block: 52px;
    background: var(--brand-night);
    color: #c4b8a8;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(190px, 0.7fr) minmax(0, 2.3fr);
    align-items: start;
    gap: 44px 72px;
}

.site-footer__brand {
    display: grid;
    gap: 10px;
}

.site-footer__nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 34px;
}

.site-footer__group h2 {
    margin: 0 0 16px;
    color: var(--brand-ivory);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.site-footer__group ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__group a {
    color: rgba(255, 246, 230, 0.82);
    font-size: 12px;
    line-height: 1.55;
    text-decoration: none;
}

.site-footer__link-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 246, 230, 0.82);
    cursor: pointer;
    font-size: 12px;
}

.site-footer__group a:hover,
.site-footer__link-button:hover {
    color: var(--brand-ochre-bright);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-brand--footer {
    height: 42px;
}

.site-brand--footer .brand-wordmark {
    font-size: 31px;
}

.site-footer p {
    margin: 0;
    font-size: 12px;
}

.site-footer__copyright {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 246, 230, 0.16);
    color: rgba(255, 246, 230, 0.58);
}

.cookie-banner {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -10px 28px rgba(11, 18, 32, 0.12);
}

.cookie-banner__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding-block: 20px;
}

.cookie-banner__copy h2,
.cookie-dialog h2,
.cookie-preference h3 {
    margin: 0;
    color: var(--ink);
    letter-spacing: 0;
}

.cookie-banner__copy h2 {
    font-size: 17px;
}

.cookie-banner__copy p {
    max-width: 720px;
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.cookie-banner__copy a {
    color: var(--focus);
    font-weight: 700;
}

.cookie-banner__actions,
.cookie-dialog__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-button,
.document-action {
    min-height: 40px;
    padding: 8px 14px;
    border: 1px solid var(--ink);
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
}

.cookie-button--primary,
.document-action {
    background: var(--ink);
    color: #ffffff;
}

.cookie-button--quiet {
    background: var(--surface);
    color: var(--ink);
}

.cookie-button--link {
    min-height: auto;
    padding-inline: 6px;
    border-color: transparent;
    background: transparent;
    color: var(--focus);
}

.cookie-button:hover,
.document-action:hover {
    border-color: var(--focus);
}

.document-action {
    margin-top: 12px;
}

.cookie-dialog {
    width: min(620px, calc(100% - 32px));
    max-height: calc(100svh - 32px);
    padding: 0;
    overflow: auto;
    border: 1px solid var(--ink);
    border-radius: 6px;
    background: var(--surface);
    color: var(--text);
}

.cookie-dialog::backdrop {
    background: rgba(7, 11, 19, 0.68);
}

.cookie-dialog__body {
    padding: 26px;
}

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

.cookie-dialog h2 {
    font-size: 23px;
}

.cookie-dialog__close {
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 23px;
    line-height: 1;
}

.cookie-dialog__lead {
    margin: 18px 0 8px;
    color: var(--muted);
    font-size: 14px;
}

.cookie-preference {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding-block: 20px;
    border-top: 1px solid var(--line);
}

.cookie-preference h3 {
    font-size: 15px;
}

.cookie-preference p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.cookie-switch {
    display: inline-flex;
    min-width: 104px;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.cookie-switch input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--focus);
}

.cookie-switch input:disabled {
    cursor: not-allowed;
}

.cookie-dialog__actions {
    justify-content: flex-end;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-header__inner {
        grid-template-columns: auto 1fr;
    }

    .site-header__actions {
        justify-content: flex-end;
    }

    .section-heading--split,
    .faq-layout,
    .problem-layout,
    .contact-layout,
    .belief-layout,
    .difference-layout,
    .founder-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .belief-layout,
    .founder-layout {
        gap: 48px;
    }

    .difference-layout {
        gap: 42px;
    }

    .editorial-media--story,
    .editorial-media--portrait {
        width: min(620px, 100%);
        margin-inline: auto;
    }

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

    .start-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .start-steps li:nth-child(3),
    .start-steps li:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .experience-item:nth-child(3) {
        border-top: 1px solid var(--line);
    }

    .experience-item:nth-child(4) {
        border-top: 1px solid var(--line);
        border-right: 1px solid var(--line);
    }

    .pricing-card {
        padding: 28px 22px;
    }

    .closing-cta__inner,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .cookie-banner__inner {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .site-footer__nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .document-layout {
        grid-template-columns: 160px minmax(0, 1fr);
        gap: 42px;
    }

    .lp-product-gallery {
        grid-template-columns: 1fr;
    }

    .lp-product-gallery__item img {
        height: auto;
        max-height: 620px;
    }

    .partnerships-direction,
    .partnerships-contact {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .partnerships-opportunities {
        grid-template-columns: 1fr;
    }

    .partnerships-opportunity {
        min-height: 0;
    }

    .partnerships-opportunity__note {
        margin-top: 32px;
    }

    .site-footer__copyright {
        text-align: left;
    }

    .lp-announcements__inner {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 28px;
    }
}

@media (max-width: 680px) {
    .page-shell {
        width: min(1180px, calc(100% - 32px));
    }

    .site-header {
        height: 64px;
    }

    .site-header__inner {
        grid-template-columns: auto 1fr;
        gap: 12px;
    }

    .site-header .site-brand {
        width: 140px;
    }

    .site-brand .brand-wordmark {
        font-size: 26px;
    }

    .button--header {
        min-height: 36px;
        padding: 7px 11px;
        font-size: 12px;
    }

    .hero {
        min-height: auto;
    }

    .hero__media {
        object-position: center;
    }

    .hero__brand-lockup {
        width: min(340px, 78%);
    }

    .hero__content {
        padding-block: 38px 34px;
    }

    .campaign-badge {
        align-items: flex-start;
        margin-bottom: 6px;
        line-height: 1.55;
    }

    .hero__lead {
        margin-top: 6px;
        font-size: 26px;
    }

    .hero__description {
        margin-top: 16px;
        font-size: 14px;
    }

    .hero__actions {
        margin-top: 24px;
    }

    .hero__actions,
    .closing-cta__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .trust-strip__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-strip span:nth-child(3),
    .trust-strip span:nth-child(4) {
        border-top: 1px solid #334057;
    }

    .lp-announcements__inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-block: 28px;
    }

    .lp-announcements__header {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 20px;
    }

    .lp-announcements__item {
        grid-template-columns: auto minmax(0, 1fr) 24px;
        gap: 8px 14px;
        padding-block: 16px;
    }

    .lp-announcements__item time {
        grid-column: 1;
    }

    .lp-announcements__category {
        grid-column: 2;
    }

    .lp-announcements__item strong {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .lp-announcements__arrow {
        grid-column: 3;
        grid-row: 1 / 3;
    }

    .section {
        padding-block: 72px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2,
    .closing-cta h2,
    .document-content h2,
    .support-section h2,
    .support-primary h2,
    .belief-copy h2,
    .founder-copy h2 {
        font-size: 30px;
    }

    .belief-section {
        padding-block: 78px;
    }

    .belief-copy__lead {
        font-size: 14px;
    }

    .brand-film {
        aspect-ratio: 4 / 3;
        margin-top: 42px;
    }

    .brand-film__caption {
        right: 22px;
        bottom: 20px;
        left: 22px;
    }

    .brand-film__caption strong {
        font-size: 18px;
    }

    .product-proof figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

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

    .comparison__row--head {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .comparison__row strong {
        grid-column: 1 / -1;
        border-right: 1px solid var(--brand-border);
        background: var(--brand-surface-muted);
    }

    .comparison__row:not(.comparison__row--head) span::before {
        display: block;
        margin-bottom: 7px;
        color: var(--brand-muted);
        font-family: Consolas, "Courier New", monospace;
        font-size: 9px;
        font-weight: 700;
    }

    .comparison__row:not(.comparison__row--head) span:nth-child(2)::before {
        content: "メモ・文書を中心に書く";
    }

    .comparison__row:not(.comparison__row--head) span:nth-child(3)::before {
        content: "一般的なAIチャットを中心に書く";
    }

    .comparison__row:not(.comparison__row--head) span:nth-child(4)::before {
        color: var(--brand-red-strong);
        content: "NovelShaft";
    }

    .document-hero {
        padding-block: 62px 58px;
    }

    .document-hero h1 {
        font-size: 36px;
    }

    .document-layout {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-block: 48px 76px;
    }

    .document-nav {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 4px 18px;
        padding-top: 10px;
    }

    .document-nav p {
        width: 100%;
    }

    .document-nav a {
        padding-block: 5px;
    }

    .document-content section {
        padding-bottom: 36px;
    }

    .document-content section + section {
        padding-top: 36px;
    }

    .lp-product-gallery__item figcaption {
        padding: 17px 18px 19px;
    }

    .partnerships-hero h1 {
        font-size: 34px;
        line-height: 1.3;
    }

    .partnerships-page {
        padding-block: 52px 76px;
    }

    .partnerships-principles {
        grid-template-columns: 1fr;
        margin-top: 44px;
    }

    .partnerships-principles article {
        min-height: 0;
        padding: 28px 24px;
    }

    .partnerships-principles h3 {
        margin-top: 24px;
    }

    .partnerships-opportunities {
        margin-top: 64px;
        padding-top: 64px;
    }

    .partnerships-opportunity {
        padding: 32px 24px;
    }

    .partnerships-contact {
        margin-top: 64px;
        padding: 34px 24px;
    }

    .news-page {
        padding-block: 50px 78px;
    }

    .news-list-item {
        grid-template-columns: 1fr 28px;
        gap: 14px 18px;
        padding: 26px 4px;
    }

    .news-list-item__meta {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .news-article {
        padding-block: 38px 76px;
    }

    .news-article__header {
        margin-top: 38px;
        padding-bottom: 38px;
    }

    .news-article__body {
        padding-top: 44px;
    }

    .news-campaign {
        padding: 28px 22px;
    }

    .guide-page__intro,
    .guide-product-cta {
        grid-template-columns: 1fr;
    }

    .guide-page__intro {
        align-items: start;
        gap: 14px;
    }

    .guide-product-cta {
        margin-top: 56px;
    }

    .guide-product-cta__content {
        padding: 30px 24px 34px;
    }

    .document-content h2,
    .support-section h2,
    .support-primary h2 {
        font-size: 23px;
    }

    .document-single,
    .support-page,
    .not-found-page {
        padding-block: 48px 76px;
    }

    .not-found-page h2 {
        font-size: 25px;
    }

    .not-found-page__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .document-table--disclosure th {
        width: 150px;
    }

    .support-primary {
        align-items: stretch;
        flex-direction: column;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .support-grid .support-section + .support-section {
        border-top: 1px solid var(--line);
    }

    .support-section--warning {
        padding-left: 20px;
    }

    .support-contact-list > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .mobile-only-break {
        display: block;
    }

    .experience-grid,
    .feature-grid,
    .pricing-grid,
    .start-steps {
        grid-template-columns: 1fr;
    }

    .experience-item,
    .experience-item:nth-child(3),
    .experience-item:nth-child(4) {
        border: 0;
        border-bottom: 1px solid var(--line);
    }

    .experience-item:first-child {
        border-top: 1px solid var(--line);
    }

    .feature-card {
        min-height: 220px;
    }

    .start-steps li,
    .start-steps li:nth-child(3),
    .start-steps li:nth-child(4) {
        border: 0;
        border-bottom: 1px solid var(--line);
    }

    .start-steps li:first-child {
        border-top: 1px solid var(--line);
    }

    .start-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form__footer .button {
        width: 100%;
    }

    .pricing-grid {
        gap: 28px;
    }

    .pricing-card {
        min-height: 390px;
    }

    .closing-cta {
        padding-block: 62px;
    }

    .site-footer {
        padding-block: 42px;
    }

    .cookie-banner__actions,
    .cookie-dialog__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-banner__actions .cookie-button,
    .cookie-dialog__actions .cookie-button {
        width: 100%;
    }

    .cookie-dialog__body {
        padding: 20px;
    }

    .cookie-preference {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 420px) {
    .site-header__inner {
        grid-template-columns: auto 1fr;
        gap: 8px;
    }

    .site-header .site-brand {
        min-height: 48px;
        width: 122px;
        align-items: center;
    }

    .site-brand .brand-wordmark {
        font-size: 22px;
    }

    .site-header__actions {
        gap: 9px;
    }

    .header-login {
        font-size: 11px;
    }

    .button--header {
        padding-inline: 9px;
        font-size: 11px;
    }
}

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

    .button {
        transition: none;
    }
}

/* Public top: a single, product-led editorial reading flow. */
.lp-page {
    --lp-canvas: #f5f0e8;
    --lp-paper: #fffcf6;
    --lp-paper-deep: #eee5d8;
    --lp-ink: #16233a;
    --lp-night: #101a2e;
    --lp-night-soft: #17243a;
    --lp-copy: #354056;
    --lp-muted: #667084;
    --lp-line: #d6cab9;
    --lp-red: #b53b2a;
    --lp-red-strong: #922d22;
    --lp-ivory: #fff6e6;
    --lp-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
    overflow: clip;
    background: var(--lp-canvas);
    color: var(--lp-ink);
}

.lp-page :focus-visible {
    outline-color: var(--lp-red-strong);
}

.lp-hero :focus-visible,
.lp-author :focus-visible,
.lp-closing :focus-visible {
    outline-color: #e3aa59;
}

.lp-hero {
    position: relative;
    display: flex;
    min-height: min(780px, calc(100svh - 76px));
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background: var(--lp-night);
    color: var(--lp-ivory);
}

.lp-hero > picture,
.lp-hero__media,
.lp-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lp-hero > picture {
    z-index: -2;
}

.lp-hero__media {
    object-fit: cover;
    object-position: center 18%;
}

.lp-hero__shade {
    z-index: -1;
    background:
        radial-gradient(circle at 80% 12%, rgba(181, 59, 42, 0.14), transparent 34%),
        linear-gradient(90deg, rgba(10, 18, 32, 0.99) 0%, rgba(16, 26, 46, 0.94) 43%, rgba(16, 26, 46, 0.44) 74%, rgba(16, 26, 46, 0.6) 100%);
}

.lp-hero__content {
    position: relative;
    z-index: 1;
    padding-block: 104px 96px;
}

.lp-hero__title {
    max-width: 720px;
    margin: 0;
    color: var(--lp-ivory);
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-wrap: balance;
}

.lp-hero__description {
    max-width: 670px;
    margin: 26px 0 0;
    color: rgba(255, 246, 230, 0.86);
    font-size: 17px;
    line-height: 2;
}

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

.lp-page .button--primary {
    border-color: var(--lp-red);
    background: var(--lp-red);
    color: #fff;
    box-shadow: 0 14px 32px rgba(181, 59, 42, 0.24);
}

.lp-page .button--primary:hover {
    border-color: var(--lp-red-strong);
    background: var(--lp-red-strong);
}

.lp-page .button--secondary {
    border-color: rgba(255, 246, 230, 0.58);
    background: rgba(16, 26, 46, 0.58);
    color: var(--lp-ivory);
}

.lp-page .button--secondary:hover {
    border-color: var(--lp-ivory);
    background: rgba(16, 26, 46, 0.9);
}

.lp-page .button--primary-dark {
    border-color: var(--lp-night);
    background: var(--lp-night);
    color: var(--lp-ivory);
}

.lp-page .button--primary-dark:hover {
    border-color: var(--lp-red);
    background: var(--lp-red);
}

.lp-hero__benefit {
    display: grid;
    max-width: 670px;
    grid-template-columns: minmax(180px, auto) minmax(0, 1fr);
    gap: 22px;
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 246, 230, 0.34);
}

.lp-hero__benefit p {
    margin: 0;
}

.lp-hero__benefit-label {
    color: #e3aa59;
    font-size: 14px;
    font-weight: 700;
}

.lp-hero__benefit-copy {
    color: rgba(255, 246, 230, 0.72);
    font-size: 12px;
    line-height: 1.75;
}

@media (prefers-reduced-motion: no-preference) {
    .lp-hero__title,
    .lp-hero__description,
    .lp-hero__actions,
    .lp-hero__benefit {
        animation: lp-hero-enter 580ms var(--lp-motion-ease) both;
    }

    .lp-hero__description {
        animation-delay: 80ms;
    }

    .lp-hero__actions {
        animation-delay: 160ms;
    }

    .lp-hero__benefit {
        animation-delay: 240ms;
    }
}

@keyframes lp-hero-enter {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-page .button:active {
    transform: translateY(0) scale(0.985);
}

.lp-latest {
    position: relative;
    z-index: 2;
    margin-top: -18px;
    background: var(--lp-paper);
}

.lp-latest__inner {
    position: relative;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: start;
    gap: 52px;
    padding: 42px clamp(24px, 4vw, 56px);
    border-top: 3px solid var(--lp-red);
    background: var(--lp-paper);
    box-shadow: 0 -20px 54px rgba(6, 12, 24, 0.16);
}

.lp-latest__header h2 {
    margin: 0;
    color: var(--lp-ink);
    font-size: 25px;
    line-height: 1.45;
}

.lp-latest__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 14px;
}

.lp-latest__links a {
    color: var(--lp-muted);
    font-size: 12px;
    font-weight: 700;
    text-underline-offset: 4px;
}

.lp-latest__list {
    margin: 0;
    padding: 0;
    border-top: 2px solid var(--lp-ink);
    list-style: none;
}

.lp-latest__item {
    display: grid;
    min-height: 92px;
    grid-template-columns: 150px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 24px;
    padding: 16px 12px;
    border-bottom: 1px solid var(--lp-line);
    color: var(--lp-ink);
    text-decoration: none;
    transition: background-color 160ms ease;
}

.lp-latest__item:hover {
    background: #fff;
}

.lp-latest__meta,
.lp-latest__body {
    display: grid;
    min-width: 0;
    gap: 5px;
}

.lp-latest__meta time {
    color: var(--lp-muted);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}

.lp-latest__category {
    color: var(--lp-red-strong);
    font-size: 11px;
    font-weight: 700;
}

.lp-latest__title {
    color: var(--lp-ink);
    font-size: 15px;
    line-height: 1.55;
}

.lp-latest__summary {
    color: var(--lp-muted);
    font-size: 12px;
    line-height: 1.7;
}

.lp-latest__arrow {
    color: var(--lp-red);
    font-size: 20px;
    text-align: center;
    transition: transform 180ms var(--lp-motion-ease);
}

.lp-latest__item:hover .lp-latest__arrow,
.lp-latest__item:focus-visible .lp-latest__arrow {
    transform: translateX(4px);
}

.lp-section {
    padding-block: clamp(88px, 9vw, 136px);
    scroll-margin-top: 84px;
}

.lp-section--paper {
    background: linear-gradient(145deg, var(--lp-canvas) 0%, var(--lp-paper-deep) 100%);
}

.lp-section--light {
    background:
        radial-gradient(circle at 8% 14%, rgba(216, 154, 66, 0.08), transparent 24%),
        var(--lp-paper);
}

.lp-section--ink {
    background:
        radial-gradient(ellipse at 100% 0%, rgba(181, 59, 42, 0.25), transparent 38%),
        linear-gradient(135deg, #0b1220, var(--lp-night-soft));
    color: var(--lp-ivory);
}

.lp-heading {
    max-width: 790px;
    margin-bottom: 52px;
}

.lp-heading--center {
    margin-inline: auto;
    text-align: center;
}

.lp-heading h2 {
    margin: 0;
    color: var(--lp-ink);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.42;
    letter-spacing: 0.01em;
    text-wrap: balance;
}

.lp-heading > p {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--lp-copy);
    font-size: 16px;
    line-height: 2;
}

.lp-heading--center > p {
    margin-inline: auto;
}

.lp-heading--accent::before,
.lp-author__title--accent::before {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin-bottom: 22px;
    background: linear-gradient(90deg, var(--lp-red), #d89a42);
    transform-origin: left center;
}

.lp-author__title--accent::before {
    background: linear-gradient(90deg, #e3aa59, rgba(227, 170, 89, 0.18));
}

.lp-editorial-visual {
    position: relative;
    min-width: 0;
    margin: 0 0 52px;
}

.lp-editorial-visual--materials {
    width: min(1080px, 92%);
    margin-left: auto;
}

.lp-editorial-visual--longform {
    width: min(1040px, 90%);
    margin-right: auto;
    margin-top: clamp(64px, 8vw, 96px);
    margin-bottom: 0;
}

.lp-editorial-visual__mount {
    position: relative;
    isolation: isolate;
    padding: clamp(5px, 0.65vw, 9px);
    border: 1px solid rgba(22, 35, 58, 0.3);
    border-radius: 5px;
    background: #f2eadc;
    box-shadow: 0 16px 38px rgba(22, 35, 58, 0.14);
}

.lp-editorial-visual__mount::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 8px -9px -9px 8px;
    border: 1px solid rgba(146, 45, 34, 0.22);
    border-radius: 5px;
    background: rgba(216, 154, 66, 0.34);
}

.lp-editorial-visual--longform .lp-editorial-visual__mount::after {
    inset: 8px 8px -9px -9px;
    background: rgba(52, 89, 117, 0.24);
}

.lp-editorial-visual img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(22, 35, 58, 0.16);
    border-radius: 2px;
    background: var(--lp-night);
}

.lp-editorial-visual figcaption {
    position: relative;
    max-width: 820px;
    margin: 14px 0 0;
    padding-left: 42px;
    color: var(--lp-muted);
    font-size: 13px;
    line-height: 1.85;
}

.lp-editorial-visual figcaption::before,
.lp-workspace-proof__caption::before,
.lp-product-figure__caption::before,
.lp-author__visual figcaption::before {
    content: "";
    position: absolute;
    top: 0.82em;
    left: 0;
    width: 28px;
    height: 2px;
    background: #d89a42;
}

.lp-product-screenshot-note {
    max-width: 820px;
    margin: 0 0 44px;
    padding-left: 16px;
    border-left: 3px solid var(--lp-ochre);
    color: var(--lp-copy);
    font-size: 12px;
    line-height: 1.8;
}

.lp-product-screenshot-frame {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: clamp(3px, 0.38vw, 6px);
    border: 1px solid rgba(22, 35, 58, 0.28);
    border-top: 3px solid #d89a42;
    border-radius: 5px;
    background: #f2eadc;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.72) inset,
        0 16px 38px rgba(22, 35, 58, 0.14);
}

.lp-product-screenshot-link {
    display: block;
    overflow: hidden;
    border-radius: 2px;
    background: #fff;
    cursor: zoom-in;
}

.lp-product-screenshot-link img {
    display: block;
    width: 100%;
    height: auto;
}

.lp-product-screenshot-link:focus-visible {
    outline: 3px solid var(--lp-red);
    outline-offset: -3px;
}


.lp-workspace-proof {
    margin: 0;
}

.lp-workspace-proof__caption {
    position: relative;
    max-width: 820px;
    margin: 14px 0 0;
    padding-left: 42px;
    color: var(--lp-muted);
    font-size: 13px;
    line-height: 1.85;
}

.lp-continuum__intro {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(48px, 8vw, 104px);
}

.lp-continuum__intro .lp-heading {
    margin-bottom: 0;
}

.lp-continuum__copy {
    max-width: 700px;
}

.lp-continuum__copy p {
    margin: 0;
    color: var(--lp-copy);
    font-size: 16px;
    line-height: 2.05;
}

.lp-continuum__copy p + p {
    margin-top: 24px;
}

.lp-product-sequence {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(80px, 10vw, 128px);
    margin-top: clamp(80px, 10vw, 120px);
}

.lp-product-figure {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: end;
    column-gap: clamp(22px, 3vw, 40px);
    margin: 0;
}

.lp-product-figure > .lp-product-screenshot-frame {
    grid-column: 1 / -1;
}

.lp-product-figure--focused {
    width: min(900px, 100%);
    margin-inline: auto;
}

.lp-product-figure--wide {
    width: 100%;
}

.lp-product-figure--composition-start > .lp-product-screenshot-frame {
    grid-column: 1 / span 10;
    grid-row: 1;
}

.lp-product-figure--composition-start > .lp-product-figure__caption {
    grid-column: 1 / span 7;
    grid-row: 2;
}

.lp-product-figure--composition-end > .lp-product-screenshot-frame {
    grid-column: 3 / -1;
    grid-row: 1;
}

.lp-product-figure--composition-end > .lp-product-figure__caption {
    grid-column: 6 / -1;
    grid-row: 2;
}

.lp-product-figure--starting {
    width: min(760px, 100%);
    margin-top: clamp(64px, 8vw, 96px);
}

.lp-product-figure--starting > .lp-product-screenshot-frame {
    width: min(672px, 100%);
    justify-self: center;
}

.lp-product-figure__caption {
    position: relative;
    display: grid;
    gap: 7px;
    max-width: 820px;
    grid-column: 1 / span 8;
    margin-top: 14px;
    padding-top: 19px;
    border-top: 1px solid var(--lp-line);
}

.lp-product-figure__caption::before {
    top: -1px;
}

.lp-product-figure__caption strong {
    color: var(--lp-ink);
    font-size: 17px;
    line-height: 1.6;
}

.lp-product-figure__caption span {
    color: var(--lp-muted);
    font-size: 13px;
    line-height: 1.8;
}

.lp-author__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    column-gap: clamp(54px, 9vw, 118px);
    row-gap: clamp(64px, 8vw, 96px);
}

.lp-author {
    position: relative;
    overflow: clip;
}

.lp-author::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 170, 89, 0.78), transparent);
}

.lp-author__title {
    margin: 0;
    color: var(--lp-ivory);
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.42;
    text-wrap: balance;
}

.lp-author__copy p {
    margin: 0;
    color: rgba(255, 246, 230, 0.8);
    font-size: 16px;
    line-height: 2.05;
}

.lp-author__copy p + p {
    margin-top: 24px;
}

.lp-author__visual {
    width: min(1400px, calc(100vw - 48px));
    min-width: 0;
    grid-column: 1 / -1;
    justify-self: center;
    margin: 0;
}

.lp-author__visual-mount {
    position: relative;
    isolation: isolate;
    padding: clamp(5px, 0.65vw, 9px);
    border: 1px solid rgba(255, 246, 230, 0.4);
    border-radius: 5px;
    background: #e9dec9;
    box-shadow: 0 18px 42px rgba(4, 8, 17, 0.28);
}

.lp-author__visual-mount::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -8px;
    bottom: -8px;
    left: 8px;
    height: 100%;
    border: 1px solid rgba(227, 170, 89, 0.28);
    border-radius: 5px;
    background: rgba(227, 170, 89, 0.24);
}

.lp-author__visual img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: clamp(420px, 52vw, 700px);
    object-fit: cover;
    border: 1px solid rgba(16, 26, 46, 0.18);
    border-radius: 2px;
    background: var(--lp-night);
}

.lp-author__visual figcaption {
    position: relative;
    max-width: 820px;
    margin: 14px 0 0;
    padding-left: 42px;
    color: rgba(255, 246, 230, 0.72);
    font-size: 13px;
    line-height: 1.85;
}

.lp-motion-ready [data-lp-reveal="heading"] {
    transition: opacity 460ms var(--lp-motion-ease), transform 460ms var(--lp-motion-ease);
}

.lp-motion-ready [data-lp-reveal="heading"]:not(.is-revealed) {
    opacity: 0;
    transform: translateY(16px);
}

.lp-motion-ready [data-lp-reveal="figure"] > :first-child,
.lp-motion-ready [data-lp-reveal="figure"] > figcaption {
    transition: opacity 480ms var(--lp-motion-ease), transform 480ms var(--lp-motion-ease);
}

.lp-motion-ready [data-lp-reveal="figure"] > figcaption {
    transition-delay: 90ms;
}

.lp-motion-ready [data-lp-reveal="figure"]:not(.is-revealed) > :first-child {
    opacity: 0;
    transform: translateY(16px) scale(0.995);
}

.lp-motion-ready [data-lp-reveal="figure"]:not(.is-revealed) > figcaption {
    opacity: 0;
    transform: translateY(10px);
}

.lp-motion-ready [data-lp-reveal]:not(.is-revealed).lp-heading--accent::before,
.lp-motion-ready [data-lp-reveal]:not(.is-revealed) .lp-heading--accent::before,
.lp-motion-ready [data-lp-reveal]:not(.is-revealed) .lp-author__title--accent::before {
    transform: scaleX(0);
}

.lp-heading--accent::before,
.lp-author__title--accent::before {
    transition: transform 520ms var(--lp-motion-ease);
}

.lp-pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
}

.lp-pricing__card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 410px;
    flex-direction: column;
    padding: 32px 28px;
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    background: var(--lp-paper);
    box-shadow: 0 18px 42px rgba(22, 35, 58, 0.07);
}

.lp-pricing__card--featured {
    border: 2px solid var(--lp-red);
    background: #fff8f4;
}

.lp-pricing__badge {
    position: absolute;
    top: -15px;
    left: 22px;
    margin: 0;
    padding: 4px 12px;
    border-radius: 4px;
    background: var(--lp-red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.lp-pricing__name {
    margin: 0;
    color: var(--lp-ink);
    font-size: 18px;
    font-weight: 700;
}

.lp-pricing__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 24px 0 0;
    color: var(--lp-ink);
    font-size: clamp(42px, 4vw, 56px);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.lp-pricing__price > span {
    font-size: 20px;
}

.lp-pricing__period {
    color: var(--lp-muted);
    font-size: 13px;
    font-weight: 400;
}

.lp-pricing__allowance {
    margin: 22px 0 0;
    padding-block: 14px;
    border-block: 1px solid var(--lp-line);
    color: var(--lp-ink);
    font-size: 14px;
    font-weight: 700;
}

.lp-pricing__model {
    margin: 18px 0 0;
    color: var(--lp-muted);
    font-size: 12px;
    line-height: 1.7;
}

.lp-pricing__model strong {
    margin-left: 5px;
    color: var(--lp-ink);
    font-size: 13px;
}

.lp-pricing__description {
    flex: 1;
    margin: 18px 0 0;
    color: var(--lp-muted);
    font-size: 13px;
    line-height: 1.85;
}

.lp-pricing__details {
    margin-top: 38px;
    border-block: 1px solid var(--lp-line);
}

.lp-pricing__details > summary {
    position: relative;
    display: flex;
    min-height: 64px;
    align-items: center;
    padding: 14px 48px 14px 4px;
    color: var(--lp-ink);
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    list-style: none;
}

.lp-pricing__details > summary::-webkit-details-marker {
    display: none;
}

.lp-pricing__details > summary::after {
    position: absolute;
    right: 8px;
    color: var(--lp-red-strong);
    content: "+";
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
}

.lp-pricing__details[open] > summary::after {
    content: "−";
}

.lp-pricing__details > summary:focus-visible,
.lp-pricing__table-region:focus-visible {
    border-radius: 4px;
    outline: 3px solid rgba(184, 52, 43, 0.34);
    outline-offset: 3px;
}

.lp-pricing__scroll-help {
    margin: 4px 0 10px;
    color: var(--lp-muted);
    font-size: 12px;
}

.lp-pricing__table-region {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--lp-line);
    background: var(--lp-paper);
    scrollbar-width: thin;
}

.lp-pricing__table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
    color: var(--lp-copy);
    font-size: 12.5px;
    font-variant-numeric: tabular-nums;
}

.lp-pricing__table caption {
    padding: 18px 20px 12px;
    color: var(--lp-ink);
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}

.lp-pricing__table th,
.lp-pricing__table td {
    min-width: 132px;
    padding: 14px 16px;
    border-top: 1px solid var(--lp-line);
    line-height: 1.65;
    text-align: center;
    vertical-align: middle;
}

.lp-pricing__table thead th {
    border-top: 0;
    background: #f5eee4;
    color: var(--lp-ink);
    font-weight: 700;
}

.lp-pricing__table th:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    width: 190px;
    min-width: 190px;
    background: var(--lp-paper);
    box-shadow: 1px 0 0 var(--lp-line);
    text-align: left;
}

.lp-pricing__table thead th:first-child {
    z-index: 2;
    background: #f5eee4;
}

.lp-pricing__table tbody tr:nth-child(even) td,
.lp-pricing__table tbody tr:nth-child(even) th {
    background: #fbf7f0;
}

.lp-pricing__definitions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.lp-pricing__definitions p,
.lp-pricing__current-values {
    margin: 0;
    color: var(--lp-muted);
    font-size: 12px;
    line-height: 1.8;
}

.lp-pricing__definitions strong {
    display: block;
    margin-bottom: 5px;
    color: var(--lp-ink);
    font-size: 12.5px;
}

.lp-pricing__current-values {
    margin: 20px 0 28px;
}

.lp-pricing__cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.lp-pricing__note {
    max-width: 900px;
    margin: 22px auto 0;
    color: var(--lp-muted);
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
}

.lp-pricing__note a {
    color: var(--lp-red-strong);
    text-underline-offset: 4px;
}

.lp-faq__layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(48px, 8vw, 96px);
}

.lp-faq__layout .lp-heading {
    margin-bottom: 0;
}

.lp-faq__list {
    border-top: 2px solid var(--lp-ink);
}

.lp-faq__list details {
    border-bottom: 1px solid var(--lp-line);
}

.lp-faq__list summary {
    position: relative;
    display: flex;
    min-height: 68px;
    align-items: center;
    padding: 20px 52px 20px 4px;
    color: var(--lp-ink);
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.65;
    list-style: none;
}

.lp-faq__list summary::-webkit-details-marker {
    display: none;
}

.lp-faq__list summary::after {
    position: absolute;
    right: 12px;
    width: 12px;
    height: 12px;
    transform: translateY(-3px) rotate(45deg);
    border-right: 2px solid var(--lp-red);
    border-bottom: 2px solid var(--lp-red);
    content: "";
    transition: transform 160ms ease;
}

.lp-faq__list details[open] summary::after {
    transform: translateY(3px) rotate(225deg);
}

.lp-faq__list details p {
    margin: -4px 0 24px;
    padding: 0 52px 0 4px;
    color: var(--lp-muted);
    font-size: 14px;
    line-height: 1.9;
}

.lp-closing {
    padding-block: 88px;
    background:
        radial-gradient(ellipse at 85% 0%, rgba(181, 59, 42, 0.28), transparent 42%),
        var(--lp-night);
    color: var(--lp-ivory);
}

.lp-closing__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 56px;
}

.lp-closing__copy h2 {
    margin: 0;
    color: var(--lp-ivory);
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.45;
    text-wrap: balance;
}

.lp-closing__copy p {
    margin: 16px 0 0;
    color: rgba(255, 246, 230, 0.72);
    font-size: 15px;
}

.lp-closing__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lp-closing .text-link {
    color: var(--lp-ivory);
}

/* The contact form belongs to the independent support page. */
.support-primary--contact {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(44px, 7vw, 82px);
    padding-bottom: 64px;
}

.support-primary--contact > div {
    max-width: none;
}

.support-primary--contact .support-primary__intro {
    position: sticky;
    top: 112px;
}

.support-primary--contact .contact-form-wrap {
    width: 100%;
}

.support-primary--contact .contact-form__field input,
.support-primary--contact .contact-form__field textarea {
    min-height: 48px;
    border-color: #858f9d;
}

@media (max-width: 1180px) {
    .lp-product-figure--composition-start > .lp-product-screenshot-frame,
    .lp-product-figure--composition-end > .lp-product-screenshot-frame,
    .lp-product-figure--composition-start > .lp-product-figure__caption,
    .lp-product-figure--composition-end > .lp-product-figure__caption {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .lp-product-figure--composition-start > .lp-product-figure__caption,
    .lp-product-figure--composition-end > .lp-product-figure__caption {
        margin: 18px 0 0;
    }
}

@media (max-width: 1024px) {

    .lp-pricing__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .lp-pricing__card {
        min-height: 360px;
    }
}

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

    .site-header {
        height: auto;
    }

    .site-header__inner {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0 18px;
        padding-block: 8px;
    }

    .site-header .site-brand {
        grid-column: 1;
        grid-row: 1;
    }

    .site-header__actions {
        grid-column: 2;
        grid-row: 1;
        justify-content: flex-end;
    }

    .header-login {
        display: none;
    }

    .site-nav-toggle {
        display: inline-flex;
        min-height: 48px;
        align-items: center;
        justify-content: center;
    }

    .button--header {
        min-height: 48px;
    }

    .site-nav-toggle[hidden],
    .site-nav[hidden] {
        display: none;
    }

    .site-nav {
        display: grid;
        min-width: 0;
        grid-column: 1 / -1;
        grid-row: 2;
        gap: 0;
        margin-top: 8px;
        overflow: visible;
        padding: 10px 0 8px;
        border-top: 1px solid rgba(255, 246, 230, 0.18);
        white-space: normal;
    }

    .site-nav__group {
        display: grid;
        gap: 0;
    }

    .site-nav__group--resources {
        padding: 6px 0 0;
        margin: 6px 0 0;
        border-top: 1px solid rgba(255, 246, 230, 0.12);
        border-left: 0;
    }

    .site-nav a {
        display: inline-flex;
        min-height: 48px;
        align-items: center;
        padding-inline: 12px;
    }

    .site-nav__account {
        display: inline-flex;
        margin-top: 6px;
        border-top: 1px solid rgba(255, 246, 230, 0.12);
    }

    .lp-hero {
        min-height: 680px;
    }

    .lp-latest__inner,
    .lp-continuum__intro,
    .lp-author__inner,
    .lp-faq__layout,
    .lp-closing__inner,
    .support-primary--contact {
        grid-template-columns: 1fr;
    }

    .lp-latest__inner {
        gap: 24px;
    }

    .lp-latest__header {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 24px;
    }

    .lp-continuum__intro {
        gap: 42px;
    }

    .lp-author__inner {
        column-gap: 0;
        row-gap: 42px;
    }

    .lp-pricing__definitions {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .lp-product-sequence {
        gap: 80px;
        margin-top: 80px;
    }

    .lp-faq__layout {
        gap: 32px;
    }

    .lp-closing__inner {
        gap: 34px;
    }

    .support-primary--contact .support-primary__intro {
        position: static;
    }
}

@media (max-width: 680px) {
    .button {
        min-height: 48px;
    }

    .site-header {
        height: auto;
    }

    .site-header__inner {
        gap: 0 8px;
    }

    .site-header .site-brand {
        width: 122px;
    }

    .site-header__actions {
        gap: 8px;
    }

    .site-language a[aria-current="page"] {
        display: none;
    }

    .button--header {
        min-height: 48px;
        padding: 8px 10px;
        font-size: 11px;
    }

    .cookie-button,
    .cookie-dialog__close,
    .site-footer__group a,
    .site-footer__link-button {
        display: inline-flex;
        min-height: 48px;
        align-items: center;
    }

    .site-footer__nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-nav a {
        padding-inline: 10px;
        font-size: 12px;
    }

    .lp-hero {
        min-height: auto;
    }

    .lp-hero__media {
        object-position: center;
    }

    .lp-hero__shade {
        background:
            linear-gradient(180deg, rgba(16, 26, 46, 0.36), rgba(16, 26, 46, 0.64) 52%, rgba(10, 18, 32, 0.9)),
            linear-gradient(90deg, rgba(16, 26, 46, 0.58), rgba(16, 26, 46, 0.08));
    }

    .lp-hero__title,
    .lp-hero__description,
    .lp-hero__benefit {
        text-shadow: 0 2px 18px rgba(5, 10, 20, 0.38);
    }

    .lp-hero__content {
        padding-block: 72px 58px;
    }

    .lp-latest {
        margin-top: -10px;
    }

    .lp-latest__inner {
        padding-inline: 18px;
        box-shadow: 0 -14px 34px rgba(6, 12, 24, 0.14);
    }

    .lp-hero__title {
        font-size: clamp(36px, 11vw, 46px);
        line-height: 1.35;
    }

    .lp-hero__description {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.9;
    }

    .lp-hero__actions,
    .lp-closing__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .lp-hero__actions .button,
    .lp-closing__actions .button {
        width: 100%;
    }

    .lp-hero__benefit {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 34px;
    }

    .lp-latest__inner {
        padding-block: 34px;
    }

    .lp-latest__item {
        min-height: 112px;
        grid-template-columns: minmax(0, 1fr) 28px;
        gap: 8px 14px;
        padding-block: 18px;
    }

    .lp-latest__meta {
        display: flex;
        grid-column: 1;
        gap: 14px;
    }

    .lp-latest__body {
        grid-column: 1;
    }

    .lp-latest__arrow {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .lp-section {
        padding-block: 76px;
    }

    .lp-heading {
        margin-bottom: 36px;
    }

    .lp-heading h2,
    .lp-author__title,
    .lp-closing__copy h2 {
        font-size: 32px;
    }

    .lp-heading > p,
    .lp-continuum__copy p,
    .lp-author__copy p {
        font-size: 15px;
        line-height: 1.95;
    }

    .lp-workspace-proof__caption {
        margin-top: 16px;
    }

    .lp-editorial-visual {
        width: 100%;
        margin-bottom: 40px;
        margin-inline: 0;
    }

    .lp-editorial-visual--longform {
        margin-top: 52px;
        margin-bottom: 0;
    }

    .lp-editorial-visual figcaption,
    .lp-product-figure__caption,
    .lp-author__visual figcaption {
        font-size: 12.5px;
        line-height: 1.8;
    }

    .lp-editorial-visual__mount,
    .lp-author__visual-mount {
        padding: 4px;
    }

    .lp-editorial-visual__mount::after {
        inset: 4px -4px -4px 4px;
    }

    .lp-editorial-visual--longform .lp-editorial-visual__mount::after {
        inset: 4px 4px -4px -4px;
    }

    .lp-author__visual-mount::after {
        right: -4px;
        bottom: -4px;
        left: 4px;
    }

    .lp-product-screenshot-frame {
        padding: 3px;
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.68) inset,
            0 10px 24px rgba(22, 35, 58, 0.12);
    }

    .lp-product-screenshot-note {
        margin-bottom: 36px;
        padding-left: 13px;
        font-size: 12px;
    }

    .lp-product-sequence {
        gap: 64px;
        margin-top: 64px;
    }

    .lp-product-figure__caption {
        grid-column: 1 / -1;
    }

    .lp-author__visual {
        width: 100%;
    }

    .lp-author__visual img {
        height: min(86vw, 420px);
    }

    .lp-motion-ready [data-lp-reveal="heading"] {
        transition-duration: 320ms;
    }

    .lp-motion-ready [data-lp-reveal="figure"] > :first-child,
    .lp-motion-ready [data-lp-reveal="figure"] > figcaption {
        transition-duration: 340ms;
    }

    .lp-motion-ready [data-lp-reveal="heading"]:not(.is-revealed),
    .lp-motion-ready [data-lp-reveal="figure"]:not(.is-revealed) > :first-child,
    .lp-motion-ready [data-lp-reveal="figure"]:not(.is-revealed) > figcaption {
        transform: translateY(8px);
    }

    .lp-product-figure__caption strong {
        font-size: 16px;
    }

    .lp-author__inner {
        row-gap: 40px;
    }

    .lp-pricing__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .lp-pricing__card {
        min-height: 0;
        padding: 30px 24px;
    }

    .lp-pricing__details {
        margin-top: 34px;
    }

    .lp-pricing__details > summary {
        min-height: 72px;
        padding-right: 42px;
        font-size: 14px;
    }

    .lp-pricing__table {
        min-width: 760px;
        font-size: 12px;
    }

    .lp-pricing__table th,
    .lp-pricing__table td {
        min-width: 118px;
        padding: 13px 12px;
    }

    .lp-pricing__table th:first-child {
        width: 156px;
        min-width: 156px;
    }

    .lp-pricing__cta .button {
        width: 100%;
    }

    .lp-pricing__note {
        text-align: left;
    }

    .lp-faq__list summary {
        min-height: 72px;
        padding-right: 42px;
        font-size: 15px;
    }

    .lp-faq__list details p {
        padding-right: 8px;
    }

    .lp-closing {
        padding-block: 70px;
    }

    .lp-closing__actions {
        text-align: center;
    }

    .lp-closing .text-link,
    .site-footer .site-brand {
        display: inline-flex;
        min-height: 48px;
        align-items: center;
        justify-content: center;
    }

    .support-primary--contact {
        gap: 30px;
        padding-bottom: 48px;
    }

    .contact-form__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form__footer .button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-latest__item,
    .lp-latest__arrow,
    .lp-faq__list summary::after,
    .lp-heading--accent::before,
    .lp-author__title--accent::before,
    .lp-motion-ready [data-lp-reveal="heading"],
    .lp-motion-ready [data-lp-reveal="figure"] > :first-child,
    .lp-motion-ready [data-lp-reveal="figure"] > figcaption {
        transition: none;
    }

    .lp-hero__title,
    .lp-hero__description,
    .lp-hero__actions,
    .lp-hero__benefit {
        animation: none;
    }

    .lp-motion-ready [data-lp-reveal="heading"],
    .lp-motion-ready [data-lp-reveal="figure"] > :first-child,
    .lp-motion-ready [data-lp-reveal="figure"] > figcaption {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .lp-hero__title,
    .lp-hero__description,
    .lp-hero__actions,
    .lp-hero__benefit,
    .lp-motion-ready [data-lp-reveal="heading"],
    .lp-motion-ready [data-lp-reveal="figure"] > :first-child,
    .lp-motion-ready [data-lp-reveal="figure"] > figcaption {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
