/* 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; }
}

/* ---- ad landing pages ---- */
.ad-lp {
  --ad-maxw: 1120px;
  font-size: 16px;
}
.ad-lp .wrap { max-width: var(--ad-maxw); }
.ad-lp h1,
.ad-lp h2,
.ad-lp h3 {
  text-wrap: balance;
  word-break: auto-phrase;
}
.ad-lp-head {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
}
.ad-lp-head .wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ad-lp-head-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
}
.ad-lp-account-link {
  color: var(--muted);
  font-weight: 620;
}
.ad-lp-head-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 17px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 680;
  line-height: 1.2;
}
.ad-lp-head-cta:hover {
  color: var(--bg);
  text-decoration: none;
  opacity: 0.84;
}
.ad-lp-hero {
  padding: clamp(48px, 6vw, 84px) 0 clamp(54px, 7vw, 92px);
  border-top: 0;
  overflow: hidden;
}
.ad-lp-hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(38px, 6vw, 76px);
}
.ad-lp-product-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
  letter-spacing: 0.02em;
}
.ad-lp-product-line img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.ad-lp-hero h1 {
  margin: 0;
  max-width: 680px;
  font-family: var(--font-round);
  font-size: clamp(43px, 6.1vw, 68px);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 1.1;
}
.ad-lp-lead {
  max-width: 35em;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.75;
}
.ad-lp-primary-actions {
  max-width: 420px;
  margin-top: 30px;
}
.ad-lp-primary-cta { min-height: 52px; }
.ad-lp-primary-actions p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.ad-lp-primary-actions p a { font-weight: 680; }
.ad-lp-requirement {
  max-width: 600px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.ad-lp-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 600px;
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.ad-lp-facts li {
  min-width: 0;
  padding-right: 16px;
}
.ad-lp-facts b,
.ad-lp-facts span { display: block; }
.ad-lp-facts b {
  font-family: var(--font-round);
  font-size: 16px;
  line-height: 1.35;
}
.ad-lp-facts span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.ad-lp-hero-shot,
.ad-lp-proof-shot,
.ad-lp-context-shot {
  min-width: 0;
  margin: 0;
}
.ad-lp-hero-shot img,
.ad-lp-proof-shot img,
.ad-lp-context-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.ad-lp-hero-shot img { width: 110%; max-width: none; }
.ad-lp-context-shot { margin-top: 44px; }
.ad-lp section:not(.ad-lp-hero) {
  padding: clamp(68px, 8vw, 108px) 0;
}
.ad-lp section h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.ad-lp section .lead {
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.85;
}
.ad-lp-narrow { max-width: 920px !important; }
.ad-lp-switch,
.ad-lp-free-proof,
.ad-lp-plugins,
.ad-lp-plus-proof { background: var(--surface); }
.ad-lp-steps {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}
.ad-lp-steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}
.ad-lp-steps li:last-child { border-bottom: 1px solid var(--line); }
.ad-lp-steps li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--indigo-soft);
  color: var(--indigo-600);
  font-family: var(--font-round);
  font-weight: 730;
}
.ad-lp-steps b { font-size: 18px; }
.ad-lp-steps p { margin: 4px 0 0; color: var(--muted); }
.ad-lp-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: 26px 0 0;
}
.ad-lp-inline-cta p { margin: 0; font-size: 18px; }
.ad-lp-inline-cta .btn { width: auto; min-width: 320px; }
.ad-lp-comparison-section { background: var(--bg); }
.ad-lp-proof-grid {
  display: grid;
  align-items: center;
  gap: clamp(42px, 7vw, 82px);
}
.ad-lp-proof-alt { background: var(--surface); }
.ad-lp-check-list {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.ad-lp-check-list li {
  position: relative;
  padding-left: 27px;
}
.ad-lp-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 780;
}
.ad-lp-privacy-note,
.ad-lp-quiet-copy {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.ad-lp-fit-grid {
  display: grid;
  gap: 52px;
  margin-top: 42px;
}
.ad-lp-fit-grid > div {
  padding-top: 22px;
  border-top: 2px solid var(--ink);
}
.ad-lp-fit-grid > div:last-child { border-top-color: var(--line); }
.ad-lp-fit-grid h3 { font-size: 20px; }
.ad-lp-fit-grid ul:not(.ad-lp-check-list) {
  margin: 28px 0 0;
  padding-left: 21px;
  color: var(--muted);
}
.ad-lp-fit-grid li + li { margin-top: 10px; }
.ad-lp-fit-end {
  max-width: 740px;
  margin: 38px 0 0;
  font-size: 18px;
  font-weight: 650;
}
.ad-lp-feature-lines {
  display: grid;
  gap: 32px;
  margin-top: 46px;
}
.ad-lp-feature-lines article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.ad-lp-feature-lines article > span {
  display: block;
  margin-bottom: 32px;
  color: var(--muted);
  font-family: var(--font-round);
  font-size: 12px;
}
.ad-lp-feature-lines h3 { font-size: 21px; }
.ad-lp-feature-lines p { margin: 8px 0 0; color: var(--muted); }
.ad-lp-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}
.ad-lp-flow li {
  position: relative;
  min-width: 0;
  padding: 22px 24px 0 0;
  border-top: 2px solid var(--ink);
}
.ad-lp-flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 16px;
  right: 18px;
  color: var(--muted);
}
.ad-lp-flow span,
.ad-lp-flow b,
.ad-lp-flow small { display: block; }
.ad-lp-flow span { color: var(--muted); font-size: 11px; }
.ad-lp-flow b { margin-top: 18px; font-family: var(--font-round); font-size: 20px; }
.ad-lp-flow small { margin-top: 3px; color: var(--muted); font-size: 12px; }
.ad-lp-data-inner { max-width: 920px !important; }
.ad-lp-data-points {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}
.ad-lp-data-points p {
  display: grid;
  grid-template-columns: minmax(160px, 0.4fr) 1fr;
  gap: 24px;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.ad-lp-data-points span { color: var(--muted); }
.ad-lp-plus-screens {
  display: grid;
  gap: 30px;
  margin-top: 44px;
}
.ad-lp-proof-shot figcaption,
.ad-lp-context-shot figcaption {
  margin-top: 11px;
  color: var(--muted);
  font-size: 12px;
}
.ad-lp-plan-grid {
  display: grid;
  gap: 24px;
  margin-top: 42px;
}
.ad-lp-plan {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.ad-lp-plan-free { border-top: 3px solid var(--indigo); }
.ad-lp-plan > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
}
.ad-lp-plan h3 {
  margin: 10px 0 0;
  font-size: 32px;
}
.ad-lp-plan h3 small {
  color: var(--muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
}
.ad-lp-plan .ad-lp-check-list { margin-bottom: 30px; }
.ad-lp-plan .btn { margin-top: auto; }
.ad-lp-plan-note {
  max-width: 850px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.ad-lp-final {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
}
.ad-lp-final-inner { max-width: 760px !important; }
.ad-lp-final h2 { margin-inline: auto !important; }
.ad-lp-final > .wrap { display: block; }
.ad-lp-final p { margin: 18px 0 0; color: color-mix(in srgb, var(--bg) 68%, transparent); }
.ad-lp-final .btn {
  max-width: 430px;
  min-height: 52px;
  margin-top: 30px;
}
.ad-lp-final .release-meta { margin: 11px 0 0; }
.ad-lp-final .ad-lp-secondary-link { font-size: 13px; }
.ad-lp-final .ad-lp-secondary-link a { color: color-mix(in srgb, #fff 78%, var(--pink)); }

@media (min-width: 760px) {
  .ad-lp-feature-lines { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ad-lp-fit-grid,
  .ad-lp-plan-grid,
  .ad-lp-plus-screens { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .ad-lp-hero-grid { grid-template-columns: minmax(420px, 0.9fr) minmax(500px, 1.1fr); }
  .ad-lp-proof-grid { grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr); }
  .ad-lp-proof-grid-reverse > div { order: 2; }
  .ad-lp-proof-grid-reverse > figure { order: 1; }
}

@media (max-width: 899px) {
  .ad-lp-hero-shot { max-width: 760px; }
  .ad-lp-hero-shot img { width: 100%; }
  .ad-lp-proof-shot { max-width: 760px; }
}

@media (max-width: 640px) {
  .ad-lp .wrap { padding-inline: 18px; }
  .ad-lp-head .wrap { padding-inline: 14px; }
  .ad-lp-head-actions { gap: 10px; }
  .ad-lp-account-link { font-size: 12px; }
  .ad-lp-head-cta { min-height: 44px; padding-inline: 13px; font-size: 12px; }
  .ad-lp-hero { padding-top: 40px; }
  .ad-lp-product-line { margin-bottom: 18px; }
  .ad-lp-hero h1 { font-size: clamp(40px, 12vw, 52px); }
  .ad-lp-lead { margin-top: 18px; font-size: 16px; }
  .ad-lp-primary-actions { margin-top: 24px; }
  .ad-lp-facts { margin-top: 23px; padding-top: 15px; }
  .ad-lp-facts li { padding-right: 8px; }
  .ad-lp-facts b { font-size: 13px; }
  .ad-lp-inline-cta { align-items: stretch; flex-direction: column; gap: 17px; }
  .ad-lp-inline-cta .btn { width: 100%; min-width: 0; }
  .ad-lp-steps li { grid-template-columns: 40px minmax(0, 1fr); gap: 12px; }
  .ad-lp-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 0; }
  .ad-lp-flow li:nth-child(2)::after { display: none; }
  .ad-lp-data-points p { grid-template-columns: 1fr; gap: 2px; }
  .ad-lp-plan { padding: 24px; }
  .ad-lp-plus-screens { gap: 38px; }
  .ad-lp-final .ad-lp-secondary-link a { display: inline-block; margin: 4px 3px; }
}

@media (max-width: 370px) {
  .ad-lp-account-link { display: none; }
}

.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 interaction demo ---- */
.voice-motion-demo {
  min-width: 0;
  margin: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  container-type: inline-size;
}
.voice-motion-demo.product-hero-shot { box-shadow: none; }
.voice-motion-screen {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #0e0f12;
  color: #f8f8fb;
}
.voice-motion-demo--card .voice-motion-screen { border-radius: 18px; }
.voice-motion-demo.product-hero-shot .voice-motion-screen {
  box-shadow: 0 26px 70px rgba(36, 34, 45, 0.14);
}
.voice-motion-demo .voice-motion-poster {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 0;
}
.voice-motion-mask {
  position: absolute;
  z-index: 1;
  inset: 68.4% 0 0 20.9%;
  background: #0e0f12;
  pointer-events: none;
}
.voice-motion-input {
  position: absolute;
  z-index: 2;
  top: 74.8%;
  right: 4.8%;
  left: 25.8%;
  height: 10.6%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(5px, 1.35cqi, 18px);
  background: #1c1d22;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.voice-motion-text {
  position: absolute;
  top: 50%;
  left: 2.1%;
  max-width: 95.5%;
  overflow: hidden;
  color: rgba(248, 248, 251, 0.94);
  font-size: clamp(10px, 1.18cqi, 17px);
  font-weight: 560;
  line-height: 1.35;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(calc(-50% + 0.35em));
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), color 0.22s var(--ease);
}
.voice-motion-text--final {
  opacity: 1;
  transform: translateY(-50%);
}
.voice-motion-text--live-one,
.voice-motion-text--live-two { display: none; }
.voice-motion-text::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.2em;
  margin-left: 0.2em;
  background: #4ba7ff;
  vertical-align: -0.18em;
}
.voice-motion-demo[data-motion-state="key"] .voice-motion-text--final,
.voice-motion-demo[data-motion-state="live-one"] .voice-motion-text--final,
.voice-motion-demo[data-motion-state="live-two"] .voice-motion-text--final,
.voice-motion-demo[data-motion-state="processing"] .voice-motion-text--final {
  opacity: 0;
  transform: translateY(calc(-50% + 0.35em));
}
.voice-motion-demo[data-motion-state="final"] .voice-motion-input {
  border-color: rgba(154, 134, 232, 0.72);
  box-shadow: 0 0 0 2px rgba(154, 134, 232, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  animation: voice-motion-insert 0.72s var(--ease) both;
}
@keyframes voice-motion-insert {
  from { transform: scale(0.995); }
  to { transform: scale(1); }
}
.voice-motion-key {
  position: absolute;
  z-index: 3;
  top: 68.8%;
  left: 25.9%;
  display: flex;
  align-items: center;
  gap: 0.65em;
  padding: 0.45em 0.7em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 8, 11, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: rgba(248, 248, 251, 0.68);
  font-size: clamp(10px, 1.05cqi, 14px);
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  pointer-events: none;
}
.voice-motion-key kbd {
  padding: 0.35em 0.55em;
  border: 0;
  border-radius: 0.45em;
  background: #f2f1f5;
  box-shadow: 0 0.18em 0 rgba(139, 134, 151, 0.7);
  color: #17171b;
  font-family: inherit;
  font-size: 1em;
  font-weight: 750;
}
.voice-motion-demo[data-motion-state="key"] .voice-motion-key,
.voice-motion-demo[data-motion-state="live-one"] .voice-motion-key,
.voice-motion-demo[data-motion-state="live-two"] .voice-motion-key {
  opacity: 1;
  transform: translateY(0);
}
.voice-motion-demo[data-motion-state="key"] .voice-motion-key kbd,
.voice-motion-demo[data-motion-state="live-one"] .voice-motion-key kbd,
.voice-motion-demo[data-motion-state="live-two"] .voice-motion-key kbd {
  box-shadow: 0 0.06em 0 rgba(139, 134, 151, 0.7);
  transform: translateY(0.12em);
}
.voice-motion-hud {
  position: absolute;
  z-index: 3;
  bottom: 4.4%;
  left: 50%;
  display: flex;
  min-height: 2.55em;
  align-items: center;
  gap: 0.75em;
  padding: 0.55em 1.05em;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(7, 7, 10, 0.94);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.24);
  color: rgba(248, 248, 251, 0.78);
  font-size: clamp(10px, 0.95cqi, 13px);
  font-weight: 620;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 0.5em);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  pointer-events: none;
}
.voice-motion-demo[data-motion-state="live-one"] .voice-motion-hud--recording,
.voice-motion-demo[data-motion-state="live-two"] .voice-motion-hud--recording,
.voice-motion-demo[data-motion-state="processing"] .voice-motion-hud--processing {
  opacity: 1;
  transform: translate(-50%, 0);
}
.voice-motion-hud::before {
  position: absolute;
  bottom: calc(100% + 0.72em);
  left: 50%;
  width: max-content;
  max-width: 68cqi;
  overflow: hidden;
  padding: 0.55em 1em;
  border-radius: 999px;
  background: rgba(7, 7, 10, 0.94);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: rgba(248, 248, 251, 0.88);
  font-weight: 560;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: translateX(-50%);
}
.voice-motion-demo[data-motion-state="live-one"] .voice-motion-hud--recording::before {
  content: "候補を15枚選び";
}
.voice-motion-demo[data-motion-state="live-two"] .voice-motion-hud--recording::before,
.voice-motion-demo[data-motion-state="processing"] .voice-motion-hud--processing::before {
  content: "候補を15枚選び、一覧を共有します";
}
.voice-motion-demo[data-motion-state="processing"] .voice-motion-hud--processing::before {
  color: rgba(248, 248, 251, 0.58);
}
.voice-motion-wave {
  display: flex;
  height: 1.35em;
  align-items: center;
  gap: 0.22em;
}
.voice-motion-wave i {
  width: 0.22em;
  height: 42%;
  border-radius: 999px;
  background: #f8f8fb;
}
.voice-motion-demo[data-motion-state="live-one"] .voice-motion-wave i,
.voice-motion-demo[data-motion-state="live-two"] .voice-motion-wave i {
  animation: voice-motion-wave 0.72s ease-in-out infinite alternate;
}
.voice-motion-wave i:nth-child(2) { animation-delay: -0.38s !important; }
.voice-motion-wave i:nth-child(3) { animation-delay: -0.16s !important; }
.voice-motion-wave i:nth-child(4) { animation-delay: -0.52s !important; }
.voice-motion-wave i:nth-child(5) { animation-delay: -0.26s !important; }
@keyframes voice-motion-wave {
  0% { height: 34%; opacity: 0.62; }
  100% { height: 100%; opacity: 1; }
}
.voice-motion-dots { display: flex; align-items: center; gap: 0.3em; }
.voice-motion-dots i {
  width: 0.42em;
  height: 0.42em;
  border-radius: 50%;
  background: #9a86e8;
  animation: voice-motion-dot 0.8s ease-in-out infinite;
}
.voice-motion-dots i:nth-child(2) { animation-delay: 0.14s; }
.voice-motion-dots i:nth-child(3) { animation-delay: 0.28s; }
@keyframes voice-motion-dot {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-0.22em); }
}
.voice-motion-caption {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 11px;
  margin-top: 10px;
  padding: 0 2px;
  color: var(--muted);
  font-size: clamp(10px, 1.05cqi, 12px);
  line-height: 1.55;
}
.voice-motion-caption-label {
  flex: none;
  color: var(--indigo-600);
  font-weight: 720;
}
.voice-motion-sequence {
  display: flex;
  min-width: 0;
  flex: 1 1 280px;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px 7px;
}
.voice-motion-sequence > span {
  opacity: 0.42;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.voice-motion-sequence > i { color: var(--muted); font-style: normal; opacity: 0.5; }
.voice-motion-sequence kbd {
  padding: 0.1em 0.38em;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.92em;
  font-weight: 680;
}
.voice-motion-sequence [data-motion-step="4"] { color: var(--ink); opacity: 1; }
.voice-motion-demo[data-motion-state="key"] .voice-motion-sequence > span,
.voice-motion-demo[data-motion-state="live-one"] .voice-motion-sequence > span,
.voice-motion-demo[data-motion-state="live-two"] .voice-motion-sequence > span,
.voice-motion-demo[data-motion-state="processing"] .voice-motion-sequence > span { color: inherit; opacity: 0.42; }
.voice-motion-demo[data-motion-state="key"] .voice-motion-sequence [data-motion-step="1"],
.voice-motion-demo[data-motion-state="live-one"] .voice-motion-sequence [data-motion-step="2"],
.voice-motion-demo[data-motion-state="live-two"] .voice-motion-sequence [data-motion-step="2"],
.voice-motion-demo[data-motion-state="processing"] .voice-motion-sequence [data-motion-step="3"] {
  color: var(--ink);
  opacity: 1;
}
.voice-motion-replay {
  display: none;
  flex: none;
  margin-left: auto;
  padding: 4px 0 4px 8px;
  border: 0;
  background: transparent;
  color: var(--indigo-600);
  font: inherit;
  font-weight: 680;
  cursor: pointer;
}
.voice-motion-demo.is-motion-ready:not(.is-motion-reduced) .voice-motion-replay { display: inline-flex; }
.voice-motion-replay:hover { text-decoration: underline; }
.voice-motion-replay:disabled { cursor: default; opacity: 0.46; text-decoration: none; }
@media (prefers-color-scheme: dark) {
  .voice-motion-demo.product-hero-shot .voice-motion-screen { box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22); }
}
@media (prefers-reduced-motion: reduce) {
  .voice-motion-replay { display: none !important; }
  .voice-motion-key,
  .voice-motion-hud { display: none; }
  .voice-motion-text:not(.voice-motion-text--final) { display: none; }
  .voice-motion-text--final { opacity: 1 !important; transform: translateY(-50%) !important; }
  .voice-motion-input { border-color: rgba(255, 255, 255, 0.1) !important; box-shadow: none !important; }
}

