:root {
    --cream: #fff9ec;
    --cream-deep: #fff2cf;
    --paper: #ffffff;
    --yellow: #ffcc19;
    --yellow-deep: #f5b800;
    --yellow-soft: #fff3b4;
    --ink: #171712;
    --muted: #69685f;
    --line: #ded9cc;
    --blue: #2468d8;
    --red: #ea584f;
    --green: #249b58;
    --shadow: 0 18px 54px rgba(38, 32, 11, 0.11);
    --shadow-small: 0 10px 28px rgba(38, 32, 11, 0.08);
    --radius: 18px;
    --radius-small: 12px;
    --container: 1200px;
}

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

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

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--ink);
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

button {
    color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
    margin-top: 0;
}

h1,
h2,
h3,
strong,
b {
    font-feature-settings: "palt";
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

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

.mobile-only {
    display: none;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 10px 16px;
    transform: translateY(-160%);
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--yellow);
    font-weight: 800;
}

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

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    background: rgba(255, 249, 236, 0.88);
    backdrop-filter: blur(14px);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    border-color: rgba(23, 23, 18, 0.1);
    background: rgba(255, 249, 236, 0.96);
    box-shadow: 0 8px 28px rgba(23, 23, 18, 0.06);
}

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

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
    font-weight: 900;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    font-size: 21px;
    line-height: 1;
}

.brand-name {
    font-size: 24px;
    letter-spacing: -0.04em;
}

.brand-description {
    margin-left: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.global-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: 13px;
    font-weight: 800;
}

.global-nav > a:not(.header-cta) {
    position: relative;
    padding: 8px 0;
}

.global-nav > a:not(.header-cta)::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--yellow-deep);
    content: "";
    transition: transform 0.2s ease;
}

.global-nav > a:not(.header-cta):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 14px;
    padding: 10px 18px;
    border: 2px solid var(--ink);
    border-radius: 9px;
    background: var(--yellow);
    box-shadow: 3px 3px 0 var(--ink);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.header-cta:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--ink);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 2px solid var(--ink);
    border-radius: 9px;
    background: var(--yellow);
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 128px 0 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 204, 25, 0.14), transparent 31%),
        linear-gradient(180deg, #fffdf6 0%, var(--cream) 84%);
}

.hero::before {
    position: absolute;
    inset: 76px 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(23, 23, 18, 0.12), transparent);
    content: "";
}

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

.hero-glow-one {
    top: 150px;
    right: -110px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 204, 25, 0.55);
}

.hero-glow-two {
    right: 150px;
    bottom: 110px;
    width: 170px;
    height: 170px;
    background: rgba(255, 204, 25, 0.09);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 720px;
}

.hero-grid > * {
    min-width: 0;
}

.hero-copy {
    position: relative;
    z-index: 3;
    width: min(51%, 620px);
    padding: 26px 0 70px;
}

.section-kicker {
    color: #8a6900;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 670px;
    margin-bottom: 28px;
    font-size: clamp(54px, 5.15vw, 78px);
    font-weight: 950;
    letter-spacing: -0.075em;
    line-height: 1.08;
}

.hero h1 span {
    position: relative;
    display: table;
    z-index: 0;
}

.hero h1 span::after {
    position: absolute;
    z-index: -1;
    right: -5px;
    bottom: 2px;
    left: -5px;
    height: 13px;
    border-radius: 8px 12px 7px 10px;
    background: var(--yellow);
    content: "";
    transform: rotate(-0.7deg);
}

.hero h1 span:nth-child(2)::after {
    transform: rotate(0.5deg);
}

.hero-lead {
    max-width: 590px;
    margin-bottom: 15px;
    color: #37362f;
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.hero-badges li {
    display: flex;
    min-height: 60px;
    align-items: center;
    gap: 9px;
    padding: 8px 12px 8px 8px;
    border: 1px solid #d9d3c5;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 6px 18px rgba(23, 23, 18, 0.04);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
}

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

.hero-badges strong {
    font-size: 17px;
    font-weight: 950;
}

.hero-badges small {
    color: var(--muted);
    font-size: 9px;
}

.badge-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
    font-size: 14px;
    font-weight: 950;
}

.badge-icon-red {
    background: #ffe4e1;
    color: var(--red);
}

.badge-icon-blue {
    background: #e2edff;
    color: var(--blue);
    font-size: 11px;
}

.hero-actions {
    width: min(100%, 560px);
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 13px 24px;
    border: 2px solid var(--ink);
    border-radius: 11px;
    cursor: pointer;
    font-weight: 950;
    line-height: 1.35;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
    transform: translate(3px, 3px);
}

.button-primary {
    background: var(--yellow);
    box-shadow: 5px 5px 0 var(--ink);
}

.button-primary:hover {
    box-shadow: 2px 2px 0 var(--ink);
    background: #ffd738;
}

.button-outline {
    background: #fff;
    color: var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    font-size: 13px;
}

.button-outline:hover {
    box-shadow: 2px 2px 0 var(--ink);
    background: var(--cream-deep);
}

.button-xl {
    min-height: 72px;
    padding: 17px 25px 17px 31px;
    font-size: 18px;
}

.button-block {
    width: 100%;
}

.button-arrow {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 19px;
}

.cta-note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
}

.hero-visual {
    position: absolute;
    z-index: 1;
    top: -18px;
    right: -185px;
    width: min(91vw, 1120px);
    margin: 0;
    pointer-events: none;
}

.hero-visual::before {
    position: absolute;
    z-index: -1;
    top: 15%;
    right: 3%;
    width: 72%;
    height: 65%;
    border-radius: 50%;
    background: rgba(255, 204, 25, 0.14);
    content: "";
    filter: blur(32px);
}

.hero-visual picture,
.mechanism-visual picture {
    display: block;
}

.hero-visual img {
    width: 100%;
    mix-blend-mode: multiply;
}

.hero-proof {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 2px solid var(--ink);
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 -10px 32px rgba(23, 23, 18, 0.08);
}

