/* Beeem — brand tokens from the text-only wordmark (#7C6FD0→#F2929C)
   歴史的経緯でトークン名は --indigo のままだが、値はキットの violet。 */
:root {
  --bg: #FAF9F7;
  --surface: #FFFFFF;
  --ink: #24222D;
  --muted: #6F6D7C;
  --line: rgba(36, 34, 45, 0.1);
  --hover: rgba(36, 34, 45, 0.05);
  --indigo: #7C6FD0;
  --indigo-600: #6A5CC7;
  --indigo-soft: rgba(124, 111, 208, 0.12);
  --pink: #F2929C;
  --grad: linear-gradient(96deg, #9A86E8, #F2929C);
  --ok: #63A375;

  --radius: 20px;
  --radius-sm: 12px;
  --gap: 24px;
  --maxw: 1040px;
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  /* Fredoka はブランドの瞬間だけ（ロゴ・シーン・英語製品名・数字）。和文はJPフォールバック */
  --font-round: ui-rounded, "SF Pro Rounded", system-ui, -apple-system, "Hiragino Sans", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141319;
    --surface: #1D1C24;
    --ink: #E9E8EE;
    --muted: #9B98A6;
    --line: rgba(233, 232, 238, 0.12);
    --hover: rgba(233, 232, 238, 0.06);
    --indigo: #9A86E8;
    --indigo-600: #AC9BF0;
    --indigo-soft: rgba(154, 134, 232, 0.16);
    --ok: #7CBF8C;
  }
}

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

