:root {
  --accent: #0f766e;
  --accent-strong: #0b5f59;
  --accent-deep: #073f3b;
  --accent-soft: #dff5ef;
  --accent-pale: #effaf7;
  --orange: #f59e0b;
  --orange-soft: #fff5dc;
  --bg: #f6f7f4;
  --surface: #ffffff;
  --surface-muted: #f0f4f1;
  --ink: #18201d;
  --muted: #5b6963;
  --line: #d8e1dc;
  --line-strong: #b9c9c1;
  --danger: #b42318;
  --danger-soft: #fff1ef;
  --warning: #8b4c05;
  --warning-soft: #fff7e8;
  --shadow-sm: 0 8px 24px rgba(10, 61, 56, 0.08);
  --shadow-md: 0 22px 64px rgba(10, 61, 56, 0.14);
  --shadow-lg: 0 34px 90px rgba(7, 63, 59, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --shell: 1180px;
  --font: "Noto Sans JP", Meiryo, "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--ink); font-family: var(--font); line-height: 1.75; -webkit-font-smoothing: antialiased; }
body, button, input, select, textarea { font-family: var(--font); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { cursor: pointer; }
h1, h2, h3, p, ul, ol, dl, figure { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.3; letter-spacing: -0.03em; word-break: auto-phrase; line-break: strict; text-wrap: balance; }
h1 { font-size: clamp(2.3rem, 4.6vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.02rem, 1.6vw, 1.3rem); font-weight: 700; }
p, li, dd, small { color: var(--muted); }
p { text-wrap: pretty; }
strong { color: var(--ink); }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

.site-shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-tight { padding: 64px 0 96px; }
.section-tint { background: var(--accent-pale); border-block: 1px solid rgba(15, 118, 110, 0.1); }
.section-dark { background: linear-gradient(160deg, var(--accent-deep) 0%, #09554f 55%, #0b6a60 100%); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark strong { color: #fff; }
.section-dark p, .section-dark li, .section-dark small, .section-dark .section-lead { color: #d2e7e2; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 10000; top: 8px; left: 8px; transform: translateY(-160%); background: #fff; border: 2px solid var(--accent); border-radius: 8px; padding: 10px 14px; }
.skip-link:focus { transform: none; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(246, 247, 244, .94); border-bottom: 1px solid rgba(24, 32, 29, .09); backdrop-filter: blur(16px); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; text-decoration: none; }
.brand img { border-radius: 13px; box-shadow: 0 4px 15px rgba(11, 95, 89, .18); }
.brand span { display: grid; line-height: 1.25; }
.brand strong { font-size: 1.1rem; letter-spacing: .02em; }
.brand small { margin-top: 3px; font-size: .72rem; color: var(--muted); }
.global-nav { display: flex; align-items: center; gap: 22px; }
.global-nav > a:not(.button) { padding: 10px 0; color: #34413c; font-size: .88rem; font-weight: 800; text-decoration: none; border-bottom: 2px solid transparent; }
.global-nav > a:not(.button):hover, .global-nav > a[aria-current="page"] { color: var(--accent-strong); border-color: var(--accent); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 11px; }
.nav-toggle i { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: .2s ease; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 12px 22px; border: 1px solid transparent; border-radius: 12px; font-weight: 900; line-height: 1.2; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, #0f766e 0%, #0b5f59 62%, #084e49 100%); box-shadow: 0 11px 28px rgba(11, 95, 89, .22); }
.button-primary:hover { background: linear-gradient(135deg, #10837a 0%, #0a534e 100%); box-shadow: 0 15px 34px rgba(11, 95, 89, .3); }
.button-secondary { color: var(--ink); background: #fff; border-color: var(--line-strong); }
.button-secondary:hover { color: var(--accent-strong); border-color: var(--accent); }
.button-small { min-height: 40px; padding: 9px 15px; border-radius: 9px; font-size: .82rem; }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--accent-strong); font-weight: 900; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.center-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; }

.eyebrow { position: relative; display: inline-block; margin: 0 0 12px; padding-left: 13px; color: var(--accent); font-size: .77rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; position: absolute; left: 0; top: 50%; width: 4px; height: 76%; transform: translateY(-50%); background: linear-gradient(180deg, var(--accent), #76dacd); border-radius: 4px; }
.section-dark .eyebrow { color: #76dacd; }
.section-heading { max-width: 860px; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading h2::after { content: ""; display: block; width: 58px; height: 5px; margin-top: 18px; background: linear-gradient(90deg, var(--accent), #76dacd); border-radius: 5px; }
.section-heading-center h2::after { margin-inline: auto; }
.section-lead { max-width: 780px; margin-bottom: 0; font-size: clamp(1rem, 1.7vw, 1.14rem); }
.section-heading-center { margin-inline: auto; text-align: center; }
.section-heading-center .section-lead { margin-inline: auto; }

.breadcrumb { padding: 20px 0 0; }
.breadcrumb ol { display: flex; align-items: center; gap: 9px; margin: 0; padding: 0; list-style: none; font-size: .76rem; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 9px; }
.breadcrumb li + li::before { content: "/"; color: #98a49f; }
.breadcrumb a { color: var(--accent-strong); text-decoration: none; }
.breadcrumb span { color: var(--muted); }

.page-hero { padding: 54px 0 86px; overflow: hidden; background: linear-gradient(145deg, #f6f7f4 0%, #effaf7 58%, #fff8e8 100%); }
.page-hero-compact { padding-bottom: 64px; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(290px, .55fr); align-items: center; gap: 70px; }
.page-hero-single { grid-template-columns: minmax(0, 850px); }
.page-hero-copy h1 { max-width: 890px; margin-bottom: 22px; font-size: clamp(2.35rem, 4.6vw, 4.2rem); }
.page-hero-lead { max-width: 790px; margin-bottom: 0; font-size: clamp(1rem, 1.7vw, 1.17rem); line-height: 1.9; }
.page-hero-aside { min-width: 0; }
.page-icon-panel, .support-icon-panel, .company-mark, .page-summary-panel, .faq-count-panel, .price-hero-card, .privacy-gate-card { border: 1px solid rgba(15, 118, 110, .17); background: rgba(255, 255, 255, .83); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.page-icon-panel, .support-icon-panel, .company-mark { display: grid; justify-items: center; gap: 8px; padding: 28px; text-align: center; }
.page-icon-panel img, .support-icon-panel img, .company-mark img { width: min(100%, 230px); border-radius: 28%; box-shadow: var(--shadow-md); }
.page-icon-panel strong, .support-icon-panel strong, .company-mark strong { margin-top: 10px; font-size: 1.1rem; }
.page-icon-panel span, .support-icon-panel span, .company-mark span { color: var(--muted); font-size: .78rem; }
.page-summary-panel { display: grid; gap: 8px; padding: 26px; }
.page-summary-panel strong { margin-bottom: 5px; font-size: 1.05rem; }
.page-summary-panel a { padding: 12px 14px; color: var(--accent-strong); background: var(--accent-pale); border-radius: 10px; font-weight: 800; text-decoration: none; }
.faq-count-panel { display: grid; justify-items: center; padding: 34px 24px; text-align: center; }
.faq-count-panel strong { color: var(--accent-strong); font-size: 4.7rem; line-height: 1; }
.faq-count-panel span { margin-top: 8px; font-weight: 900; }
.faq-count-panel small { margin-top: 14px; line-height: 1.8; }
.price-hero-card { padding: 34px; text-align: center; }
.price-hero-card > span { color: var(--muted); font-size: .8rem; font-weight: 800; }
.price-hero-card > strong { display: block; margin: 12px 0; color: var(--accent-strong); font-size: clamp(2.8rem, 5vw, 4.3rem); line-height: 1; }
.price-hero-card > strong small { font-size: .9rem; }
.price-hero-card p { margin: 0; padding: 10px 14px; color: var(--warning); background: var(--warning-soft); border-radius: 10px; font-weight: 900; }

.home-hero { position: relative; overflow: hidden; padding: 78px 0 88px; background: linear-gradient(145deg, #f6f7f4 0%, #eefaf6 54%, #fff6df 100%); }
.home-hero::before { content: ""; position: absolute; width: 640px; height: 640px; right: -260px; top: -280px; border-radius: 50%; background: rgba(15, 118, 110, .08); }
.home-hero::after { content: ""; position: absolute; width: 420px; height: 420px; left: -190px; bottom: -230px; border-radius: 50%; background: rgba(245, 158, 11, .1); }
.home-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .62fr); align-items: center; gap: 60px; }
.home-hero-copy { min-width: 0; }
.home-hero-copy h1 { max-width: 760px; margin: 0 0 24px; font-size: clamp(2.3rem, 3vw, 2.75rem); line-height: 1.22; font-weight: 900; }
.home-hero-lead { max-width: 720px; margin: 0; font-size: clamp(1rem, 1.6vw, 1.1rem); line-height: 2; font-weight: 500; }
.home-hero-diff { display: flex; align-items: flex-start; gap: 11px; max-width: 720px; margin: 24px 0 0; padding: 14px 18px; color: var(--accent-strong); background: rgba(255, 255, 255, .88); border: 1px solid rgba(15, 118, 110, .22); border-radius: 12px; font-size: .9rem; font-weight: 700; line-height: 1.75; }
.home-hero-diff::before { content: "✓"; flex: 0 0 auto; display: grid; place-items: center; width: 22px; height: 22px; margin-top: 3px; color: #fff; background: var(--accent); border-radius: 50%; font-size: .66rem; }
.home-hero-shot { min-width: 0; }
.home-hero-shot .product-shot-frame { max-width: 370px; margin-inline: auto; border-radius: 30px; }
.home-hero-shot .product-shot figcaption { justify-items: center; text-align: center; padding-inline: 8px; }

.story-problem { background: #fff; border-block: 1px solid var(--line); }
.story-copy { min-width: 0; }
.story-copy-center { max-width: 880px; margin-inline: auto; text-align: center; }
.story-copy-center .story-lead { margin-inline: auto; }
.story-copy h2 { margin: 0 0 18px; font-size: clamp(1.75rem, 3vw, 2.7rem); font-weight: 700; }
.story-lead { margin: 0; font-size: 1.02rem; line-height: 2.05; font-weight: 500; }
.pain-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 50px; }
.pain-grid article { padding: 26px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.pain-grid h3 { margin-bottom: 9px; font-size: .95rem; }
.pain-grid p { margin: 0; font-size: .78rem; line-height: 1.7; }
.story-section { padding: 92px 0; }
.story-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: 84px; }
.story-reverse .story-visual { order: -1; }
.story-visual { min-width: 0; }
.story-shots { display: grid; gap: 22px; align-items: start; }
.story-shots.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.story-shots.one-up { max-width: 380px; margin-inline: auto; }
.story-note { margin: 26px 0 0; padding: 14px 18px; color: var(--accent-strong); background: var(--accent-pale); border-left: 4px solid var(--accent); border-radius: 10px; font-size: .82rem; font-weight: 700; line-height: 1.7; }
.story-flow-shots { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; margin-top: 46px; }
.story-flow-shots .product-shot { width: 100%; max-width: 380px; margin-inline: auto; }
.story-note-center { max-width: 760px; margin-inline: auto; text-align: center; }
/* トップページの実画面は固定フレーム比率でクロップせず、実画像の比率に追従する */
.why-easy { padding: 84px 0 92px; background: linear-gradient(160deg, #eefaf6 0%, #fff6df 100%); border-block: 1px solid rgba(15, 118, 110, .12); }
.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 44px; }
.why-grid article { padding: 30px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.why-grid article > span { color: var(--accent); font-size: .7rem; font-weight: 900; letter-spacing: .08em; }
.why-grid h3 { margin: 12px 0 10px; font-size: 1.12rem; }
.why-grid p { margin: 0; font-size: .82rem; line-height: 1.8; }
.pricing-story { background: #fff; border-block: 1px solid var(--line); }
.pricing-story-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr); align-items: center; gap: 70px; }
.pricing-story-panel { padding: 34px; background: var(--accent-pale); border: 1px solid rgba(15, 118, 110, .2); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.pricing-story-panel .check-list { gap: 13px; }
.pricing-story-panel .store-button-group { margin-top: 24px; }

.trust-strip { background: #fff; border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact-card { min-width: 0; padding: 25px 24px; border-right: 1px solid var(--line); transition: background .18s ease; }
.fact-card:hover { background: var(--accent-pale); }
.fact-card:first-child { border-left: 1px solid var(--line); }
.fact-card strong, .fact-card span, .fact-card small { display: block; }
.fact-card strong { margin-bottom: 5px; color: var(--accent-strong); font-size: 1.1rem; }
.fact-card span { color: var(--ink); font-size: .83rem; font-weight: 900; }
.fact-card small { margin-top: 5px; font-size: .68rem; line-height: 1.55; }

.problem-solution-grid { display: grid; grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr); align-items: stretch; gap: 22px; }
.problem-card, .solution-card { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.problem-card { border-top: 5px solid #a6544d; }
.solution-card { border-top: 5px solid var(--accent); }
.card-kicker { margin-bottom: 8px; font-size: .75rem; font-weight: 900; letter-spacing: .08em; }
.problem-card h3, .solution-card h3 { margin-bottom: 22px; font-size: 1.55rem; }
.problem-card ul, .solution-card ul { display: grid; gap: 10px; margin: 0; padding-left: 20px; }
.flow-arrow { display: grid; place-items: center; }
.flow-arrow span { display: grid; place-items: center; width: 54px; height: 54px; color: #fff; background: var(--accent-strong); border-radius: 50%; font-size: 1.6rem; font-weight: 900; box-shadow: var(--shadow-sm); }

.role-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.role-panel { position: relative; padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.role-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.role-staff { border-top: 5px solid var(--orange); }
.role-owner { border-top: 5px solid var(--accent); }
.role-label span { display: inline-block; margin-bottom: 16px; padding: 6px 11px; color: var(--accent-strong); background: var(--accent-soft); border-radius: 999px; font-size: .72rem; font-weight: 900; }
.role-staff .role-label span { color: var(--warning); background: var(--orange-soft); }
.role-panel h3 { margin-bottom: 20px; font-size: 1.5rem; }
.check-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 27px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .04em; display: grid; place-items: center; width: 19px; height: 19px; color: #fff; background: var(--accent); border-radius: 50%; font-size: .68rem; font-weight: 900; }

.product-shot { min-width: 0; margin: 0; }
.product-shot-frame { position: relative; aspect-ratio: auto; padding: 11px; overflow: hidden; background: #eaf0ed; border: 1px solid var(--line-strong); border-radius: 25px; box-shadow: var(--shadow-md); }
.product-shot-frame > img { width: 100%; height: auto; background: #fff; border-radius: 17px; }
.product-shot figcaption { display: grid; gap: 4px; padding: 15px 4px 0; }
.product-shot figcaption strong { font-size: .88rem; font-weight: 700; }
.product-shot figcaption span { font-size: .74rem; line-height: 1.55; font-weight: 500; }
.product-shot-compact .product-shot-frame { padding: 8px; border-radius: 19px; }
.product-shot-unavailable { display: grid; grid-template-rows: minmax(420px, auto) auto; }
.shot-publication-gate { min-height: 520px; display: grid; place-content: center; justify-items: center; gap: 9px; padding: 28px; text-align: center; color: #71211b; background: repeating-linear-gradient(135deg, #fff9f8 0 18px, #fff1ef 18px 36px); border: 2px dashed #b85c53; border-radius: 25px; box-shadow: var(--shadow-sm); }
.shot-publication-gate img { width: 76px; border-radius: 20px; box-shadow: var(--shadow-sm); }
.gate-kicker { color: var(--danger); font-size: .67rem; font-weight: 900; letter-spacing: .1em; }
.shot-publication-gate > strong { color: var(--danger); font-size: 1rem; }
.shot-publication-gate > span { font-weight: 900; }
.shot-publication-gate code { max-width: 100%; padding: 6px 9px; background: rgba(255, 255, 255, .9); border: 1px solid #edb9b4; border-radius: 7px; font-size: .67rem; word-break: break-all; }
.shot-publication-gate p { max-width: 260px; margin: 3px 0 0; color: #7a332c; font-size: .7rem; line-height: 1.55; }
.shot-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 22px; }
.shot-gallery-featured { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.numbered-process { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.numbered-process li { display: grid; grid-template-columns: 48px 1fr; gap: 15px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.numbered-process-wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.section-dark .numbered-process li { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .15); }
.process-number { display: grid; place-items: center; width: 48px; height: 48px; color: #fff; background: var(--accent); border-radius: 13px; font-size: .75rem; font-weight: 900; }
.numbered-process h3 { margin: 2px 0 6px; font-size: 1.03rem; }
.numbered-process p { margin: 0; font-size: .82rem; line-height: 1.65; }

.condition-grid, .boundary-grid, .policy-grid, .after-publish-grid, .voice-flow-grid, .privacy-check-grid, .support-route-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.condition-grid article, .policy-grid article, .after-publish-grid article, .voice-flow-grid article, .privacy-check-grid article, .support-route-grid article { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.condition-grid article > span, .after-publish-grid article > span, .voice-flow-grid article > span, .support-route-grid article > span { color: var(--accent); font-size: .7rem; font-weight: 900; letter-spacing: .08em; }
.condition-grid h3, .policy-grid h3, .after-publish-grid h3, .voice-flow-grid h2, .privacy-check-grid h3, .support-route-grid h2 { margin: 12px 0 9px; font-size: 1.15rem; }
.condition-grid p, .policy-grid p, .after-publish-grid p, .voice-flow-grid p, .privacy-check-grid p, .support-route-grid p { margin: 0; font-size: .8rem; }
.section-dark .after-publish-grid article, .section-dark .privacy-check-grid article { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .14); box-shadow: none; }
.boundary-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.boundary-card { padding: 25px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.boundary-card > span { display: inline-block; margin-bottom: 12px; padding: 5px 9px; border-radius: 999px; font-size: .67rem; font-weight: 900; }
.boundary-included > span { color: var(--accent-strong); background: var(--accent-soft); }
.boundary-limited > span { color: var(--warning); background: var(--warning-soft); }
.boundary-excluded > span { color: var(--danger); background: var(--danger-soft); }
.boundary-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.boundary-card p { margin: 0; font-size: .78rem; }

.pricing-home { background: #fff; }
.pricing-home-grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; align-items: center; gap: 70px; }
.price-card { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.price-card-featured { border: 2px solid rgba(15, 118, 110, .35); background: linear-gradient(180deg, #ffffff 0%, #f2fbf8 100%); }
.price-card > p:first-child { margin-bottom: 10px; font-weight: 900; }
.price-main { display: flex; align-items: baseline; gap: 8px; margin: 15px 0; }
.price-main strong { color: var(--accent-strong); font-size: 3.9rem; line-height: 1; }
.price-main span, .price-main small { font-size: .78rem; }
.trial-badge, .pricing-trial { padding: 10px 14px; color: var(--warning); background: var(--warning-soft); border-radius: 10px; font-weight: 900; text-align: center; }
.price-note { margin: 18px 0; font-size: .76rem; }
.faq-preview-grid { display: grid; grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr); gap: 64px; align-items: start; }

.faq-list { display: grid; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; }
.faq-item summary { position: relative; display: flex; align-items: center; gap: 10px; padding: 18px 48px 18px 20px; color: var(--ink); font-weight: 900; list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 1.35rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 20px 18px; }
.faq-answer p { margin: 0; font-size: .82rem; }
.faq-category { flex: 0 0 auto; padding: 4px 7px; color: var(--accent-strong); background: var(--accent-soft); border-radius: 999px; font-size: .62rem; }
.section-dark .faq-item { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .15); }
.section-dark .faq-item summary { color: #fff; }

.final-cta { padding: 64px 0; background: linear-gradient(135deg, #dff5ef, #fff2d5); }
.final-cta-inner { display: grid; grid-template-columns: 96px minmax(0, 1fr); align-items: center; gap: 26px 28px; padding: 32px 38px; background: rgba(255, 255, 255, .83); border: 1px solid rgba(15, 118, 110, .18); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.final-cta-inner > img { width: 96px; border-radius: 24px; }
.final-cta-inner > .store-button-group { grid-column: 1 / -1; justify-content: center; }
.final-cta h2 { margin: 0 0 7px; font-size: clamp(1.6rem, 2.4vw, 2.2rem); line-height: 1.32; }
.final-cta p { margin-bottom: 0; }
.cta-stack { display: flex; gap: 10px; }

.feature-chapter { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); align-items: center; gap: 70px; }
.feature-chapter-reverse { grid-template-columns: minmax(0, 1.28fr) minmax(260px, .72fr); }
.feature-chapter-reverse .chapter-copy { order: 2; }
.feature-chapter-reverse .chapter-shots { order: 1; }
.chapter-copy { min-width: 0; }
.chapter-number { margin: 0 0 12px; color: rgba(15, 118, 110, .22); font-size: 4.7rem; font-weight: 900; line-height: 1; letter-spacing: -.06em; }
.chapter-copy h2 { margin-bottom: 18px; }
.chapter-shots { display: grid; gap: 24px; align-items: start; }
.chapter-shots.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.chapter-shots.three-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.chapter-shots.one-up { max-width: 410px; margin-inline: auto; }
.comparison-table-wrap { overflow-x: auto; border: 1px solid rgba(255, 255, 255, .14); border-radius: 16px; }
.comparison-table { width: 100%; min-width: 760px; border-collapse: collapse; background: rgba(255, 255, 255, .05); }
.comparison-table th, .comparison-table td { padding: 15px 17px; border-bottom: 1px solid rgba(255, 255, 255, .11); text-align: left; font-size: .8rem; }
.comparison-table thead th { color: #fff; background: rgba(255, 255, 255, .08); }
.comparison-table tbody th { color: #fff; }
.status { display: inline-flex; padding: 5px 9px; border-radius: 999px; font-size: .65rem; font-weight: 900; }
.status-yes { color: #d7fff7; background: rgba(18, 154, 139, .35); }
.status-no { color: #ffe2de; background: rgba(180, 35, 24, .32); }

.workflow-layout { display: grid; grid-template-columns: 1fr; align-items: start; gap: 38px; }
.workflow-layout-wide { grid-template-columns: 1fr; }
.workflow-shots { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.workflow-shots-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.operational-note { margin-top: 34px; padding: 23px 26px; background: #fff; border-left: 5px solid var(--accent); border-radius: 12px; box-shadow: var(--shadow-sm); }
.operational-note-warning { border-left-color: var(--orange); background: var(--warning-soft); }
.operational-note strong { display: block; margin-bottom: 5px; }
.operational-note p { margin: 0; font-size: .82rem; }

.pricing-grid-full { display: grid; grid-template-columns: 1.15fr .92fr .92fr; align-items: stretch; gap: 22px; }
.pricing-detail-card { display: flex; flex-direction: column; padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.pricing-primary { border: 2px solid rgba(15, 118, 110, .34); box-shadow: var(--shadow-md); }
.pricing-card-head p { margin-bottom: 6px; color: var(--accent); font-size: .72rem; font-weight: 900; }
.pricing-card-head h2 { margin-bottom: 7px; font-size: 1.45rem; }
.pricing-card-head span { color: var(--muted); font-size: .72rem; }
.pricing-amount { display: flex; align-items: baseline; gap: 7px; margin: 22px 0; }
.pricing-amount strong { color: var(--accent-strong); font-size: 3.4rem; line-height: 1; }
.pricing-amount small, .pricing-amount em { color: var(--muted); font-size: .72rem; font-style: normal; }
.pricing-free strong { color: var(--ink); }
.pricing-detail-card .check-list { margin-top: 22px; }
.pricing-legal-note { margin: auto 0 20px; padding-top: 24px; font-size: .7rem; line-height: 1.65; }
.purchase-flow-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 360px); align-items: start; gap: 64px; }
.policy-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.faq-page-layout { display: grid; grid-template-columns: 190px minmax(0, 1fr); align-items: start; gap: 60px; }
.faq-index { position: sticky; top: 100px; display: grid; gap: 5px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); }
.faq-index strong { margin-bottom: 7px; }
.faq-index a { padding: 8px 10px; color: var(--muted); border-radius: 8px; font-size: .76rem; font-weight: 800; text-decoration: none; }
.faq-index a:hover { color: var(--accent-strong); background: var(--accent-soft); }
.faq-sections { display: grid; gap: 58px; }
.faq-category-section { scroll-margin-top: 105px; }
.faq-category-heading { display: flex; align-items: baseline; gap: 13px; margin-bottom: 17px; }
.faq-category-heading span { color: var(--accent); font-size: .72rem; font-weight: 900; }
.faq-category-heading h2 { margin: 0; font-size: 1.65rem; }
.support-cta-strip { padding: 64px 0; color: #fff; background: var(--accent-deep); }
.support-cta-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 40px; }
.support-cta-inner h2 { color: #fff; margin-bottom: 10px; }
.support-cta-inner p { color: #d2e7e2; margin-bottom: 0; }

.support-route-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.support-route-grid article { display: flex; flex-direction: column; }
.support-route-grid .text-link { margin-top: auto; padding-top: 15px; }
.contact-layout, .do-not-send-grid, .company-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); align-items: start; gap: 70px; }
.contact-card, .company-responsibility-card { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.contact-card h2, .company-responsibility-card h2 { margin-bottom: 14px; font-size: 1.5rem; }
.contact-card small { display: block; margin-top: 18px; font-size: .69rem; }
.platform-contact-links { display: grid; gap: 8px; margin-top: 18px; }
.platform-contact-links a { display: flex; justify-content: space-between; gap: 8px; padding: 11px 14px; color: var(--ink); background: var(--tint-soft, #f2f6f4); border: 1px solid var(--line); border-radius: 10px; text-decoration: none; font-size: .8rem; }
.platform-contact-links a:hover { border-color: var(--accent); }
.contact-os-note { margin: 14px 0 0; color: var(--muted); font-size: .7rem; line-height: 1.6; }
.config-publication-gate { display: grid; gap: 8px; padding: 18px; color: #71211b; background: var(--danger-soft); border: 2px dashed #b85c53; border-radius: 12px; }
.config-publication-gate strong { color: var(--danger); }
.config-publication-gate p { margin: 0; color: #7a332c; font-size: .75rem; }
.danger-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.danger-list p { margin: 0; padding: 16px; color: #762d27; background: var(--danger-soft); border: 1px solid #f0c3bf; border-radius: 11px; font-size: .79rem; font-weight: 800; }

.legal-link-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.legal-link-grid a { display: grid; gap: 4px; min-height: 130px; padding: 22px; color: #fff; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); border-radius: 14px; text-decoration: none; }
.legal-link-grid a:hover { border-color: #76dacd; }
.legal-link-grid span { color: #76dacd; font-size: .68rem; font-weight: 900; }
.legal-link-grid strong { color: #fff; }
.legal-link-grid small { color: #c9ded9; font-size: .7rem; }
.legal-link-grid-light a { color: var(--ink); background: #fff; border-color: var(--line); box-shadow: var(--shadow-sm); }
.legal-link-grid-light a:hover { border-color: var(--accent); }
.legal-link-grid-light span { color: var(--accent); }
.legal-link-grid-light strong { color: var(--ink); }
.legal-link-grid-light small { color: var(--muted); }

.company-table { display: grid; margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.company-table div { display: grid; grid-template-columns: 170px minmax(0, 1fr); border-bottom: 1px solid var(--line); }
.company-table div:last-child { border-bottom: 0; }
.company-table dt, .company-table dd { margin: 0; padding: 16px 18px; }
.company-table dt { background: var(--surface-muted); font-size: .75rem; font-weight: 900; }
.company-table dd { color: var(--ink); font-size: .8rem; word-break: break-word; }
.inline-gate { display: inline-block; padding: 6px 9px; color: var(--danger); background: var(--danger-soft); border-radius: 7px; font-size: .68rem; font-weight: 900; }
.company-responsibility-card { position: sticky; top: 100px; }
.company-responsibility-card .check-list { margin-top: 20px; }
.prose-card { max-width: 860px; padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.prose-card h2 { font-size: 1.55rem; }
.legal-platform-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 26px 0; }
.legal-doc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: start; }
.legal-doc { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.legal-doc h2 { margin: 14px 0 10px; font-size: 1.2rem; }
.legal-doc p { font-size: .82rem; line-height: 1.9; }
.legal-doc .card-kicker { margin-bottom: 18px; }
.legal-facts { display: grid; margin: 0 0 18px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.legal-facts div { display: grid; grid-template-columns: 150px minmax(0, 1fr); border-bottom: 1px solid var(--line); }
.legal-facts div:last-child { border-bottom: 0; }
.legal-facts dt { margin: 0; padding: 12px 14px; background: var(--surface-muted); font-size: .72rem; font-weight: 800; }
.legal-facts dd { margin: 0; padding: 12px 14px; color: var(--ink); font-size: .78rem; line-height: 1.8; }
@media (max-width: 860px) { .legal-doc-grid { grid-template-columns: 1fr; } }
.legal-platform-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); display: grid; gap: 10px; align-content: start; }
.legal-platform-card h2 { margin: 0; font-size: 1.3rem; }
.legal-platform-card p { margin: 0; color: var(--muted); font-size: .82rem; }
.legal-platform-card .button { justify-self: start; margin-top: 6px; }
.legal-platform-card small { color: var(--muted); font-size: .68rem; word-break: break-all; }
@media (max-width: 760px) { .legal-platform-grid { grid-template-columns: 1fr; } }

.voice-gate-banner { width: min(calc(100% - 40px), var(--shell)); margin: 22px auto 0; padding: 18px 22px; color: #71211b; background: var(--danger-soft); border: 2px dashed #b85c53; border-radius: 13px; }
.voice-gate-banner strong { color: var(--danger); }
.voice-gate-banner p { margin: 5px 0 0; color: #7a332c; font-size: .78rem; }
.privacy-gate-card { padding: 26px; }
.privacy-gate-card > strong { display: block; margin: 0 0 12px; font-size: 1.2rem; font-weight: 900; letter-spacing: .02em; }
.privacy-gate-card.privacy-gate-approved { border-color: rgba(15, 118, 110, .35); background: linear-gradient(145deg, #fff, #edf9f5); }
.privacy-gate-card.privacy-gate-approved > strong { color: var(--accent-strong); }
.privacy-gate-card ul { margin: 0; padding-left: 20px; }
.privacy-gate-card li { font-size: .76rem; }
.voice-flow-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.not-found { min-height: 72vh; display: grid; place-items: center; padding: 80px 0; }
.not-found-inner { display: grid; justify-items: center; max-width: 720px; text-align: center; }
.not-found img { width: 160px; border-radius: 38px; box-shadow: var(--shadow-md); }
.not-found h1 { margin: 10px 0 14px; }
.not-found .hero-actions { justify-content: center; }

.site-footer { padding: 66px 0 24px; color: #fff; background: #10201c; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 42px; }
.brand-footer strong { color: #fff; }
.brand-footer small { color: #a9c1bb; }
.footer-brand-block > p { max-width: 430px; margin-top: 20px; color: #a9bcb7; font-size: .8rem; }
.footer-column { display: grid; align-content: start; gap: 10px; }
.footer-column > strong { margin-bottom: 5px; color: #fff; }
.footer-column a { color: #a9bcb7; font-size: .76rem; text-decoration: none; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 22px; color: #829a94; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .69rem; }

@media (max-width: 1080px) {
  .global-nav { gap: 14px; }
  .global-nav > a:not(.button) { font-size: .79rem; }
  .shot-gallery, .shot-gallery-featured { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .boundary-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-chapter, .feature-chapter-reverse { gap: 42px; }
  .support-route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.6fr repeat(3, 1fr); gap: 25px; }
}

@media (max-width: 1000px) {
  html { scroll-padding-top: 78px; }
  .section { padding: 78px 0; }
  .section-tight { padding: 48px 0 72px; }
  .header-inner { min-height: 68px; }
  .nav-toggle { display: block; }
  .global-nav { position: fixed; top: 72px; left: 16px; right: 16px; display: none; align-items: stretch; flex-direction: column; gap: 2px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); }
  .global-nav[data-open="true"] { display: flex; }
  .global-nav > a:not(.button) { padding: 11px 12px; border: 0; border-radius: 8px; }
  .global-nav > a[aria-current="page"] { background: var(--accent-soft); }
  .global-nav .button { margin-top: 8px; }
  .nav-toggle[aria-expanded="true"] i:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] i:nth-of-type(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] i:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }
  .preview-banner-inner { align-items: flex-start; flex-direction: column; gap: 2px; }

  .home-hero-grid, .page-hero-grid, .feature-chapter, .feature-chapter-reverse, .workflow-layout, .workflow-layout-wide, .pricing-home-grid, .purchase-flow-grid, .faq-preview-grid, .contact-layout, .do-not-send-grid, .company-layout { grid-template-columns: 1fr; }
  .home-hero { padding-top: 58px; }
  .home-hero-copy h1 { font-size: clamp(2.3rem, 5.2vw, 3rem); line-height: 1.22; }
  .home-hero-shot { max-width: 360px; margin-inline: auto; }
  .story-grid, .pricing-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-reverse .story-visual { order: initial; }
  .pain-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: 42px; }
  .page-hero-aside { max-width: 470px; }
  .feature-chapter-reverse .chapter-copy, .feature-chapter-reverse .chapter-shots { order: initial; }
  .chapter-shots.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .workflow-shots, .workflow-shots-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .numbered-process-wide { grid-template-columns: 1fr; }
  .condition-grid, .policy-grid, .after-publish-grid, .privacy-check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .boundary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid-full { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .faq-page-layout { grid-template-columns: 1fr; gap: 34px; }
  .faq-index { position: static; grid-template-columns: repeat(3, 1fr); }
  .company-responsibility-card { position: static; }
  .legal-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .voice-flow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .final-cta-inner { grid-template-columns: 86px 1fr; }
  .final-cta-inner > .button, .final-cta-inner > .cta-stack { grid-column: 1 / -1; justify-self: center; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .site-shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding: 64px 0; }
  .section-heading { margin-bottom: 34px; }
  h1 { font-size: clamp(2.15rem, 11vw, 3.25rem); }
  h2 { font-size: clamp(1.48rem, 7vw, 2rem); }
  .brand small { display: none; }
  .home-hero { padding: 42px 0 60px; }
  .home-hero-copy h1 { font-size: clamp(1.25rem, 5.4vw, 1.45rem); line-height: 1.28; }
  .home-hero-lead { font-size: .95rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .home-hero-diff { font-size: .82rem; }
  .pain-grid { grid-template-columns: 1fr; }
  .story-section { padding: 64px 0; }
  .story-copy h2 { font-size: 1.55rem; }
  .story-shots.two-up { grid-template-columns: 1fr; }
  .story-shots.one-up, .story-shots.two-up { max-width: 300px; margin-inline: auto; }
  .story-flow-shots { grid-template-columns: 1fr; gap: 34px; }
  .pricing-story-grid { gap: 34px; }
  .trust-grid { grid-template-columns: 1fr; }
  .fact-card, .fact-card:first-child { border-left: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .problem-solution-grid { grid-template-columns: 1fr; }
  .flow-arrow span { transform: rotate(90deg); }
  .role-grid { grid-template-columns: 1fr; }
  .shot-gallery, .shot-gallery-featured { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; }
  .shot-publication-gate { min-height: 390px; padding: 16px 10px; }
  .shot-publication-gate img { width: 58px; }
  .shot-publication-gate p { display: none; }
  .shot-publication-gate code { font-size: .57rem; }
  .product-shot figcaption span { display: none; }
  .numbered-process li { grid-template-columns: 42px 1fr; padding: 17px; gap: 12px; }
  .process-number { width: 42px; height: 42px; }
  .condition-grid, .policy-grid, .after-publish-grid, .privacy-check-grid, .support-route-grid, .voice-flow-grid { grid-template-columns: 1fr; }
  .boundary-grid { grid-template-columns: 1fr; }
  .pricing-home-grid { gap: 38px; }
  .price-card { padding: 27px; }
  .chapter-shots.two-up, .chapter-shots.three-up { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; }
  .workflow-shots, .workflow-shots-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; }
  .page-hero h1 { font-size: clamp(2rem, 9.2vw, 2.9rem); }
  .page-icon-panel, .support-icon-panel, .company-mark { padding: 22px; }
  .faq-index { grid-template-columns: repeat(2, 1fr); }
  .support-cta-inner { grid-template-columns: 1fr; }
  .support-cta-inner .button { width: 100%; }
  .danger-list { grid-template-columns: 1fr; }
  .legal-link-grid { grid-template-columns: 1fr; }
  .company-table div { grid-template-columns: 1fr; }
  .company-table dt { padding-bottom: 6px; }
  .company-table dd { padding-top: 7px; }
  .final-cta-inner { grid-template-columns: 1fr; justify-items: center; padding: 28px 22px; text-align: center; }
  .final-cta-inner > img { width: 86px; }
  .cta-stack { width: 100%; display: grid; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand-block { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* Production-status label used for implemented features whose marketing disclosure is not yet approved. */
.status-limited { color: #fff0bc; background: rgba(161, 92, 7, .48); }

.voice-summary-section { padding-top: 0; }
.voice-summary-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 34px 38px;
  color: #f5fffc;
  background: linear-gradient(135deg, #0b5f59, #073f3c);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.voice-summary-panel h2 { max-width: 820px; margin: 0 0 12px; color: #fff; font-size: clamp(1.65rem, 3vw, 2.65rem); }
.voice-summary-panel p:not(.eyebrow) { max-width: 850px; margin: 0; color: #d9efea; }
.voice-summary-panel .eyebrow { color: #9fe1d5; }
.voice-summary-actions { min-width: 220px; }
.voice-summary-actions .button { width: 100%; background: #fff; }

@media (max-width: 760px) {
  .voice-summary-panel { grid-template-columns: 1fr; padding: 28px 24px; }
  .voice-summary-actions { min-width: 0; }
}

/* App Store / Google Play dual-platform presentation */
.store-button-group { display: flex; flex-wrap: wrap; gap: 10px; }
.store-button { min-width: 184px; }
.store-button-platform { display: inline-flex; align-items: center; padding: 4px 7px; color: inherit; background: rgba(255, 255, 255, .16); border-radius: 6px; font-size: .58rem; font-weight: 900; letter-spacing: .05em; white-space: nowrap; }
.store-button-google.button-secondary .store-button-platform { color: var(--accent-strong); background: var(--accent-soft); }
.store-button-disabled { cursor: not-allowed; opacity: .66; transform: none !important; box-shadow: none; }
.store-button-disabled small { color: currentColor; font-size: .58rem; font-weight: 900; }
.global-nav .store-button { min-width: 0; }
.global-nav .store-button-platform { display: none; }
.footer-pending { color: #a9bcb7; font-size: .76rem; }

.platform-pricing-grid,
.platform-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: 24px; }
.pricing-pending,
.platform-detail-pending { border: 2px dashed #d39a52; background: linear-gradient(145deg, #fff, var(--warning-soft)); }
.store-data-gate { display: grid; gap: 7px; margin: 20px 0; padding: 20px; color: #702d22; background: var(--danger-soft); border: 2px dashed #c56a60; border-radius: 13px; }
.store-data-gate > span { color: var(--danger); font-size: .62rem; font-weight: 900; letter-spacing: .08em; }
.store-data-gate strong { color: var(--danger); }
.store-data-gate p { margin: 0; color: #7a332c; font-size: .74rem; }
.store-fact-list { display: grid; margin: 20px 0 24px; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; }
.store-fact-list div { display: grid; grid-template-columns: minmax(110px, .38fr) minmax(0, 1fr); border-bottom: 1px solid var(--line); }
.store-fact-list div:last-child { border-bottom: 0; }
.store-fact-list dt,
.store-fact-list dd { margin: 0; padding: 12px 14px; font-size: .72rem; }
.store-fact-list dt { color: var(--ink); background: var(--surface-muted); font-weight: 900; }
.store-fact-list dd { color: var(--ink); overflow-wrap: anywhere; }
.store-fact-list a { color: var(--accent-strong); font-weight: 900; }
.pricing-trial { margin-bottom: 18px; padding: 11px 14px; color: var(--warning); background: var(--warning-soft); border-radius: 10px; font-size: .78rem; font-weight: 900; text-align: center; }
.price-hero-platforms { display: grid; gap: 12px; }
.price-hero-platforms article { padding: 21px; background: rgba(255, 255, 255, .88); border: 1px solid rgba(15, 118, 110, .18); border-radius: 17px; box-shadow: var(--shadow-sm); }
.price-hero-platforms span { display: block; color: var(--accent); font-size: .68rem; font-weight: 900; }
.price-hero-platforms strong { display: block; margin: 7px 0; color: var(--accent-strong); font-size: 1.75rem; line-height: 1.2; }
.price-hero-platforms strong small { margin-left: 5px; color: var(--muted); font-size: .68rem; }
.price-hero-platforms p { margin: 0; font-size: .7rem; }
.platform-data-pending { border-color: #d39a52 !important; background: var(--warning-soft) !important; }
.platform-shot-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }

.platform-hero-card { display: grid; gap: 14px; }
.platform-hero-card > div { padding: 25px; background: rgba(255, 255, 255, .88); border: 1px solid rgba(15, 118, 110, .18); border-radius: 18px; box-shadow: var(--shadow-sm); }
.platform-hero-card span { display: block; color: var(--accent); font-size: .66rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.platform-hero-card strong { display: block; margin: 7px 0; font-size: 1.55rem; }
.platform-hero-card small { display: block; font-size: .72rem; }
.platform-detail-card { display: flex; flex-direction: column; padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.platform-detail-card header { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.platform-detail-card header span { color: var(--accent); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.platform-detail-card header h2 { margin: 6px 0 0; font-size: 1.65rem; }
.platform-detail-card > .button { margin-top: auto; }
.platform-screenshot-matrix { display: grid; gap: 72px; }
.platform-screenshot-matrix > section > h3 { margin-bottom: 24px; font-size: 1.5rem; }
.platform-comparison-table td { min-width: 160px; }

@media (max-width: 1080px) {
  .global-nav .store-button { padding-inline: 11px; font-size: .72rem; }
  .global-nav { gap: 10px; }
}

@media (max-width: 1000px) {
  .global-nav .store-button { width: 100%; }
  .global-nav .store-button-platform { display: inline-flex; }
  .platform-pricing-grid,
  .platform-detail-grid { grid-template-columns: 1fr; }
  .price-hero-platforms { max-width: 560px; }
  .final-cta-inner > .store-button-group { grid-column: 1 / -1; justify-content: center; }
}

@media (max-width: 620px) {
  .store-button-group { display: grid; width: 100%; }
  .store-button { width: 100%; min-width: 0; }
  .platform-shot-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .platform-detail-card { padding: 24px 18px; }
  .store-fact-list div { grid-template-columns: 1fr; }
  .store-fact-list dt { padding-bottom: 5px; }
  .store-fact-list dd { padding-top: 7px; }
  .platform-screenshot-matrix { gap: 48px; }
}