.hero-proof > div {
    min-width: 0;
    padding: 20px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-proof > div:last-child {
    border-right: 0;
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    margin-bottom: 3px;
    color: var(--yellow);
    font-size: 20px;
    font-weight: 950;
}

.hero-proof span {
    color: #d2d1c9;
    font-size: 11px;
    font-weight: 700;
}

.section {
    padding: 118px 0;
}

.section-heading {
    max-width: 800px;
    margin-bottom: 58px;
}

.section-heading-wide {
    max-width: 1000px;
}

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

.section-kicker {
    margin-bottom: 12px;
}

.section-heading h2,
.workload h2,
.trial h2 {
    margin-bottom: 22px;
    font-size: clamp(38px, 4.2vw, 58px);
    font-weight: 950;
    letter-spacing: -0.055em;
    line-height: 1.25;
}

.section-heading h2 {
    text-wrap: balance;
}

@media (min-width: 901px) {
    .message-demo .section-heading h2,
    .mechanism .section-heading h2,
    .plan .section-heading h2 {
        font-size: clamp(38px, 3.7vw, 52px);
    }

    .mechanism .section-heading {
        max-width: 1080px;
    }
}

mark {
    display: inline;
    padding: 0 0.04em;
    background: linear-gradient(transparent 72%, var(--yellow) 0);
    color: inherit;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

mark::after {
    display: none;
}

.section-heading > p:last-child,
.workload-copy > p:last-child,
.trial-copy > p {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 16px;
    font-weight: 600;
    line-height: 2;
}

.intro {
    background: #fff;
}

.comparison-layout {
    display: grid;
    gap: 12px;
}

.comparison-table-shell {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.comparison-table-scroll {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: #bbb7aa #f4f2eb;
    scrollbar-width: thin;
}

.comparison-table-scroll:focus-visible {
    outline: 3px solid rgba(255, 204, 25, 0.8);
    outline-offset: -3px;
}

.comparison-table {
    width: 100%;
    min-width: 880px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.comparison-col-item {
    width: 22%;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.comparison-table tr > :last-child {
    border-right: 0;
}

.comparison-table tbody tr:last-child > * {
    border-bottom: 0;
}

.comparison-table thead th {
    background: #f8f7f2;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    line-height: 1.5;
    text-align: center;
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table thead strong {
    display: block;
    margin-top: 3px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 950;
}

.comparison-method-sub {
    display: block;
    font-size: 10px;
    letter-spacing: 0.04em;
}

.comparison-table thead .is-brand {
    background: var(--yellow);
    color: #5c4900;
}

.comparison-table tbody th {
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.55;
    text-align: left;
}

.comparison-table tbody td {
    background: #fff;
    color: #555349;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.55;
}

.comparison-table tbody .is-brand {
    background: #fff8d5;
    color: var(--ink);
    font-weight: 900;
}

.comparison-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.comparison-result b {
    display: grid;
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font-size: 12px;
    font-weight: 950;
}

.comparison-result.is-negative {
    color: #858176;
}

.comparison-result.is-negative b {
    border-color: #d8d5cc;
    background: #efeee9;
    color: #8e8a80;
}

.comparison-table .is-brand .comparison-result b {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--yellow);
}

.comparison-scroll-hint {
    display: none;
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    text-align: center;
}

.comparison-note {
    max-width: 860px;
    margin: 4px auto 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.75;
    text-align: center;
}

.message-demo {
    background:
        linear-gradient(rgba(23, 23, 18, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 23, 18, 0.025) 1px, transparent 1px),
        var(--cream);
    background-size: 28px 28px;
}

.message-demo .section-heading {
    max-width: 960px;
}

.demo-shell {
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 22px;
    background: #fff;
    box-shadow: 9px 9px 0 var(--ink);
}

.demo-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 2px solid var(--ink);
    background: #f5f2e9;
}

.demo-tabs button {
    min-height: 62px;
    padding: 12px 16px;
    border: 0;
    border-right: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
}

.demo-tabs button:last-child {
    border-right: 0;
}

.demo-tabs button[aria-selected="true"] {
    background: var(--yellow);
    box-shadow: inset 0 -4px 0 var(--ink);
}

.demo-panel {
    display: grid;
    min-height: 460px;
    grid-template-columns: minmax(0, 0.92fr) 90px minmax(0, 1.08fr);
    align-items: center;
    gap: 24px;
    padding: 48px;
}

.demo-panel[hidden] {
    display: none;
}

.site-reading,
.message-card {
    min-height: 325px;
    border: 2px solid var(--ink);
    border-radius: 14px;
}

.site-reading {
    position: relative;
    overflow: hidden;
    padding: 70px 30px 30px;
    background: #eaf2ff;
}

.site-reading::after {
    position: absolute;
    right: -60px;
    bottom: -85px;
    width: 210px;
    height: 210px;
    border: 34px solid rgba(36, 104, 216, 0.12);
    border-radius: 50%;
    content: "";
}

.site-reading-red {
    background: #fff0ed;
}

.site-reading-red::after {
    border-color: rgba(234, 88, 79, 0.12);
}

.site-reading-blue {
    background: #edf4ff;
}

.site-reading-blue::after {
    border-color: rgba(36, 104, 216, 0.12);
}

.browser-bar {
    position: absolute;
    inset: 0 0 auto;
    display: flex;
    height: 46px;
    align-items: center;
    gap: 6px;
    padding: 0 15px;
    border-bottom: 2px solid var(--ink);
    background: #fff;
}

.browser-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d2d0c7;
}

.browser-bar span:first-child {
    background: var(--red);
}

.browser-bar span:nth-child(2) {
    background: var(--yellow);
}

.browser-bar span:nth-child(3) {
    background: var(--green);
}

.browser-bar b {
    overflow: hidden;
    padding: 3px 9px;
    margin-left: 8px;
    border-radius: 999px;
    background: #f1efe8;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.browser-bar b i {
    color: var(--ink);
    font-style: normal;
    letter-spacing: 0.08em;
}

.site-industry {
    display: inline-block;
    margin-bottom: 14px;
    padding: 4px 9px;
    border-radius: 5px;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.site-reading-red .site-industry {
    background: var(--red);
}

.site-reading-blue .site-industry {
    background: var(--blue);
}

.site-reading h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    font-size: 23px;
    font-weight: 950;
    line-height: 1.5;
}

.demo-step-label {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 950;
}

.demo-step-label b {
    display: grid;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    font-size: 11px;
    line-height: 1;
}

.site-text {
    position: relative;
    z-index: 1;
    padding: 16px 17px;
    margin-bottom: 14px;
    border: 1px solid rgba(23, 23, 18, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
}

.site-text p {
    margin: 0 0 10px;
    color: #3d3c35;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.95;
}

.site-text p:last-child {
    margin-bottom: 0;
}

.read-mark {
    padding: 1px 3px;
    border-radius: 3px;
    background: var(--yellow-soft);
    box-shadow: 0 1px 0 var(--yellow-deep);
    color: var(--ink);
    font-weight: 900;
}

.read-mark b {
    display: inline-grid;
    width: 16px;
    height: 16px;
    margin-right: 4px;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--yellow);
    font-size: 10px;
    line-height: 1;
    transform: translateY(-1px);
}

.read-note {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
}

.read-note b {
    color: var(--ink);
}

.transform-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--yellow-deep);
    font-size: 55px;
    font-weight: 950;
    line-height: 1;
}

.transform-arrow span {
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.08em;
}

.message-card {
    position: relative;
    padding: 75px 32px 30px;
    background: #fff;
    box-shadow: 7px 7px 0 var(--blue);
}

.message-card-red {
    box-shadow: 7px 7px 0 var(--red);
}

.message-card-blue {
    box-shadow: 7px 7px 0 var(--blue);
}

.message-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 48px;
    border-bottom: 2px solid var(--ink);
    border-radius: 11px 11px 0 0;
    background: var(--blue);
    content: "";
}