a { color: var(--indigo); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible,
button:focus-visible { outline: 2px solid var(--indigo); outline-offset: 2px; border-radius: 6px; }

/* ---- header ---- */
.site-head {
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-head .wrap { display: flex; align-items: center; gap: 20px; height: 64px; }
.brand { display: inline-flex; align-items: center; }
.brand:hover { text-decoration: none; }
.brand > svg { display: none; }
.brand-wordmark { display: block; width: 84px; height: auto; }
.brand-word {
  font-family: var(--font-round);
  font-weight: 600; font-size: 21px; line-height: 1; letter-spacing: 0.01em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.nav { margin-left: auto; display: flex; align-items: center; gap: 22px; font-size: 14px; }
.nav a { color: var(--muted); transition: color 0.16s var(--ease); }
.nav a:hover { color: var(--ink); text-decoration: none; }
.nav .nav-account { font-weight: 600; }
.nav .nav-download {
  padding: 8px 14px; border-radius: 999px;
  background: var(--ink); color: var(--bg);
  font-weight: 650; line-height: 1.2;
}
.nav .nav-download:hover { color: var(--bg); opacity: 0.82; }
.twin-page .site-head,
.voice-page .site-head { position: relative; }
.twin-page .site-head .nav-download,
.voice-page .site-head .nav-download { display: none; }
@media (max-width: 980px) { .nav { gap: 14px; font-size: 13px; } }
@media (max-width: 760px) {
  .site-head .wrap { gap: 10px; padding-inline: 14px; }
  .nav { display: flex; gap: 11px; font-size: 12px; }
  .nav .nav-product[href="/#pricing"] { display: none; }
  .nav .nav-download { padding: 7px 11px; }
}
@media (max-width: 520px) { .nav .nav-product { display: none; } }

/* ---- hero ---- */
.hero { padding: 72px 0 68px; overflow: hidden; }
.hero-grid { display: grid; gap: 44px; align-items: center; }
@media (min-width: 880px) { .hero-grid { grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr); } }
.hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-round);
  font-size: clamp(30px, 5.4vw, 46px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
  word-break: auto-phrase;
}
.hero p { margin: 0; max-width: 62ch; color: var(--muted); font-size: 17px; }
.hero .hero-cta { margin-top: 28px; }
.hero .hero-cta .btn { min-width: 190px; }
.hero .hero-note { margin-top: 12px; font-size: 13px; line-height: 1.6; }
.hero-account {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.hero-account a { font-weight: 650; }
.hero .hero-manifesto { margin-top: 22px; }
.hero .hero-manifesto .more-link { display: inline; line-height: 1.8; }

.hero-preview { min-width: 0; margin: 0; }
.hero-preview img {
  display: block;
  width: 112%;
  max-width: none;
  height: auto;
  border-radius: 20px;
}
@media (max-width: 879px) {
  .hero { padding-top: 56px; }
  .hero-preview { max-width: 680px; }
  .hero-preview img { width: 100%; }
}
@media (max-width: 520px) {
  .hero { padding: 44px 0 52px; }
  .hero-grid { gap: 32px; }
  .hero .hero-cta { display: grid; }
  .hero .hero-cta .btn { width: 100%; }
  .hero-preview img { border-radius: 14px; }
}

/* ---- Manifesto illustration (independent from the Beeem logo) ---- */
.scene {
  position: relative; width: 100%; max-width: 300px; height: 300px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(120% 130% at 26% 14%, #3A2F66 0%, #2C2550 70%);
  border-radius: 32px;
}
.scene .ufo { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); animation: scene-hover 2.6s ease-in-out infinite; }
@keyframes scene-hover { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-5px); } }
.scene .beam { animation: scene-beam 1.5s ease-in-out infinite; }
@keyframes scene-beam { 0%, 100% { opacity: 0.32; } 50% { opacity: 0.6; } }
.scene .word {
  position: absolute; top: 176px; left: 0; right: 0; text-align: center;
  font-family: var(--font-round); font-weight: 600;
  font-size: 56px; line-height: 1; white-space: nowrap;
}
.scene .word span {
  display: inline-block;
  background: linear-gradient(96deg, #9A86E8, #F2929C);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: scene-abduct 2.6s cubic-bezier(0.5, 0, 0.6, 1) infinite;
}
.scene .word span:nth-child(1) { --dx: 44px; animation-delay: 0s; }
.scene .word span:nth-child(2) { --dx: 23px; animation-delay: 0.16s; }
.scene .word span:nth-child(3) { --dx: 6px; animation-delay: 0.32s; }
.scene .word span:nth-child(4) { --dx: -13px; animation-delay: 0.48s; }
.scene .word span:nth-child(5) { --dx: -38px; animation-delay: 0.64s; }
@keyframes scene-abduct {
  0% { transform: translate(0, 16px); opacity: 0; }
  7% { transform: translate(0, 0); opacity: 1; }
  46% { transform: translate(0, 0); opacity: 1; }
  70% { transform: translate(var(--dx), -112px) scale(0.16); opacity: 0; }
  100% { transform: translate(var(--dx), -112px) scale(0.16); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .scene .ufo, .scene .beam, .scene .word span { animation: none; }
  .scene .word span { opacity: 1; transform: none; }
}

/* ---- section ---- */
section { padding: 56px 0; border-top: 1px solid var(--line); }
.eyebrow {
  display: inline-block; margin: 0 0 10px;
  font-size: 12px; font-weight: 650; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
h2 { margin: 0 0 8px; font-family: var(--font-round); font-size: 26px; line-height: 1.4; letter-spacing: -0.015em; font-weight: 700; }
h3 { margin: 0 0 8px; font-family: var(--font-round); font-size: 17px; font-weight: 650; }
.lead { margin: 0 0 24px; max-width: 66ch; color: var(--muted); }

/* ---- product ---- */
.product { display: grid; grid-template-columns: 1fr; gap: 28px; }
.product + .product { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--line); }
.product-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.product-head h2, .product-head h1 { margin: 0; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600; line-height: 1.6;
  border: 1px solid var(--line); color: var(--muted); background: var(--surface);
}
.badge-live { color: var(--ok); border-color: color-mix(in srgb, var(--ok) 38%, var(--line)); }
.badge-live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }
.badge-early { color: var(--indigo-600); background: var(--indigo-soft); border-color: color-mix(in srgb, var(--indigo) 24%, var(--line)); }
@media (prefers-color-scheme: dark) { .badge-early { color: #C9BCF5; } }

.features { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
@media (min-width: 760px) { .features { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.features li { display: flex; gap: 10px; align-items: flex-start; }
.features svg { flex: none; margin-top: 4px; color: var(--indigo); }
.features b { display: block; font-weight: 650; }
.features span { color: var(--muted); font-size: 14px; }

.trust-grid { display: grid; gap: 12px; }
.trust-grid > div { padding: 18px 20px; border-radius: var(--radius-sm); background: var(--surface); }
.trust-grid b { display: block; margin-bottom: 3px; font-size: 14px; font-weight: 650; }
.trust-grid span { display: block; color: var(--muted); font-size: 13px; line-height: 1.65; }
@media (min-width: 760px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }

.req {
  margin: 0; padding: 16px 20px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 14px; color: var(--muted);
}
.req b { color: var(--ink); font-weight: 650; }

/* ---- pricing ---- */
.plans { display: grid; gap: 20px; }
@media (min-width: 760px) { .plans { grid-template-columns: 1fr 1fr; } }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column;
}
.plan .price { margin: 14px 0 4px; font-size: 32px; font-weight: 700; letter-spacing: -0.02em; }
.plan .price small { font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0; font-family: inherit; }
.plan .note { margin: 0 0 20px; font-size: 13px; color: var(--muted); }
.plan ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 9px; font-size: 14px; }
.plan ul li { display: flex; gap: 9px; align-items: flex-start; }
.plan ul svg { flex: none; margin-top: 4px; color: var(--ok); }
.plan .cta { margin-top: auto; }
.cta-stack { display: grid; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px 22px;
  border-radius: 999px; border: 1px solid transparent;
  background: var(--grad); color: #fff;
  font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer;
  box-shadow: 0 2px 8px rgba(124, 111, 208, 0.24);
  transition: filter 0.16s var(--ease);
}
.btn:hover { filter: brightness(1.05); text-decoration: none; }
.btn-quiet { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: none; }
.btn-quiet:hover { background: var(--hover); filter: none; }
.btn[aria-disabled="true"] { background: var(--hover); color: var(--muted); cursor: not-allowed; border-color: var(--line); box-shadow: none; }
.btn[aria-disabled="true"]:hover { background: var(--hover); transform: none; }

.tax-note { margin: 20px 0 0; font-size: 13px; color: var(--muted); }
.release-meta { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.release-meta code { color: inherit; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; overflow-wrap: anywhere; }

/* ---- faq ---- */
.faq { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  padding: 16px 22px; cursor: pointer; font-weight: 600; list-style: none;
  display: flex; align-items: center; gap: 12px;
  transition: background 0.16s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--hover); }
.faq summary svg { flex: none; margin-left: auto; color: var(--muted); transition: transform 0.2s var(--ease); }
.faq details[open] summary svg { transform: rotate(180deg); }
.faq .answer { padding: 0 22px 18px; color: var(--muted); font-size: 15px; }
.faq .answer p { margin: 0 0 8px; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---- footer ---- */
.site-foot { border-top: 1px solid var(--line); padding: 40px 0 56px; color: var(--muted); font-size: 14px; }
.foot-row { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.foot-links { display: flex; flex-wrap: wrap; gap: 20px; }
.foot-links a { color: var(--muted); }
.foot-links a:hover { color: var(--ink); }
.copy { margin: 24px 0 0; font-size: 13px; }

/* ---- legal pages ---- */
.legal { padding: 48px 0 72px; }
.legal h1 { font-family: var(--font-round); font-size: 28px; letter-spacing: -0.02em; margin: 0 0 8px; }
.legal .updated { margin: 0 0 36px; color: var(--muted); font-size: 14px; }
.legal h2 { font-size: 18px; margin: 36px 0 10px; }
.legal p, .legal li { color: var(--ink); }
.legal ul, .legal ol { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
.legal th, .legal td { text-align: left; vertical-align: top; padding: 12px 14px; border: 1px solid var(--line); }
.legal th { width: 30%; background: var(--surface); font-weight: 650; }
@media (max-width: 640px) {
  .legal th, .legal td { display: block; width: 100%; }
  .legal th { border-bottom: 0; }
  .legal td { border-top: 0; }
}
.todo {
  background: var(--indigo-soft); border-radius: 6px; padding: 1px 7px;
  font-weight: 650; color: var(--indigo-600);
}
@media (prefers-color-scheme: dark) { .todo { color: #C9BCF5; } }
.back { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 28px; font-size: 14px; color: var(--muted); }
.back:hover { color: var(--ink); text-decoration: none; }

/* ---- product pages ---- */
.page-hero { padding: 64px 0 56px; }
.page-hero h1 {
  margin: 0 0 16px;
  font-family: var(--font-round);
  font-size: clamp(28px, 4.6vw, 40px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.page-hero .lead { margin: 0; max-width: 64ch; font-size: 17px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-cta .btn { width: auto; }

.shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #2C2550;
}
.shot img { display: block; width: 100%; height: auto; }
.shot-note { margin: 10px 0 0; font-size: 13px; color: var(--muted); }

.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; gap: 18px; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(5, 1fr); gap: 20px; } }
.steps li { counter-increment: step; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block; margin-bottom: 6px;
  font-family: var(--font-round);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--indigo);
}
.steps b { display: block; font-weight: 650; margin-bottom: 2px; }
.steps span { color: var(--muted); font-size: 14px; }

.diagram {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px;
}
.diagram svg { display: block; width: 100%; height: auto; }

.more-link { display: inline-flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 600; }

.plan-solo { max-width: 460px; }

/* ---- feature showcase (screenshot-rich rows) ---- */
.showcase { display: grid; gap: 44px; margin-top: 28px; }
.show-row { display: grid; gap: 20px; align-items: center; }
@media (min-width: 880px) {
  .show-row { grid-template-columns: 5fr 7fr; gap: 44px; }
  .show-row.flip .show-text { order: 2; }
  .show-row.flip .shot { order: 1; }
}
.show-text h3 { margin: 0 0 8px; font-size: 19px; }
.show-text p { margin: 0; color: var(--muted); font-size: 15px; }
.shot-hero { margin: 0 0 10px; }

/* ---- manifesto ---- */
.manifesto-hero { display: grid; gap: 40px; align-items: center; }
@media (min-width: 880px) { .manifesto-hero { grid-template-columns: 1fr 300px; } }
.prose { max-width: 68ch; }
.prose h2 { margin: 44px 0 14px; font-size: 21px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 16px; font-size: 16.5px; line-height: 1.95; }
.prose b { font-weight: 650; }
.closing {
  margin: 52px 0 0; padding-top: 36px; border-top: 1px solid var(--line);
  font-family: var(--font-round); font-weight: 700;
  font-size: clamp(22px, 3.2vw, 28px); line-height: 1.7; letter-spacing: -0.02em;
}

/* ── product app icons(実アプリと同じアート) ── */
.app-icon { display:block; border-radius: 22.5%; box-shadow: 0 6px 22px rgba(26,20,51,0.35); }
.product-head .app-icon, .hero-app-icon { flex-shrink: 0; }
.hero-icon-row { display:flex; align-items:center; gap:18px; margin-bottom: 14px; }
.plan .app-icon { margin-bottom: 12px; }
.plan .product-head .app-icon { margin-bottom: 0; }

/* ---- lineup (registry-driven) ---- */
@media (min-width: 960px) { .plans-3 { grid-template-columns: repeat(3, 1fr); } }
.foot-statement { margin: 18px 0 6px; color: var(--muted); font-size: 13px; }

/* ---- 2026 product story ---- */
.section-roomy { padding-block: 80px; }
.section-soft {
  background: color-mix(in srgb, var(--surface) 66%, var(--bg));
}
.narrow-wrap { max-width: 780px; }
.hero-home { padding-block: 84px; }
.product-picker {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}
@media (min-width: 860px) {
  .product-picker { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.product-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 20px 50px rgba(36, 34, 45, 0.07);
}
.product-card-voice {
  background: linear-gradient(145deg, color-mix(in srgb, var(--indigo-soft) 62%, var(--surface)), var(--surface) 50%);
}
.product-card-copy { padding: 4px 4px 20px; }
.product-card-title { display: flex; align-items: center; gap: 14px; }
.product-card-title span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-card-title h3 { margin: 0; font-size: 20px; }
.product-card h4 {
  margin: 28px 0 10px;
  font-family: var(--font-round);
  font-size: clamp(27px, 4vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.product-card-copy > p { margin: 0; color: var(--muted); }
.mini-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.mini-tags span {
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}
.product-card-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #141319;
}
.product-card-shot img { display: block; width: 100%; height: auto; }
.product-card-actions { display: grid; gap: 12px; margin-top: 18px; }
.product-card-actions .more-link { justify-content: center; }
.product-card > .release-meta { margin-left: 2px; }

.story-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
@media (min-width: 760px) {
  .story-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.story-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.story-grid-large article { min-height: 220px; }
.story-number {
  display: block;
  margin-bottom: 30px;
  color: var(--indigo);
  font-family: var(--font-round);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.story-grid h3 { font-size: 20px; }
.story-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.plans-compact { margin-top: 28px; }
.plans-compact .plan { min-height: 330px; }
.plan-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan .check { flex: none; color: var(--ok); font-weight: 700; }

.plan-comparison {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}
.plan-comparison table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.plan-comparison th,
.plan-comparison td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.plan-comparison thead th {
  vertical-align: bottom;
  text-align: center;
}
.plan-comparison thead th:first-child {
  width: 50%;
  color: var(--muted);
  text-align: left;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
}
.plan-comparison thead strong,
.plan-comparison thead small,
.plan-comparison thead em { display: block; }
.plan-comparison thead strong {
  margin-top: 5px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.plan-comparison thead small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}
.plan-comparison thead em {
  margin-top: 10px;
  color: var(--indigo);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}
.plan-comparison tbody th {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
}
.plan-comparison tbody th b,
.plan-comparison tbody th span { display: block; }
.plan-comparison tbody th b { font-weight: 650; }
.plan-comparison tbody th span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}
.plan-comparison tbody td {
  border-left: 1px solid var(--line);
  text-align: center;
}
.plan-comparison .comparison-group th {
  padding: 12px 20px;
  background: color-mix(in srgb, var(--ink) 3%, var(--surface));
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan-comparison .comparison-group-plus th {
  background: color-mix(in srgb, var(--indigo-soft) 62%, var(--surface));
  color: var(--indigo-600);
}
.plan-comparison tr:last-child th,
.plan-comparison tr:last-child td { border-bottom: 0; }
.plan-comparison .plus-column {
  background: color-mix(in srgb, var(--indigo-soft) 48%, var(--surface));
}
.comparison-check {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--indigo-soft);
  color: var(--indigo-600);
  font-size: 14px;
  font-weight: 800;
}
.comparison-dash { color: color-mix(in srgb, var(--muted) 45%, transparent); }
.plan-comparison-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.plan-comparison-actions .btn { flex: 1 1 0; }

@media (max-width: 600px) {
  .plan-comparison { border-radius: 18px; }
  .plan-comparison th,
  .plan-comparison td { padding: 14px 9px; }
  .plan-comparison thead th:first-child { width: 48%; }
  .plan-comparison thead strong { font-size: 20px; }
  .plan-comparison .plan-label { font-size: 9px; letter-spacing: 0.04em; }
  .plan-comparison thead em { font-size: 9px; }
  .plan-comparison tbody th { font-size: 12px; }
  .plan-comparison tbody th span { font-size: 10px; line-height: 1.45; }
  .plan-comparison .comparison-group th { padding: 10px 9px; font-size: 9px; }
  .comparison-check { width: 24px; height: 24px; }
  .plan-comparison-actions { display: grid; }
}

.disclosure {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.disclosure summary {
  position: relative;
  padding: 15px 48px 15px 18px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 650;
}
.disclosure summary::-webkit-details-marker { display: none; }
.disclosure summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  transform: translateY(-50%);
}
.disclosure[open] summary::after { content: "−"; }
.disclosure-body {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 13px;
}
.disclosure-body p { margin: 0 0 10px; }
.disclosure-body p:last-child { margin-bottom: 0; }

.start-section { padding-block: 72px; }
.start-band {
  display: grid;
  gap: 30px;
  align-items: center;
  padding: 38px;
  border: 1px solid color-mix(in srgb, var(--indigo) 24%, var(--line));
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 10%, color-mix(in srgb, var(--indigo) 16%, transparent), transparent 48%),
    radial-gradient(circle at 92% 90%, color-mix(in srgb, var(--pink) 14%, transparent), transparent 44%),
    var(--surface);
}
@media (min-width: 820px) {
  .start-band { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr); }
}
.start-band h2 { font-size: clamp(26px, 4vw, 36px); }
.start-band p { margin: 8px 0 0; color: var(--muted); }
.start-actions { display: grid; gap: 10px; }
.text-action { display: block; padding: 7px 4px; text-align: center; font-size: 14px; font-weight: 650; }

.product-page-hero { padding-block: 72px; }
.product-hero-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) {
  .product-hero-grid { grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr); }
}
.product-lockup { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.product-lockup .eyebrow { display: block; margin: 0 0 3px; }
.product-lockup strong { display: block; font-family: var(--font-round); font-size: 17px; }
.product-hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--font-round);
  font-size: clamp(34px, 4.6vw, 46px);
  line-height: 1.22;
  letter-spacing: -0.035em;
}
.product-hero-copy .lead { font-size: 17px; }
.product-hero-copy .hero-note { margin: 9px 0 0; color: var(--muted); font-size: 12px; }
.product-hero-shot {
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(36, 34, 45, 0.14);
}
@media (prefers-color-scheme: dark) {
  .product-hero-shot, .product-card { box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22); }
}

.screens-section { overflow: hidden; }
.screen-story { display: grid; gap: 22px; align-items: center; }
@media (min-width: 900px) {
  .screen-story { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
  .screen-story-main { transform: translateX(-3%); }
  .screen-story-side { transform: translateX(3%); }
}
.shot figcaption {
  padding: 12px 15px;
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
}

.workspace-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}
@media (min-width: 760px) {
  .workspace-map { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.workspace-map article { padding: 22px; background: var(--surface); }
.workspace-map b { display: block; font-family: var(--font-round); font-size: 18px; }
.workspace-map span { color: var(--muted); font-size: 13px; }
.section-note { margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.trust-grid-roomy { margin-top: 28px; }
.trust-grid-roomy > div { border: 1px solid var(--line); }

/* ---- Product local navigation ---- */
.product-local-nav {
  position: sticky;
  top: 0;
  z-index: 9;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
}
.product-local-nav .wrap {
  display: flex;
  height: 50px;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}
.product-local-name {
  color: var(--ink);
  font-family: var(--font-round);
  font-size: 14px;
  font-weight: 700;
}
.product-local-name:hover { text-decoration: none; }
.product-local-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  font-size: 12px;
}
.product-local-links a { color: var(--muted); }
.product-local-links a:hover { color: var(--ink); text-decoration: none; }
.product-local-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(124, 111, 208, 0.2);
}
.product-local-cta:hover { color: #fff; text-decoration: none; filter: brightness(1.04); }
.voice-page-section,
.product-page-section { scroll-margin-top: 50px; }
.voice-product-shot,
.product-unframed-shot {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: transparent;
}
.voice-product-shot img,
.product-unframed-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}
.voice-hero-points,
.product-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 20px;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  list-style: none;
}
.voice-hero-points li,
.product-hero-points li { display: flex; align-items: center; gap: 7px; }
.voice-hero-points li::before,
.product-hero-points li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: none;
  border-radius: 50%;
  background: var(--indigo);
}
.voice-demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}
.voice-demo-copy { padding: 30px; }
.voice-demo-label {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
}
.voice-demo-copy p {
  margin: 0;
  font-family: var(--font-round);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 650;
  line-height: 1.75;
}
.voice-demo-result {
  border-left: 1px solid var(--line);
  background: color-mix(in srgb, var(--indigo-soft) 48%, var(--surface));
}
.voice-demo-result .voice-demo-label { color: var(--indigo-600); }
.voice-demo-transition {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  color: var(--muted);
}
.voice-demo-transition b { font-size: 18px; font-weight: 500; }
.voice-demo-wave { display: flex; height: 25px; align-items: center; gap: 3px; }
.voice-demo-wave span {
  width: 3px;
  border-radius: 999px;
  background: var(--indigo);
}
.voice-demo-wave span:nth-child(1),
.voice-demo-wave span:nth-child(5) { height: 9px; }
.voice-demo-wave span:nth-child(2),
.voice-demo-wave span:nth-child(4) { height: 17px; }
.voice-demo-wave span:nth-child(3) { height: 25px; }
.voice-wide-shot,
.twin-wide-shot { margin-top: 34px; border-radius: 24px; }
.voice-destinations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
  border-block: 1px solid var(--line);
}
.voice-destinations article { min-width: 0; padding: 24px; }
.voice-destinations article + article { border-left: 1px solid var(--line); }
.voice-destinations article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--indigo);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.voice-destinations h3 { font-size: 19px; }
.voice-destinations p { margin: 0; color: var(--muted); font-size: 13px; }
.voice-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  border-block: 1px solid var(--line);
}
.voice-feature-list article { padding: 28px; }
.voice-feature-list article + article { border-left: 1px solid var(--line); }
.voice-feature-list .story-number { margin-bottom: 20px; }
.voice-feature-list h3 { font-size: 20px; }
.voice-feature-list p { margin: 0; color: var(--muted); font-size: 14px; }
.voice-style-note {
  display: grid;
  gap: 28px;
  margin-top: 28px;
  padding: 30px 32px;
  border-radius: var(--radius);
  background: var(--surface);
}
@media (min-width: 760px) {
  .voice-style-note { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); align-items: center; }
}
.voice-style-note .eyebrow { margin-bottom: 7px; }
.voice-style-note h3 { margin: 0; font-size: 22px; }
.voice-style-note p { margin: 0; color: var(--muted); font-size: 14px; }
.voice-requirements { margin-top: 26px; }
.voice-setup-details { margin-top: 12px; }
.voice-twin-bridge {
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.voice-twin-bridge h3 { font-size: 22px; }
.voice-twin-bridge p { margin: 0 0 12px; max-width: 66ch; color: var(--muted); }

/* ---- Beeem Twin landing ---- */
.twin-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}
.twin-capability-grid article {
  min-width: 0;
  padding: 28px;
  background: var(--surface);
}
.twin-capability-grid h3 { margin: 18px 0 8px; font-size: 21px; }
.twin-capability-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.twin-tier {
  color: var(--indigo-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.twin-tier-plus { color: var(--pink); }
.twin-page .product-hero-points li span {
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--indigo-soft);
  color: var(--indigo-600);
  font-size: 9px;
  font-weight: 800;
}
@media (min-width: 980px) {
  .twin-capability-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.twin-note-path {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 38px;
  padding-block: 24px;
  border-block: 1px solid var(--line);
}
.twin-note-path div { min-width: 0; }
.twin-note-path span,
.twin-note-path b,
.twin-note-path small { display: block; }
.twin-note-path span {
  margin-bottom: 10px;
  color: var(--indigo-600);
  font-size: 10px;
  font-weight: 800;
}
.twin-note-path b { font-family: var(--font-round); font-size: 19px; }
.twin-note-path small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.twin-note-path i { color: var(--muted); font-size: 18px; font-style: normal; }
.twin-proof-shot {
  min-width: 0;
  margin: 36px 0 0;
}
.twin-proof-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(36, 34, 45, 0.13);
}
.twin-proof-shot figcaption {
  margin-top: 12px;
  padding-inline: 3px;
  color: var(--muted);
  font-size: 12px;
}
.twin-proof-shot figcaption b { color: var(--ink); }
.twin-ai-shot { margin-top: 38px; }
.twin-dream-band {
  display: grid;
  gap: 34px;
  align-items: center;
  margin-top: 74px;
  padding: 38px;
  border: 1px solid color-mix(in srgb, var(--indigo) 22%, var(--line));
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 14%, color-mix(in srgb, var(--indigo) 14%, transparent), transparent 44%),
    radial-gradient(circle at 92% 82%, color-mix(in srgb, var(--pink) 12%, transparent), transparent 42%),
    var(--surface);
}
@media (min-width: 900px) {
  .twin-dream-band { grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr); }
}
.twin-dream-copy h3 {
  margin: 12px 0 14px;
  font-size: clamp(25px, 3vw, 34px);
}
.twin-dream-copy p { margin: 0; color: var(--muted); font-size: 15px; }
.twin-dream-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.twin-dream-copy li {
  padding: 5px 9px;
  border: 1px solid color-mix(in srgb, var(--indigo) 22%, var(--line));
  border-radius: 999px;
  color: var(--indigo-600);
  font-size: 11px;
  font-weight: 700;
}
.twin-dream-shot { margin-top: 0; }
.twin-dream-viewport {
  aspect-ratio: 1.72;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(36, 34, 45, 0.13);
}
.twin-dream-viewport img {
  width: 132%;
  max-width: none;
  border-radius: 0;
  box-shadow: none;
  transform: translate(-14%, -3%);
}
.twin-marketplace-shot { margin-top: 38px; }
.twin-marketplace-viewport {
  aspect-ratio: 1180 / 600;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(36, 34, 45, 0.13);
}
.twin-marketplace-viewport img {
  border-radius: 0;
  box-shadow: none;
}
.twin-plugin-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--line);
}
.twin-plugin-list article { min-width: 0; padding: 24px; background: var(--surface); }
.twin-plugin-list b,
.twin-plugin-list span { display: block; }
.twin-plugin-list b { font-family: var(--font-round); font-size: 16px; }
.twin-plugin-list span { margin-top: 5px; color: var(--muted); font-size: 12px; }
.twin-plugin-gallery { display: grid; gap: 20px; margin-top: 34px; }
@media (min-width: 800px) {
  .twin-plugin-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.twin-plugin-gallery .twin-proof-shot { margin-top: 0; }
.twin-data-details { margin-top: 28px; }
.twin-requirements { margin-top: 12px; }
.twin-voice-bridge {
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.twin-voice-bridge h3 { font-size: 22px; }
.twin-voice-bridge p { margin: 0 0 12px; max-width: 66ch; color: var(--muted); }

.voice-steps {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
@media (min-width: 760px) {
  .voice-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.voice-steps article {
  padding: 30px 24px;
  border-left: 1px solid var(--line);
}
.voice-steps article > span { color: var(--indigo); font-size: 12px; font-weight: 700; }
.voice-steps h3 { margin-top: 24px; font-size: 25px; }
.voice-steps p { margin: 0; color: var(--muted); font-size: 14px; }
.voice-gallery { display: grid; gap: 18px; margin-top: 22px; }
@media (min-width: 760px) {
  .voice-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.split-copy { display: grid; gap: 36px; align-items: start; }
@media (min-width: 820px) {
  .split-copy { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
}
.trust-list { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.trust-list article { padding: 18px 20px; background: var(--surface); }
.trust-list b, .trust-list span { display: block; }
.trust-list b { font-size: 14px; }
.trust-list span { margin-top: 3px; color: var(--muted); font-size: 13px; }
.split-copy + .wrap .disclosure { margin-top: 28px; }
.voice-start-band { padding-block: 42px; }

@media (max-width: 600px) {
  .product-local-nav .wrap {
    gap: 7px;
    overflow-x: auto;
    padding-inline: 10px;
    scrollbar-width: none;
  }
  .product-local-nav .wrap::-webkit-scrollbar { display: none; }
  .product-local-name { display: none; }
  .product-local-links { flex: none; gap: 9px; margin-left: 0; font-size: 11px; }
  .product-local-cta {
    position: sticky;
    right: 0;
    z-index: 1;
    flex: none;
    margin-left: auto;
    padding-inline: 10px;
    background: var(--grad);
    box-shadow: -10px 0 14px color-mix(in srgb, var(--bg) 94%, transparent);
    font-size: 11px;
  }
  .voice-demo { grid-template-columns: 1fr; border-radius: 20px; }
  .voice-demo-copy { padding: 24px 22px; }
  .voice-demo-transition { display: flex; min-height: 54px; justify-content: center; border-top: 1px solid var(--line); }
  .voice-demo-transition b { transform: rotate(90deg); }
  .voice-demo-result { border-top: 1px solid var(--line); border-left: 0; }
  .voice-destinations { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .voice-destinations article + article { border-left: 0; }
  .voice-destinations article:nth-child(odd) { border-right: 1px solid var(--line); }
  .voice-destinations article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .voice-destinations article { padding: 21px 16px; }
  .voice-feature-list { grid-template-columns: 1fr; }
  .voice-feature-list article { padding: 24px 4px; }
  .voice-feature-list article + article { border-top: 1px solid var(--line); border-left: 0; }
  .voice-style-note { padding: 25px 22px; }
  .twin-capability-grid { grid-template-columns: 1fr; border-radius: 18px; }
  .twin-capability-grid article { padding: 24px 20px; }
  .twin-note-path { grid-template-columns: 1fr; gap: 10px; }
  .twin-note-path i { transform: rotate(90deg); text-align: center; }
  .twin-dream-band { margin-top: 54px; padding: 26px 20px; border-radius: 22px; }
  .twin-plugin-list { grid-template-columns: 1fr; }
  .twin-plugin-list article { padding: 21px 4px; }
  .section-roomy, .start-section { padding-block: 56px; }
  .hero-home, .product-page-hero { padding-block: 48px; }
  .product-card { padding: 15px; border-radius: 22px; }
  .product-card-copy { padding: 7px 5px 18px; }
  .product-card h4 { margin-top: 22px; }
  .start-band { padding: 25px 20px; border-radius: 22px; }
  .product-hero-grid { gap: 30px; }
  .product-lockup { margin-bottom: 20px; }
  .product-lockup .app-icon { width: 60px; height: 60px; }
}