/* ---- Voice six-feature motion stories ---- */
.voice-feature-lines {
  gap: 52px 28px;
}
.voice-feature-lines article {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.voice-feature-lines article > span {
  margin-bottom: 14px;
  color: var(--indigo-600);
  font-weight: 720;
  letter-spacing: 0.04em;
}
.voice-feature-lines article > p {
  max-width: 42em;
}
.voice-feature-motion {
  min-width: 0;
  margin: 24px 0 0;
}
.voice-feature-motion-media {
  position: relative;
  isolation: isolate;
  aspect-ratio: 12 / 7;
  overflow: hidden;
  border-radius: 18px;
  background: #111216;
  box-shadow: 0 18px 42px rgba(36, 34, 45, 0.12);
}
.voice-feature-motion video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voice-feature-motion figcaption {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 7px;
  margin-top: 11px;
  padding: 0 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.voice-feature-motion figcaption span,
.voice-feature-motion figcaption b {
  white-space: nowrap;
}
.voice-feature-motion figcaption i {
  color: color-mix(in srgb, var(--muted) 56%, transparent);
  font-style: normal;
}
.voice-feature-motion figcaption b {
  color: var(--ink);
  font-weight: 700;
}
@media (min-width: 760px) {
  .voice-feature-lines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 759px) {
  .voice-feature-lines {
    gap: 44px;
  }
  .voice-feature-motion {
    margin-top: 20px;
  }
}
@media (prefers-color-scheme: dark) {
  .voice-feature-motion-media {
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  }
}
@media (prefers-reduced-motion: reduce) {
  .voice-feature-motion video {
    animation: none !important;
  }
}
.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; }
}