.message-card-red::before {
    background: var(--red);
}

.message-card-blue::before {
    background: var(--blue);
}

.message-card .demo-step-label-light {
    position: absolute;
    z-index: 2;
    top: 13px;
    left: 22px;
    margin: 0;
    color: #fff;
    font-size: 11px;
}

.ref-num {
    display: inline-grid;
    width: 16px;
    height: 16px;
    margin-right: 4px;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--yellow);
    font-size: 10px;
    font-weight: 950;
    line-height: 1;
    transform: translateY(-1px);
}

.message-card p {
    margin-bottom: 12px;
    color: #49483f;
    font-size: 13px;
    line-height: 1.9;
}

.message-card p:last-child {
    margin-bottom: 0;
}

.message-card strong {
    color: var(--ink);
    background: linear-gradient(transparent 62%, var(--yellow-soft) 0);
    font-weight: 900;
}

.demo-note {
    padding: 14px 24px 16px;
    margin: 0;
    border-top: 1px solid var(--line);
    background: #fbfaf6;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.7;
    text-align: center;
}

.mechanism {
    background: #fff;
}

.mechanism-visual {
    overflow: hidden;
    margin-bottom: 36px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--cream);
    box-shadow: var(--shadow);
}

.mechanism-visual img {
    width: 100%;
    aspect-ratio: 16 / 7.4;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.flow-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 0;
    margin: 0;
    counter-reset: flow;
    list-style: none;
}

.flow-list li {
    position: relative;
    min-width: 0;
    padding: 0 20px 0 0;
}

.flow-list li:not(:last-child)::after {
    position: absolute;
    top: 20px;
    right: 6px;
    width: 16px;
    height: 2px;
    background: var(--yellow-deep);
    content: "";
}

.flow-list li:not(:last-child)::before {
    position: absolute;
    top: 16px;
    right: 4px;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border-top: 2px solid var(--yellow-deep);
    border-right: 2px solid var(--yellow-deep);
    content: "";
}

.flow-number {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    font-size: 11px;
    font-weight: 950;
}

.flow-list h3 {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 950;
}

.flow-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 8px;
    border: 1px solid var(--ink);
    border-radius: 5px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 10px;
    font-weight: 900;
}

.flow-list p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.75;
}

.fine-print {
    margin: 30px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.workload {
    position: relative;
    overflow: hidden;
    padding: 118px 0;
    background: var(--ink);
    color: #fff;
}

.workload::before {
    position: absolute;
    top: -250px;
    right: -140px;
    width: 620px;
    height: 620px;
    border: 85px solid rgba(255, 204, 25, 0.08);
    border-radius: 50%;
    content: "";
}

.workload-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 70px;
}

.section-kicker-light {
    color: var(--yellow);
}

.workload h2 {
    margin-bottom: 24px;
}

.workload h2 mark::after {
    display: none;
}

.workload-copy > p:last-child {
    color: #c5c3ba;
}

.calculation-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1.25fr;
    align-items: center;
    gap: 13px;
    padding: 36px 30px 25px;
    border: 2px solid var(--yellow);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 9px 9px 0 rgba(255, 204, 25, 0.25);
}

.calculation-card > div {
    text-align: center;
}

.calculation-card strong,
.calculation-card span {
    display: block;
}

.calculation-card strong {
    color: #fff;
    font-size: 43px;
    font-weight: 950;
    letter-spacing: -0.05em;
    line-height: 1;
}

.calculation-card span {
    margin-top: 6px;
    color: #bdbbb2;
    font-size: 11px;
    font-weight: 800;
}

.calculation-card > b {
    color: var(--yellow);
    font-size: 26px;
}

.calculation-card .calculation-result {
    padding: 17px 10px;
    border-radius: 12px;
    background: var(--yellow);
}

.calculation-card .calculation-result strong,
.calculation-card .calculation-result span {
    color: var(--ink);
}

.calculation-card > p {
    grid-column: 1 / -1;
    margin: 12px 0 0;
    color: #a9a79e;
    font-size: 9px;
    line-height: 1.65;
    text-align: center;
}

.handoff {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 70px 0.85fr;
    align-items: stretch;
    margin-top: 72px;
}

.handoff-side {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.handoff-brand {
    border-color: var(--yellow);
}

.handoff-label {
    margin-bottom: 4px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.handoff-side h3 {
    margin-bottom: 22px;
    font-size: 27px;
    font-weight: 950;
}

.handoff-side ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.handoff-side li {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #deddd5;
    font-size: 11px;
    font-weight: 800;
}

.handoff-brand li {
    border-color: rgba(255, 204, 25, 0.45);
    background: rgba(255, 204, 25, 0.08);
}

.handoff-arrow {
    display: grid;
    place-items: center;
    color: var(--yellow);
    font-size: 38px;
    font-weight: 950;
}

.handoff-option {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.7;
}

.calls {
    background: #fff;
}

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

.calls-card {
    padding: 30px 28px;
    border: 2px solid var(--ink);
    border-radius: 18px;
    background: var(--cream);
    box-shadow: 6px 6px 0 var(--ink);
}

.calls-step {
    display: grid;
    width: 38px;
    height: 38px;
    margin: 0 0 16px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    font-size: 12px;
    font-weight: 950;
}

.calls-card h3 {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 950;
    line-height: 1.55;
}

.calls-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.9;
}

.calls-upsell {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 28px 32px;
    margin-top: 24px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--ink);
    color: #fff;
}

.calls-upsell .calls-upsell-label {
    display: inline-block;
    padding: 4px 10px;
    margin: 0 0 12px;
    border-radius: 5px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 10px;
    font-weight: 950;
}

.calls-upsell h3 {
    margin: 0 0 10px;
    font-size: 21px;
    font-weight: 950;
    line-height: 1.6;
}

.calls-upsell p {
    margin: 0;
    color: #d4d1c7;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.9;
}

.calls-upsell .button {
    white-space: nowrap;
}

.plan {
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 204, 25, 0.2), transparent 23%),
        #fff;
}

.plan .section-heading {
    max-width: 1000px;
}

.plan .section-heading > p:last-child {
    margin-inline: auto;
}

.price-card {
    padding: 37px;
    border: 2px solid var(--ink);
    border-radius: 22px;
    background: var(--cream);
    box-shadow: 9px 9px 0 var(--ink);
}

.price-label {
    display: inline-block;
    margin-bottom: 22px;
    padding: 6px 12px;
    border: 1px solid var(--ink);
    border-radius: 6px;
    background: var(--yellow);
    font-size: 11px;
    font-weight: 950;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2px;
    line-height: 1;
}

