@font-face {
    font-family: Lora;
    font-style: normal;
    font-weight: 400 700;
    font-display: fallback;
    src: url("https://www.pulsar-works.jp/wp-content/themes/raft/assets/fonts/lora/Lora-VariableFont_wght.ttf") format("truetype");
}

:root {
    --bg: #FFFFFF;
    --fg: #202220;
    --fg-on-dark: #FFFFFF;

    --surface: rgba(0, 0, 0, 0.05);
    --band: #494949;
    --band-fg: #FFFFFF;
    --soft: #F6F6F6;

    --rule: #202220;
    --hairline: rgba(32, 34, 32, 0.22);

    --btn-fg: #F6F6F6;

    
    --ph-ink: #47586B;
    --ph-line: #8296A8;
    --ph-ground: #EDF1F5;

    --serif: Lora, "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
    --mono: "SFMono-Regular", "Consolas", "Menlo", monospace;

    --measure: 900px;
    --measure-wide: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.c {
    width: 100%;
    max-width: var(--measure);
    margin-inline: auto;
    padding-inline: 24px;
}
.c--wide {
    width: 100%;
    max-width: var(--measure-wide);
    margin-inline: auto;
    padding-inline: 24px;
}

.stack { display: flex; flex-direction: column; }

a { color: var(--fg); }
a:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--ph-ink);
    outline-offset: 3px;
}


.breadcrumbs {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--bg);
    border-bottom: 1px solid var(--hairline);
    font-size: 15px;
}
.breadcrumbs .c--wide {
    padding-block: 14px;
}
.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
.breadcrumbs li {
    display: flex;
    align-items: baseline;
}
.breadcrumbs li + li::before {
    content: "/";
    margin: 0 10px;
    color: rgba(32, 34, 32, 0.4);
}
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; text-underline-offset: 4px; }

.breadcrumbs [aria-current="page"] { color: rgba(32, 34, 32, 0.62); }

.masthead {
    padding: 72px 0 28px;
}
.masthead__inner {
    border-bottom: 3px solid var(--rule);
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.masthead h1 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 600;
    text-wrap: balance;
}

.masthead__lede {
    max-width: 46em;
}

.product-index {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding: 12px 0 8px;
}

.product-entry {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 44px;
    align-items: center;
    padding: 44px 48px;
    background: var(--bg);
    border-radius: 4px;
    box-shadow:
        0 2px 4px rgba(32, 34, 32, 0.07),
        0 10px 28px rgba(32, 34, 32, 0.10);
    transition: box-shadow 160ms ease, transform 160ms ease;
}
.product-entry:hover {
    box-shadow:
        0 4px 8px rgba(32, 34, 32, 0.09),
        0 18px 44px rgba(32, 34, 32, 0.14);
    transform: translateY(-2px);
}

.product-entry__plate {
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-entry__plate img {
    display: block;
    max-width: 100%;
    height: auto;
}

.product-entry__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.product-entry__body h2 {
    font-size: 30px;
    line-height: 1.35;
    font-weight: 600;
    text-wrap: balance;
}
.product-entry__body .btns { justify-content: flex-start; }

.lp {
    display: flex;
    flex-direction: column;
    gap: 44px;
    padding-top: 8px;
}

.lp h2 {
    font-size: 32px;
    line-height: 1.35;
    font-weight: 600;
    text-wrap: balance;
}
.lp h3 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    text-wrap: balance;
}
.lp ul {
    padding-left: 1.3em;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: center;
    padding: 8px 0 16px;
}
.hero__art { display: flex; justify-content: center; }
.hero__art img { display: block; max-width: 100%; height: auto; }
.hero__copy { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.hero__copy h2 { font-size: 30px; line-height: 1.35; }

.note {
    font-size: 15px;
    max-width: 46em;
}

.cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.feature-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.feature-cols > div {
    border-left: 1px solid rgba(255, 255, 255, 0.45);
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feature-cols h3 { font-size: 21px; line-height: 1.4; font-weight: 600; }
.feature-cols p { font-size: 16px; line-height: 1.75; }

.usecases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.usecase { display: flex; flex-direction: column; gap: 14px; }
.usecase h3 { font-size: 21px; line-height: 1.4; font-weight: 600; }
.usecase p { font-size: 16px; line-height: 1.75; }


.usecase__art {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.usecase__art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.price {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.price__rule {
    border: 0;
    border-top: 1px solid var(--rule);
}
.price__main {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 600;
}

.btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.btn {
    display: inline-block;
    padding: 16px 32px;
    border: 2px solid transparent;
    border-radius: 3px;
    background: var(--fg);
    color: var(--btn-fg);
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
}
.btn:hover { opacity: 0.85; }

.btn--ghost {
    background: transparent;
    color: var(--fg);
    border-color: var(--fg);
}
.btn--ghost:hover { background: var(--fg); color: var(--btn-fg); opacity: 1; }

.band .btn { background: var(--band-fg); color: var(--fg); }
.band .btn--ghost { background: transparent; color: var(--band-fg); border-color: var(--band-fg); }
.band .btn--ghost:hover { background: var(--band-fg); color: var(--fg); }

.band {
    background: var(--band);
    color: var(--band-fg);
    padding: 32px 0;
}
.band--tall { padding: 64px 0; }
.band .stack { gap: 24px; }
.band a { color: var(--band-fg); }

.feature-band {
    background: var(--soft);
    padding: 56px 0 52px;
}
.feature-band .stack { gap: 24px; }

.ph {
    border: 2px dashed var(--ph-line);
    border-radius: 10px;
    background: var(--ph-ground);
    color: var(--ph-ink);
    padding: 26px 20px;
    text-align: center;
    font-size: 14px;
    line-height: 1.75;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ph--tall { padding: 48px 20px; }
.ph__id {
    align-self: center;
    background: var(--ph-ink);
    color: #FFFFFF;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 2px;
}

.spacer { height: 40px; }


.site-return {
    margin-top: 24px;
    padding: 52px 0 56px;
    border-top: 1px solid var(--hairline);
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    text-align: center;
}
.site-return .btns { justify-content: center; }

.site-footer {
    border-top: 1px solid var(--hairline);
    padding: 28px 0 56px;
    font-size: 15px;
}
.site-footer .c--wide {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: center;
    justify-content: space-between;
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 820px) {
    .hero,
    .cols,
    .feature-cols,
    .usecases { grid-template-columns: 1fr; }

    .hero { gap: 28px; padding-top: 0; }
    .hero__art { justify-content: flex-start; max-width: 200px; }
    .price__main { font-size: 24px; }

    .product-entry {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 24px;
    }
    .product-entry__plate {
        justify-content: flex-start;
        max-width: 180px;
    }

    .masthead { padding: 44px 0 24px; }
    .masthead h1 { font-size: 32px; }

    .hero__copy h2 { font-size: 28px; }
    .lp h2,
    .product-entry__body h2 { font-size: 26px; }
    .lp h3 { font-size: 21px; }

    .site-footer .c--wide { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}