.price span {
    margin-right: 8px;
    font-size: 14px;
    font-weight: 900;
}

.price strong {
    font-size: 82px;
    font-weight: 950;
    letter-spacing: -0.08em;
}

.price b {
    margin-left: 5px;
    font-size: 23px;
}

.price-total {
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

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

.price-card li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
}

.price-card li span {
    color: var(--muted);
    font-weight: 700;
}

.price-card li strong {
    font-weight: 950;
    text-align: right;
}

.price-card .button {
    font-size: 13px;
}

.price-card li.plan-diff span {
    color: var(--ink);
    font-weight: 900;
}

.price-card li.plan-diff strong {
    font-size: 14px;
    background: linear-gradient(transparent 55%, var(--yellow-soft) 0);
}

.evidence {
    background: var(--cream);
}

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

.evidence-card {
    position: relative;
    min-height: 325px;
    padding: 30px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: #fff;
}

.evidence-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 9px;
    border-radius: 15px 15px 0 0;
    background: var(--green);
    content: "";
}

.evidence-card > strong {
    display: block;
    margin-bottom: 8px;
    font-size: 56px;
    font-weight: 950;
    letter-spacing: -0.06em;
    line-height: 1;
}

.evidence-card > strong small {
    margin-left: 4px;
    font-size: 16px;
    letter-spacing: 0;
}

.evidence-card h3 {
    margin-bottom: 13px;
    font-size: 18px;
    font-weight: 950;
}

.evidence-card > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.8;
}

.fit {
    background: #fff;
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.fit-card {
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 20px;
    background: #fff;
}

.fit-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 17px 24px;
    margin: 0;
    border-bottom: 2px solid var(--ink);
    font-size: 14px;
    font-weight: 950;
}

.fit-label span {
    position: relative;
    display: grid;
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: #fff;
    font-size: 0;
}

.fit-card-yes .fit-label span::before {
    width: 11px;
    height: 6px;
    border-bottom: 3px solid var(--green);
    border-left: 3px solid var(--green);
    content: "";
    transform: translateY(-2px) rotate(-45deg);
}

.fit-card-no .fit-label span::before,
.fit-card-no .fit-label span::after {
    position: absolute;
    inset: 0;
    width: 13px;
    height: 3px;
    border-radius: 2px;
    margin: auto;
    background: #7b786e;
    content: "";
}

.fit-card-no .fit-label span::before {
    transform: rotate(45deg);
}

.fit-card-no .fit-label span::after {
    transform: rotate(-45deg);
}

.fit-card-yes .fit-label {
    background: var(--yellow);
}

.fit-card-no .fit-label {
    background: #eeede8;
}

.fit-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.fit-card li {
    position: relative;
    padding: 23px 25px 23px 51px;
    border-bottom: 1px solid var(--line);
}

.fit-card li:last-child {
    border-bottom: 0;
}

.fit-card li::before {
    position: absolute;
    top: 28px;
    left: 24px;
    width: 12px;
    height: 12px;
    border: 3px solid var(--green);
    border-radius: 50%;
    content: "";
}

.fit-card-no li::before {
    border-color: #aaa79c;
}

.fit-card li strong,
.fit-card li span {
    display: block;
}

.fit-card li strong {
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 950;
}

.fit-card li span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
}

.fit-footnote {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.faq {
    background: var(--cream);
}

.faq-container {
    max-width: 920px;
}

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

.faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.faq-list summary {
    position: relative;
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 16px;
    padding: 18px 58px 18px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::before,
.faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 23px;
    width: 16px;
    height: 2px;
    background: var(--ink);
    content: "";
    transition: transform 0.2s ease;
}

.faq-list summary::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary::after {
    transform: rotate(0);
}

.faq-list summary span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    font-size: 12px;
    font-weight: 950;
}

.faq-list details > div {
    padding: 0 58px 24px 70px;
}

.faq-list details p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.9;
}

.trial {
    position: relative;
    overflow: hidden;
    padding: 118px 0;
    background: var(--yellow);
}

.trial::before {
    position: absolute;
    top: -130px;
    left: -110px;
    width: 420px;
    height: 420px;
    border: 68px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    content: "";
}

.trial::after {
    position: absolute;
    right: -160px;
    bottom: -240px;
    width: 560px;
    height: 560px;
    border: 90px solid rgba(23, 23, 18, 0.06);
    border-radius: 50%;
    content: "";
}

.trial-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 70px;
}

.trial-copy {
    position: sticky;
    top: 120px;
}

.trial-copy .section-kicker {
    color: #614a00;
}

.trial h2 {
    margin-bottom: 24px;
}

.trial h2 mark::after {
    display: none;
}

.trial h2 mark {
    background: linear-gradient(transparent 72%, #fff 0);
}

.trial-copy > p {
    color: #413a22;
}

.trial-steps {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 36px 0 28px;
    list-style: none;
}

.trial-steps li {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 16px;
    border: 1px solid rgba(23, 23, 18, 0.35);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.37);
}

.trial-steps li > span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: #fff;
    font-size: 11px;
    font-weight: 950;
}

.trial-steps strong,
.trial-steps small {
    display: block;
}

.trial-steps strong {
    font-size: 13px;
    font-weight: 950;
}

.trial-steps small {
    color: #5d553b;
    font-size: 10px;
    font-weight: 600;
}

.trial-terms {
    margin: 18px 0 0;
    padding: 14px 15px;
    border: 1px solid rgba(23, 23, 18, 0.3);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.46);
    color: #413a22;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.85;
}

.trial-form-wrap {
    padding: 38px;
    border: 2px solid var(--ink);
    border-radius: 22px;
    background: #fff;
    box-shadow: 10px 10px 0 var(--ink);
}

.trial-form-wrap .button {
    border-radius: 10px;
    font-size: 16px;
}

.site-footer {
    padding: 70px 0 24px;
    background: var(--ink);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.7fr;
    gap: 60px;
    padding-bottom: 45px;
}

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

.footer-grid > div:first-child > p {
    margin: 14px 0 0;
    color: #aaa89f;
    font-size: 11px;
    font-weight: 700;
}

.footer-grid nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    font-size: 11px;
    font-weight: 700;
}

.footer-grid nav a {
    color: #c7c5bd;
}

.footer-grid nav a:hover {
    color: var(--yellow);
}

.footer-company p,
.footer-company strong,
.footer-company a {
    display: block;
}

.footer-company p {
    margin-bottom: 5px;
    color: #8c8a82;
    font-size: 9px;
    font-weight: 800;
}

.footer-company strong {
    margin-bottom: 4px;
    font-size: 12px;
}

.footer-company a {
    color: #aaa89f;
    font-size: 10px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 21px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    color: #79776f;
    font-size: 9px;
}

.mobile-fixed-cta {
    display: none;
}

.legal-page {
    min-height: 100vh;
    padding: 0;
    background: var(--cream);
}

.legal-header {
    border-bottom: 1px solid var(--line);
    background: rgba(255, 249, 236, 0.94);
}

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

.legal-back {
    font-size: 12px;
    font-weight: 900;
}

.legal-main {
    padding: 78px 0 110px;
}

.legal-container {
    max-width: 900px;
}

.legal-title {
    margin-bottom: 42px;
}

.legal-title h1 {
    margin-bottom: 15px;
    font-size: clamp(37px, 5vw, 58px);
    font-weight: 950;
    letter-spacing: -0.05em;
    line-height: 1.25;
}

.legal-title > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.legal-card {
    padding: 50px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-small);
}

.legal-card section {
    padding-bottom: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid var(--line);
}

.legal-card section:last-of-type {
    margin-bottom: 0;
}

.legal-card h2 {
    margin-bottom: 13px;
    font-size: 20px;
    font-weight: 950;
}

.legal-card p,
.legal-card li {
    color: #59584f;
    font-size: 13px;
    font-weight: 600;
    line-height: 2;
}

.legal-card p {
    margin-bottom: 12px;
}

.legal-card ul,
.legal-card ol {
    padding-left: 1.25em;
    margin: 0;
}

.legal-card a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-date {
    margin: 32px 0 0 !important;
    color: var(--muted) !important;
    font-size: 10px !important;
    text-align: right;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1100px) {
    .brand-description {
        display: none;
    }

    .global-nav {
        gap: 18px;
    }

    .hero-grid {
        min-height: 700px;
    }

    .hero-copy {
        width: min(53%, 560px);
    }

    .hero-visual {
        right: -185px;
        width: min(91vw, 1000px);
        margin: 0;
    }

    .hero-badges li {
        min-height: 54px;
        padding-right: 9px;
    }

    .hero-badges strong {
        font-size: 15px;
    }

    .demo-panel {
        padding: 36px;
    }

    .flow-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 10px;
    }

    .flow-list li:nth-child(3)::after,
    .flow-list li:nth-child(3)::before {
        display: none;
    }
}

@media (min-width: 901px) and (max-width: 1400px) {
    .hero-visual {
        right: calc(50% - 50vw);
        width: min(82vw, 1050px);
    }

    .hero-copy::before {
        position: absolute;
        z-index: -1;
        inset: -18px -78px -18px -34px;
        background: linear-gradient(90deg, rgba(255, 253, 246, 0.98) 0%, rgba(255, 253, 246, 0.9) 70%, rgba(255, 253, 246, 0) 100%);
        content: "";
        pointer-events: none;
    }
}

@media (max-width: 900px) {
    .container {
        width: min(calc(100% - 36px), var(--container));
    }

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

    .nav-toggle {
        display: block;
    }

    .nav-toggle[aria-expanded="true"] > span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .global-nav {
        position: fixed;
        inset: 68px 0 auto;
        display: grid;
        max-height: 0;
        gap: 0;
        overflow-x: hidden;
        overflow-y: auto;
        background: var(--cream);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: max-height 0.28s ease, opacity 0.2s ease;
    }

    .global-nav.is-open {
        max-height: calc(100vh - 68px);
        padding: 18px;
        border-top: 1px solid var(--line);
        border-bottom: 2px solid var(--ink);
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    .global-nav > a {
        padding: 14px 8px !important;
        border-bottom: 1px solid var(--line);
    }

    .global-nav .header-cta {
        justify-content: center;
        margin-top: 13px;
        border-bottom: 2px solid var(--ink);
    }

    .hero {
        padding-top: 105px;
    }

    .hero-grid {
        display: grid;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        width: 100%;
        padding-bottom: 20px;
    }

    .hero h1 {
        font-size: clamp(52px, 6vw, 58px);
    }

    .hero-copy,
    .hero-lead,
    .cta-note {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .hero-visual {
        position: relative;
        inset: auto;
        width: 100%;
        margin: -15px auto 0;
        pointer-events: auto;
    }

    .hero-proof {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 10px;
    }

    .hero-proof > div:nth-child(2) {
        border-right: 0;
    }

    .hero-proof > div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .section,
    .workload,
    .trial {
        padding: 90px 0;
    }

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

    .comparison-table-shell {
        border-radius: 14px;
    }

    .comparison-table {
        min-width: 800px;
    }

    .comparison-table thead th:first-child,
    .comparison-table tbody th {
        position: sticky;
        left: 0;
        z-index: 2;
        box-shadow: 1px 0 0 var(--line);
    }

    .comparison-table thead th:first-child {
        z-index: 3;
        background: #f8f7f2;
    }

    .comparison-scroll-hint {
        display: block;
    }

    .mechanism-visual img {
        aspect-ratio: 16 / 9;
    }

    .demo-panel {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .transform-arrow {
        min-height: 50px;
        transform: rotate(90deg);
    }

    .transform-arrow span {
        transform: rotate(-90deg);
    }

    .site-reading,
    .message-card {
        min-height: 310px;
    }

    .flow-list {
        grid-template-columns: 1fr 1fr;
    }

    .flow-list li:nth-child(2)::after,
    .flow-list li:nth-child(2)::before,
    .flow-list li:nth-child(4)::after,
    .flow-list li:nth-child(4)::before {
        display: none;
    }

    .flow-list li:nth-child(3)::after,
    .flow-list li:nth-child(3)::before {
        display: block;
    }

    .workload-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

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

    .handoff-arrow {
        min-height: 60px;
        transform: rotate(90deg);
    }

    .price-card {
        max-width: 600px;
        margin-inline: auto;
    }

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

    .trial-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .trial-copy {
        position: static;
    }

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

    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    body {
        padding-bottom: 68px;
        font-size: 15px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .mobile-only {
        display: inline;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .brand-name {
        font-size: 21px;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .hero {
        padding-top: 93px;
    }

    .hero-copy {
        padding-top: 16px;
    }

    .hero h1 {
        margin-bottom: 23px;
        font-size: clamp(43px, 12vw, 54px);
        letter-spacing: -0.075em;
        line-height: 1.12;
    }

    .hero h1 span::after {
        bottom: 0;
        height: 10px;
    }

    .hero-lead {
        font-size: 14px;
        line-height: 1.9;
    }

    .desktop-only {
        display: none;
    }

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

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

    .hero-badges li:last-child {
        grid-column: 1 / -1;
    }

    .button-xl {
        min-height: 64px;
        padding: 15px 17px;
        font-size: 14px;
    }

    .button-arrow {
        width: 30px;
        height: 30px;
    }

    .hero-visual {
        width: 100%;
        margin: 12px 0 0;
    }

    .hero-visual img {
        object-fit: contain;
    }

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

    .hero-proof > div {
        padding: 16px 12px;
    }

    .hero-proof strong {
        font-size: 15px;
    }

    .hero-proof span {
        font-size: 9px;
    }

    .section,
    .workload,
    .trial {
        padding: 72px 0;
    }

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

    .section-heading h2,
    .workload h2,
    .trial h2 {
        margin-bottom: 17px;
        font-size: 34px;
        line-height: 1.33;
        word-break: auto-phrase;
    }

    .intro .section-heading h2 {
        font-size: 32px;
    }

    .section-heading > p:last-child,
    .workload-copy > p:last-child,
    .trial-copy > p {
        font-size: 14px;
        line-height: 1.9;
    }

    .comparison-table-shell {
        margin-inline: -4px;
    }

    .comparison-table {
        min-width: 820px;
    }

    .comparison-col-item {
        width: 124px;
    }

    .comparison-col-brand {
        width: 170px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 14px 12px;
    }

    .comparison-table thead strong {
        font-size: 14px;
    }

    .demo-shell {
        border-radius: 15px;
        box-shadow: 5px 5px 0 var(--ink);
    }

    .demo-tabs {
        grid-template-columns: 1fr;
    }

    .demo-tabs button {
        min-height: 50px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .demo-tabs button:last-child {
        border-bottom: 0;
    }

    .demo-panel {
        padding: 17px;
    }

    .site-reading,
    .message-card {
        min-height: 0;
    }

    .site-reading {
        padding: 64px 21px 25px;
    }

    .site-reading h3 {
        font-size: 21px;
    }

    .message-card {
        padding: 66px 21px 25px;
        box-shadow: 4px 4px 0 var(--blue);
    }

    .message-card-red {
        box-shadow: 4px 4px 0 var(--red);
    }

    .message-card-blue {
        box-shadow: 4px 4px 0 var(--blue);
    }

    .mechanism-visual img {
        object-fit: contain;
    }

    .flow-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .flow-list li {
        display: grid;
        grid-template-columns: 48px 1fr;
        gap: 13px;
        padding: 0;
    }

    .flow-list li::after,
    .flow-list li::before {
        display: none !important;
    }

    .flow-number {
        margin: 0;
    }

    .calculation-card {
        grid-template-columns: 1fr auto 1fr;
        padding: 26px 16px 20px;
    }

    .calculation-card > div:nth-of-type(3) {
        grid-column: 1 / -1;
        width: 100%;
    }

    .calculation-card > b:nth-of-type(2) {
        grid-column: 1 / -1;
        text-align: center;
    }

    .calculation-card strong {
        font-size: 36px;
    }

    .handoff {
        margin-top: 53px;
    }

    .handoff-side {
        padding: 26px 21px;
    }

    .price-card {
        padding: 27px 20px;
        box-shadow: 5px 5px 0 var(--ink);
    }

    .price strong {
        font-size: 69px;
    }

    .evidence-card {
        min-height: 0;
        padding: 27px 24px;
    }

        .fit-card li {
        padding-right: 19px;
    }

    .faq-list summary {
        min-height: 68px;
        gap: 10px;
        padding: 15px 48px 15px 14px;
        font-size: 12px;
        line-height: 1.55;
    }

    .faq-list summary::before,
    .faq-list summary::after {
        right: 17px;
        width: 13px;
    }

    .faq-list summary span {
        width: 29px;
        height: 29px;
    }

    .faq-list details > div {
        padding: 0 18px 20px 53px;
    }

    .trial-form-wrap {
        padding: 27px 18px;
        border-radius: 15px;
        box-shadow: 6px 6px 0 var(--ink);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .footer-company {
        grid-column: auto;
    }

    .footer-bottom {
        display: grid;
        gap: 6px;
    }

    .mobile-fixed-cta {
        position: fixed;
        z-index: 900;
        right: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        left: 10px;
        display: flex;
        min-height: 52px;
        align-items: center;
        justify-content: center;
        gap: 14px;
        border: 2px solid var(--ink);
        border-radius: 10px;
        background: var(--yellow);
        box-shadow: 4px 4px 0 var(--ink);
        font-size: 13px;
        font-weight: 950;
        visibility: visible;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .mobile-fixed-cta.is-hidden {
        transform: translateY(calc(100px + env(safe-area-inset-bottom)));
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }

    .legal-header .container {
        min-height: 66px;
    }

    .legal-back {
        font-size: 10px;
    }

    .legal-main {
        padding: 55px 0 75px;
    }

    .legal-card {
        padding: 27px 20px;
        border-radius: 14px;
    }

    .legal-card section {
        padding-bottom: 26px;
        margin-bottom: 26px;
    }

    .legal-card h2 {
        font-size: 17px;
    }

    .legal-card p,
    .legal-card li {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-visual img {
        aspect-ratio: 4 / 3;
    }

    .mechanism-visual img {
        aspect-ratio: 1;
    }
}

/* Monthly SaaS edition */
.header-login {
    color: var(--muted);
}

.results-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.results-grid .evidence-card {
    min-height: 0;
    padding: 28px 24px;
}

.results-grid .evidence-card > strong {
    font-size: 48px;
}

.results-grid .evidence-card > strong small {
    font-size: 14px;
}

.pricing-grid {
    display: grid;
    max-width: 960px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 28px;
    margin: 0 auto;
}

.pricing-grid-three {
    max-width: 1140px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.pricing-grid-three .price-card {
    padding: 30px 24px;
    box-shadow: 7px 7px 0 var(--ink);
}

.pricing-grid-three .price strong {
    font-size: 66px;
}

.pricing-grid-three .price-free {
    min-height: 66px;
}

.pricing-grid-three .price-card li {
    gap: 12px;
    font-size: 11.5px;
}

.price-card-pro {
    background:
        linear-gradient(180deg, rgba(36, 104, 216, 0.12), transparent 34%),
        #fff;
}

.price-card-pro .price-label {
    background: var(--blue);
    color: #fff;
}

.addon-card {
    display: grid;
    max-width: 1140px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 24px 28px;
    margin: 20px auto 0;
    border: 2px dashed var(--ink);
    border-radius: var(--radius);
    background: #fff;
}

.addon-label {
    display: inline-block;
    padding: 4px 10px;
    margin: 0 0 10px;
    border: 1px solid var(--ink);
    border-radius: 5px;
    background: var(--yellow);
    font-size: 10px;
    font-weight: 950;
}

.addon-card h3 {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 950;
}

.addon-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.9;
}

.addon-card p strong {
    color: var(--ink);
    font-weight: 950;
}

.addon-card .button {
    white-space: nowrap;
}

.pricing-grid .price-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.pricing-grid .price-card ul {
    flex: 1;
}

.price-card-free {
    background: #fff;
}

.price-card-paid {
    background:
        linear-gradient(180deg, rgba(255, 204, 25, 0.16), transparent 34%),
        var(--cream);
}

.price-card-paid::before {
    position: absolute;
    top: 21px;
    right: 21px;
    padding: 5px 10px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: #fff;
    content: "おすすめ";
    font-size: 9px;
    font-weight: 950;
}

.price-free {
    min-height: 82px;
}

.price-free strong {
    letter-spacing: -0.05em;
}

.volume-note {
    display: grid;
    max-width: 1140px;
    grid-template-columns: 230px 1fr;
    gap: 28px;
    padding: 25px 28px;
    margin: 34px auto 0;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--ink);
    color: #fff;
}

.volume-note strong {
    color: var(--yellow);
    font-size: 17px;
    font-weight: 950;
}

.volume-note p {
    margin: 0;
    color: #d4d1c7;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.9;
}

.pricing-fine-print {
    max-width: 1140px;
    margin: 20px auto 0;
}

.signup-card {
    align-self: center;
}

.signup-card-label {
    display: inline-block;
    padding: 6px 10px;
    margin: 0 0 18px;
    border: 1px solid var(--ink);
    border-radius: 6px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.1em;
}

.signup-card h3 {
    margin-bottom: 13px;
    font-size: clamp(31px, 3.3vw, 48px);
    font-weight: 950;
    letter-spacing: -0.055em;
    line-height: 1.2;
}

.signup-card-lead {
    margin-bottom: 27px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.9;
}

.signup-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    margin: 0 0 27px;
    list-style: none;
}

.signup-benefits li {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    padding: 12px 11px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--cream);
}

.signup-benefits li > span {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: #dcf5e6;
    color: #117a3e;
    font-size: 11px;
    font-weight: 950;
}

.signup-benefits strong {
    overflow-wrap: anywhere;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.45;
}

.signup-legal {
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 10px;
    text-align: center;
}

.signup-legal a,
.signup-contact a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.signup-login {
    display: block;
    margin-top: 18px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.signup-contact {
    padding-top: 20px;
    margin: 22px 0 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
    text-align: center;
}

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

    .results-grid .evidence-card {
        min-height: 0;
    }
}

@media (max-width: 1100px) {
    .pricing-grid-three {
        max-width: 720px;
        grid-template-columns: 1fr;
    }

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

    .calls-upsell,
    .addon-card {
        grid-template-columns: 1fr;
    }

    }

@media (max-width: 900px) {
    .pricing-grid {
        max-width: 620px;
        grid-template-columns: 1fr;
    }

    .pricing-grid-three {
        max-width: 620px;
    }

    .volume-note {
        max-width: 620px;
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 700px) {
    .results-grid {
        grid-template-columns: 1fr;
    }

    .results-grid .evidence-card {
        min-height: 0;
    }
}

@media (max-width: 600px) {
    .signup-benefits {
        grid-template-columns: 1fr;
    }

    .signup-card h3 {
        font-size: 32px;
    }

    .volume-note {
        padding: 22px 20px;
    }
}


/* ===== SAFETY ===== */
.safety {
    background: var(--cream);
}

.origin-card {
    max-width: 860px;
    padding: 30px 34px;
    margin: 0 auto 34px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 7px 7px 0 var(--ink);
}

.origin-label {
    display: inline-block;
    padding: 5px 12px;
    margin: 0 0 16px;
    border: 1px solid var(--ink);
    border-radius: 6px;
    background: var(--yellow);
    font-size: 11px;
    font-weight: 950;
}

.origin-card p {
    margin: 0 0 12px;
    color: #45443c;
    font-size: 14px;
    font-weight: 650;
    line-height: 2;
}

.origin-card p:last-child {
    margin-bottom: 0;
}

.origin-card strong {
    color: var(--ink);
    background: linear-gradient(transparent 62%, var(--yellow-soft) 0);
    font-weight: 900;
}

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

.safety-card {
    padding: 22px 24px;
    border: 2px solid var(--ink);
    border-radius: 14px;
    background: #fff;
}

.safety-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 950;
}

.safety-card h3::before {
    display: grid;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    content: "✕";
    font-size: 10px;
    font-weight: 950;
}

.safety-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.85;
}

/* ===== FUNNEL ===== */
.results-panel + .results-panel {
    margin-top: 24px;
}

.results-panel-label {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.results-panel-tracked {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #f8f7f2;
}

.results-panel-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}

.results-panel-head .results-panel-label,
.results-panel-head p {
    margin: 0;
}

.results-panel-head > p:last-child {
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

.funnel-tracked {
    max-width: 720px;
}

.results-panel-note {
    max-width: 720px;
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 650;
    line-height: 1.75;
}

.funnel {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.funnel-step {
    flex: 1;
    min-width: 0;
    padding: 26px 22px;
    border: 2px solid var(--ink);
    border-radius: 16px;
    background: #fff;
    box-shadow: 6px 6px 0 var(--ink);
}

.funnel-step.is-goal {
    background: var(--yellow);
}

.funnel-step strong {
    display: block;
    margin-bottom: 6px;
    font-size: 40px;
    font-weight: 950;
    letter-spacing: -0.05em;
    line-height: 1;
}

.funnel-step strong small {
    margin-left: 3px;
    font-size: 15px;
    letter-spacing: 0;
}

.funnel-step h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 950;
}

.funnel-step p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 650;
    line-height: 1.7;
}

.funnel-step.is-goal p {
    color: #55450a;
}

.funnel-arrow {
    align-self: center;
    color: var(--yellow-deep);
    font-size: 26px;
    font-weight: 950;
}

/* ===== MANAGED ===== */
.managed-block {
    max-width: 1140px;
    padding: 30px 32px;
    margin: 20px auto 0;
    border: 2px dashed var(--ink);
    border-radius: var(--radius);
    background: #fff;
}

.managed-head h3 {
    margin: 10px 0 8px;
    font-size: 21px;
    font-weight: 950;
}

.managed-head p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
}

.managed-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.managed-card {
    padding: 20px 22px;
    border: 2px solid var(--ink);
    border-radius: 12px;
    background: var(--cream);
}

.managed-card.is-full {
    background:
        linear-gradient(180deg, rgba(255, 204, 25, 0.25), transparent 45%),
        var(--cream);
}

.managed-card h4 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 950;
}

.managed-price {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 900;
    color: #6b5500;
}

.managed-price strong {
    font-size: 30px;
    color: var(--ink);
    letter-spacing: -0.04em;
}

.managed-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.8;
}

.managed-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.managed-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
}

.managed-cta .button {
    white-space: nowrap;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    background: var(--cream);
}

.contact-container {
    max-width: 720px;
}

.contact-card {
    padding: 30px 32px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 7px 7px 0 var(--ink);
}

.contact-thanks {
    text-align: center;
}

.contact-thanks h1 {
    margin: 10px 0 14px;
    font-size: 38px;
    font-weight: 950;
}

.contact-thanks p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 2;
}

.contact-thanks a:not(.button) {
    font-weight: 800;
    text-decoration: underline;
}

.contact-page .section-heading h1 {
    margin: 6px 0 12px;
    font-size: clamp(34px, 4.5vw, 46px);
    font-weight: 950;
    letter-spacing: -0.03em;
}

.contact-page .section-heading h1 mark {
    background: linear-gradient(transparent 62%, var(--yellow) 0);
    color: inherit;
}

.contact-error {
    max-width: 720px;
    padding: 12px 16px;
    margin: 0 0 16px;
    border: 2px solid var(--red);
    border-radius: 10px;
    background: #fff0ed;
    color: #a3261d;
    font-size: 13px;
    font-weight: 800;
}

.contact-field {
    margin-bottom: 16px;
}

.contact-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 900;
}

.contact-field label em {
    padding: 2px 7px;
    border-radius: 5px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--ink);
    border-radius: 10px;
    background: #fffdf6;
    font-family: inherit;
    font-size: 14px;
}

.contact-field textarea {
    resize: vertical;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-legal {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 11px;
    text-align: center;
}

.contact-legal a {
    text-decoration: underline;
}

.global-nav.is-static {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 1000px) {
    .results-panel-head {
        display: block;
    }

    .results-panel-head > p:last-child {
        margin-top: 4px;
    }

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

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

    .managed-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .funnel {
        flex-direction: column;
    }

    .funnel-arrow {
        transform: rotate(90deg);
        text-align: center;
    }
}

@media (max-width: 600px) {
    .safety-grid {
        grid-template-columns: 1fr;
    }

    .origin-card {
        padding: 22px 20px;
    }

    .contact-card {
        padding: 22px 18px;
    }
}


/* ===== UI SCREENSHOT ===== */
.ui-shot {
    max-width: 1000px;
    margin: 30px auto 0;
}

.ui-shot-targeting {
    max-width: 850px;
}

.ui-shot img {
    display: block;
    width: 100%;
    border: 2px solid var(--ink);
    border-radius: 14px;
    box-shadow: 8px 8px 0 var(--ink);
    background: #fff;
}

.ui-shot figcaption {
    margin-top: 12px;
    color: var(--muted);
    font-size: 11.5px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 600px) {
    .ui-shot-scroll {
        overflow-x: auto;
        padding: 0 10px 12px 0;
        overscroll-behavior-x: contain;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .ui-shot-scroll img {
        width: 720px;
        max-width: none;
        box-shadow: 6px 6px 0 var(--ink);
    }

    .ui-shot figcaption::after {
        display: block;
        margin-top: 4px;
        content: "画像は横にスクロールできます";
        font-size: 10px;
    }
}


/* ===== CTA HIERARCHY ===== */
.hero-actions {
    display: grid;
    width: min(100%, 560px);
    gap: 13px;
}

.hero-actions > .button {
    width: 100%;
}

.hero-action-meta {
    display: grid;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.9);
    grid-template-columns: minmax(0, 1fr) auto;
}

.hero-action-meta .cta-note {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    margin: 0;
    color: var(--muted);
    font-size: 10.5px;
    font-weight: 800;
    line-height: 1.5;
    text-align: left;
}

.hero-action-meta .cta-note::before {
    display: grid;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    content: "✓";
    font-size: 10px;
    font-weight: 950;
}

.hero-cta-secondary {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 12px;
    margin: 0;
    border-left: 2px solid var(--ink);
    background: var(--cream);
    color: var(--ink);
    font-size: 12.5px;
    font-weight: 850;
    line-height: 1.5;
    text-align: center;
    transition: background 0.18s ease;
}

.hero-cta-secondary:hover {
    background: #fff4cc;
}

.hero-cta-secondary span,
.signup-omakase span {
    display: grid;
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    font-size: 12px;
    font-weight: 950;
}

.signup-actions {
    display: grid;
    gap: 16px;
}

.signup-primary-group {
    min-width: 0;
}

.signup-primary-group .signup-legal {
    padding: 0 10px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.65;
    text-align: center;
}

.signup-omakase {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 16px;
    margin: 0;
    border: 2px solid var(--ink);
    border-radius: 10px;
    background: var(--cream);
    color: var(--ink);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.5;
    text-align: center;
    transition: background 0.18s ease, transform 0.18s ease;
}

.signup-omakase:hover {
    background: #fff4cc;
    transform: translateY(-1px);
}

.signup-utility-links {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    margin-top: 20px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--cream);
}

.signup-utility-links .signup-login {
    min-width: 0;
    padding: 4px 18px 4px 0;
    margin: 0;
    font-size: 11px;
    line-height: 1.65;
}

.signup-utility-links .signup-contact {
    min-width: 0;
    padding: 4px 0 4px 18px;
    margin: 0;
    border-top: 0;
    border-left: 1px solid var(--line);
    font-size: 10.5px;
    line-height: 1.65;
    text-align: center;
}

.signup-omakase:focus-visible,
.signup-utility-links a:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}

.hero-cta-secondary:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: -5px;
}

@media (max-width: 600px) {
    .signup-actions {
        gap: 14px;
    }

    .signup-primary-group .signup-legal {
        padding: 0 3px;
    }

    .signup-omakase {
        padding-inline: 12px;
        font-size: 12.5px;
    }

    .signup-utility-links {
        grid-template-columns: 1fr;
        margin-top: 18px;
        padding: 12px 14px;
    }

    .signup-utility-links .signup-login {
        padding: 0 0 12px;
    }

    .signup-utility-links .signup-contact {
        padding: 12px 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-action-meta {
        grid-template-columns: 1fr;
    }

    .hero-action-meta .cta-note {
        justify-content: center;
        text-align: center;
    }

    .hero-cta-secondary {
        border-top: 1px solid var(--line);
        border-left: 0;
    }
}


/* ===== 2026-08-25 仕上げ ===== */
/* FV注記バー: 中央揃えに統一 */
.hero-action-meta > * {
    justify-content: center !important;
    text-align: center;
}

/* おまかせ1枚構成 */
.managed-grid-single {
    grid-template-columns: 1fr;
    max-width: 720px;
}

/* ファネルの率バッジ */
.funnel-rate {
    display: inline-block;
    padding: 3px 9px;
    margin: 2px 0 0;
    border-radius: 999px;
    background: rgba(23, 23, 18, 0.08);
    color: #45443c;
    font-size: 11px;
    font-weight: 900;
}

.funnel-step.is-goal .funnel-rate {
    background: rgba(23, 23, 18, 0.14);
    color: #3a3000;
}

/* ページ内相談フォーム */
.contact-inline {
    background: var(--cream);
}

.contact-inline-container {
    max-width: 720px;
}

.contact-inline .contact-card {
    margin-top: 8px;
}
