* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100vh; }
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fff;
  color: #171717;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
.site-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1240px) {
  .site-wrap { padding-left: 0; padding-right: 0; }
}
body.nav-open { overflow: hidden; }
body.nav-open .site-bar,
body.nav-open .site-top { z-index: 40; }
.site-bar,
.site-top {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.site-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.site-top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}
.site-global-language {
  margin: 0;
}
.site-global-language label,
.site-global-language button {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.site-global-language select {
  display: block;
  width: 126px;
  min-height: 36px;
  padding: 6px 26px 6px 8px;
  border: 1px solid #d4d4d4;
  border-radius: 7px;
  background: #fff;
  color: #262626;
  font: inherit;
  font-size: 0.75rem;
}
.po-testing {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 6px 10px;
  background: #eab308;
  color: #111;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-align: center;
}
html.po-is-testing .site-top { top: 28px; }
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-logo img {
  display: block;
  height: 18px;
  width: auto;
  filter: invert(1);
}
.site-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 50;
}
.site-burger,
.site-burger::before,
.site-burger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #171717;
}
.site-burger { position: relative; }
.site-burger::before,
.site-burger::after {
  content: "";
  position: absolute;
  left: 0;
}
.site-burger::before { top: -7px; }
.site-burger::after { top: 7px; }
.site-dim {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.45);
}
.site-dim.on { display: block; }
.site-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: 75vw;
  max-width: 22rem;
  height: 100%;
  padding: 72px 24px 32px;
  background: #fff;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.2s ease;
}
.site-nav.open { transform: translateX(0); }
.site-nav a {
  display: block;
  padding: 14px 4px;
  color: #404040;
  text-decoration: none;
  font-size: 1.15rem;
}
.site-nav a.on { color: #171717; font-weight: 700; }
.site-main {
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 32px 20px 64px;
  flex: 1;
}
.site-kicker { margin: 0; color: #a3a3a3; font-size: 0.9rem; }
.site-main h1 {
  margin: 12px 0 0;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.site-main p { margin: 16px 0 0; color: #525252; }
.site-main p.quiet { color: #a3a3a3; }
.site-btn {
  display: inline-block;
  margin-top: 28px;
  background: #171717;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
}
.site-list { margin: 24px 0 0; padding: 0; list-style: none; }
.site-list a { color: #171717; }
.site-err { color: #b91c1c; }
.site-note {
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #9a3412;
  padding: 10px 12px;
  border-radius: 8px;
}
.site-form { margin-top: 24px; max-width: 24rem; }
.site-form label { display: block; margin-bottom: 6px; color: #404040; }
.site-form input {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid #d4d4d4;
  font: inherit;
  margin-bottom: 16px;
}
.site-form button {
  border: 0;
  background: #171717;
  color: #fff;
  padding: 12px 20px;
  font: inherit;
  cursor: pointer;
}
.site-form button:disabled {
  background: #a3a3a3;
  cursor: not-allowed;
}
.site-form.quiet-form { margin-top: 12px; }
/* Small text links under Sign in, so they cannot be taken for the main button. */
.site-form.login-alt {
  display: inline-block;
  margin: 14px 18px 0 0;
  max-width: none;
}
.site-form button.site-linkish,
.site-form button.site-linkish:disabled {
  padding: 0;
  background: none;
  color: #525252;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}
.site-form button.site-linkish:hover { color: #171717; }
.site-form textarea {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid #d4d4d4;
  font: inherit;
  margin-bottom: 16px;
  min-height: 140px;
  resize: vertical;
}
.site-form .site-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.site-form-err {
  margin: 16px 0 0;
  color: #9a3412;
  background: #fff7ed;
  border: 1px solid #fdba74;
  padding: 10px 12px;
  border-radius: 8px;
}
.site-form-ok {
  margin: 16px 0 0;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #86efac;
  padding: 10px 12px;
  border-radius: 8px;
}
.site-main-contact,
.site-main-support {
  max-width: none;
  background-color: #262626;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.site-main-contact {
  background-image: url("/brand/section-contact.jpg");
}
.site-main-support {
  background-image: url("/brand/section-support.jpg");
  min-height: 600px;
  display: flex;
  align-items: center;
}
.site-contact-inner {
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}
@media (max-width: 479px) {
  .site-contact-inner { padding: 20px; }
}
.site-contact-lead {
  margin: 16px 0 0;
  color: #525252;
  line-height: 1.55;
}
.site-form.site-contact-form {
  position: relative;
  max-width: 28rem;
}
.site-main-knowledge {
  max-width: 60rem;
}
.site-knowledge {
  width: 100%;
}
.site-knowledge-intro {
  max-width: 44rem;
  line-height: 1.6;
}
.site-knowledge-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.site-knowledge-nav a {
  padding: 8px 12px;
  border: 1px solid #d4d4d4;
  border-radius: 999px;
  background: #fff;
  color: #404040;
  text-decoration: none;
  font-size: 0.86rem;
}
.site-knowledge-sections {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
.site-knowledge-section {
  scroll-margin-top: 24px;
  padding: 24px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
}
.site-knowledge-section h2 {
  margin: 0;
  color: #333;
  font-size: 1.25rem;
}
.site-main .site-knowledge-section p {
  margin-top: 12px;
  color: #525252;
  line-height: 1.65;
}
.site-form .legal-tick {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.45;
  color: #404040;
  cursor: pointer;
}
.site-form .legal-tick input[type="checkbox"] {
  display: inline-block;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  margin: 3px 0 0;
  padding: 0;
}
.site-form .legal-tick span {
  flex: 1 1 auto;
  min-width: 0;
}
.site-form .legal-tick a {
  color: #171717;
  display: inline;
}
.site-bags { list-style: none; padding: 0; margin: 24px 0 0; }
.site-bags li {
  border: 1px solid #e5e5e5;
  padding: 16px;
  margin-bottom: 12px;
}
.site-bags .site-form { margin-top: 0; }
.site-main-blog,
.site-main-blog-post {
  width: 100%;
  max-width: 1200px;
}
.blog-head { margin-bottom: 36px; }
.blog-head .site-kicker a { color: inherit; }
.blog-head p:last-child { max-width: 38rem; }
.blog-empty { padding: 28px 0; }
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 44px;
}
.blog-results { min-width: 0; }
.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.blog-card {
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
}
.blog-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f5f5f5;
}
.blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.blog-card-copy { padding: 22px; }
.blog-meta {
  margin: 0 !important;
  color: #737373;
  font-size: 0.82rem;
  line-height: 1.4;
}
.blog-meta time,
.blog-card time,
.blog-article time {
  color: inherit;
  font-size: inherit;
}
.blog-meta-sep {
  color: #737373;
}
.blog-card-category,
.blog-article-category {
  display: inline;
  margin: 0;
  color: #737373;
  font-size: inherit;
  font-weight: 400;
  text-decoration: none;
}
.blog-card-category:hover,
.blog-article-category:hover {
  color: #525252;
  text-decoration: underline;
}
.blog-card h2 {
  margin: 8px 0 0;
  font-size: 1.18rem;
  line-height: 1.25;
}
.blog-card h2 a {
  color: #404040;
  text-decoration: none;
}
.blog-card h2 a:hover { color: #262626; }
.blog-article header h1 {
  margin-top: 10px;
  color: #404040;
}
.blog-card-copy p {
  margin-top: 12px;
  font-size: 0.88rem;
}
.blog-read {
  display: inline-block;
  margin-top: 18px;
  color: #171717;
  font-weight: 700;
  font-size: 0.9rem;
}
.blog-back { margin: 0 0 28px !important; }
.blog-back a { color: #525252; }
.blog-article { min-width: 0; }
.blog-article header { max-width: 760px; margin: 0 auto; }
.blog-feature {
  display: block;
  width: 100%;
  max-height: 560px;
  margin: 34px auto;
  border-radius: 14px;
  object-fit: cover;
  background: #f5f5f5;
}
.blog-content {
  max-width: 760px;
  margin: 34px auto 0;
  color: #404040;
  font-size: 1.04rem;
  line-height: 1.75;
}
.blog-content p { margin: 0 0 1.2em; color: #404040; }
.blog-content h2,
.blog-content h3,
.blog-content h4 {
  color: #171717;
  line-height: 1.3;
}
.blog-content h2 { margin: 2em 0 0.7em; font-size: 1.7rem; }
.blog-content h3 { margin: 1.8em 0 0.65em; font-size: 1.4rem; }
.blog-content h4 { margin: 1.6em 0 0.6em; font-size: 1.15rem; }
.blog-content ul,
.blog-content ol { margin: 0 0 1.25em; padding-left: 1.4em; }
.blog-content li { margin-bottom: 0.4em; }
.blog-content hr {
  margin: 2.5em 0;
  border: 0;
  border-top: 1px solid #d4d4d4;
}
.blog-content img.blog-img-sm,
.blog-content img.blog-img-md,
.blog-content img.blog-img-lg {
  display: block;
  height: auto;
  margin: 1.4em auto;
  border-radius: 10px;
}
.blog-content img.blog-img-sm { width: min(50%, 280px); }
.blog-content img.blog-img-md { width: min(100%, 390px); }
.blog-content img.blog-img-lg { width: 100%; }
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 4px;
  background: #fff;
}
.blog-sidebar section {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.blog-sidebar h2 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #171717;
}
.blog-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-sidebar li { border: 0; }
.blog-sidebar li a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  color: #404040;
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
}
.blog-sidebar li a:hover { color: #171717; text-decoration: underline; }
.blog-sidebar li small {
  color: #a3a3a3;
  font-size: 12px;
}
.blog-sidebar .blog-latest a { display: block; }
@media (hover: hover) {
  .blog-card:hover .blog-card-image img { transform: scale(1.025); }
}
@media (min-width: 720px) {
  body.nav-open { overflow: auto; }
  .site-top-inner { padding-top: 14px; padding-bottom: 14px; }
  .site-global-language select { width: 154px; font-size: 0.82rem; }
  .site-menu-btn,
  .site-dim { display: none !important; }
  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    position: static;
    z-index: auto;
    width: auto;
    max-width: none;
    height: auto;
    padding: 0;
    box-shadow: none;
    transform: none;
    transition: none;
  }
  .site-nav a { padding: 8px 12px; font-size: 0.95rem; }
  .site-main { padding: 56px 28px 80px; }
  .site-main h1 { font-size: 2.6rem; }
  .blog-list { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (min-width: 1000px) {
  .blog-layout { grid-template-columns: minmax(0, 1fr) 230px; gap: 32px; align-items: start; }
  .blog-sidebar { position: sticky; top: 88px; }
  .blog-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
  .blog-card-copy { padding: 18px; }
  .blog-card h2 { font-size: 1.08rem; }
  .blog-card-copy p { font-size: 0.84rem; }
}
.site-foot {
  background: #333;
  color: #d4d4d4;
  margin-top: auto;
  flex-shrink: 0;
}
.site-foot-inner {
  display: grid;
  grid-template-columns: 1.7fr 0.75fr 0.75fr 0.75fr;
  gap: 24px 28px;
  padding-top: 36px;
  padding-bottom: 80px;
}
.site-foot-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-foot-logo img {
  display: block;
  height: 18px;
  width: auto;
}
.site-foot-slogan {
  margin: 12px 0 0;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}
.site-foot-desc,
.site-foot-office {
  margin: 10px 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #c4c4c4;
}
.site-foot-office span {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 700;
}
.site-foot-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-foot-col a {
  color: #d4d4d4;
  text-decoration: none;
  font-size: 0.9rem;
}
.site-foot-col a:hover { color: #fff; text-decoration: underline; }
.site-foot-bar {
  background: #000;
  color: #a3a3a3;
  padding: 10px 0;
  font-size: 0.68rem;
  line-height: 1.35;
}
.site-foot-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.site-foot-bar p { margin: 0; }
.site-foot-left { text-align: start; }
.site-foot-right { text-align: end; }
@media (max-width: 720px) {
  .site-foot-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 28px;
    padding-bottom: 80px;
  }
  .site-foot-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .site-foot-left,
  .site-foot-right { text-align: start; }
}
.site-main-hero {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
}
.hero-hide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: min(78vh, 720px);
  min-height: 280px;
  background: #111;
  color: #fff;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}
.hero-slider.boot { visibility: hidden; }
.hero-slider.ready { visibility: visible; }
.hero-slider.drag { cursor: grabbing; }
.hero-track {
  display: flex;
  height: 100%;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.55s ease;
  will-change: transform;
}
.hero-slider.drag .hero-track { transition: none; }
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 72px 0 52px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 55%, rgba(0, 0, 0, 0) 100%);
}
.hero-logo {
  display: block;
  height: 22px;
  width: auto;
  margin: 0 0 10px;
  pointer-events: none;
}
.hero-copy h2 {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.hero-copy p {
  margin: 10px 0 0;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #f5f5f5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.hero-dot[aria-current="true"] { background: #fff; }
@media (min-width: 720px) {
  .site-main-hero { padding: 0; }
  .hero-slider { min-height: 420px; }
  .hero-copy { padding: 96px 0 56px; }
  .hero-copy h2 { font-size: 2.4rem; }
  .hero-copy p { font-size: 1.05rem; }
  .hero-logo { height: 28px; margin-bottom: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-track { transition: none; }
  .home-plan {
    transition: none;
    transform: none !important;
  }
}
.home-phone {
  background: #fff;
  color: #111;
}
.home-phone-track {
  /* Longer scrub so ~2–3 wheel notches cover the language steps */
  height: 280vh;
  position: relative;
}
.home-phone-sticky {
  position: sticky;
  top: 4vh;
  /* Hug the phone — full 100vh left a huge blank under the handset */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px 0 20px;
  box-sizing: border-box;
}
.home-phone-stage {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  box-sizing: border-box;
  overflow: hidden;
}
.home-phone-frame {
  position: relative;
  width: min(320px, 72vw);
  transform-origin: center center;
  will-change: transform, opacity;
  opacity: 0;
  z-index: 1;
}
/* === HOME PHONE PLANE (delete with matching JS/HTML to remove) === */
.home-phone-plane {
  position: absolute;
  left: 50%;
  top: 42%;
  /* Keep near native size — upscaling a cutout makes jagged edges. */
  width: min(96vw, 900px);
  max-width: 100%;
  height: auto;
  margin: 0;
  transform: translate(-160%, -50%);
  transform-origin: center center;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  z-index: 4;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.22));
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform, opacity;
}
.home-phone.is-static .home-phone-plane {
  display: none;
}
/* === /HOME PHONE PLANE === */
.home-phone-pic {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}
.home-phone .home-phone-other,
.home-phone .home-phone-mine,
.home-phone .home-phone-start,
.home-phone .home-phone-lang {
  position: absolute;
  margin: 0;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.12s linear;
  pointer-events: none;
  font-family: Arial, Helvetica, sans-serif;
}
/* Other side translation: full top white box; rotate so flex-start → visual bottom */
.home-phone .home-phone-other {
  left: 11%;
  top: 22%;
  width: 78%;
  height: 20.5%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.2% 3% 0;
  color: #111;
  font-size: clamp(0.7rem, 2.4vw, 0.9rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  overflow: hidden;
  transform: rotate(180deg);
  transform-origin: center center;
}
/* You side: full bottom white box; text stuck to top */
.home-phone .home-phone-mine {
  left: 11%;
  top: 44%;
  width: 78%;
  height: 20.5%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2.2% 3% 0;
  color: #111;
  font-size: clamp(0.7rem, 2.4vw, 0.9rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: start;
  overflow: hidden;
}
/* Other side start: white text only on green bar in PNG (~16–21%) */
.home-phone .home-phone-start {
  left: 11%;
  top: 16%;
  width: 78%;
  height: 4.9%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3%;
  background: transparent;
  color: #fff;
  font-size: clamp(0.55rem, 1.9vw, 0.75rem);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: rotate(180deg);
  transform-origin: center center;
}
/* Right language pill in PNG (~56–87% x, ~80–84% y) */
.home-phone .home-phone-lang {
  left: 56%;
  top: 80.5%;
  width: 31%;
  height: 3.4%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2%;
  color: #fff;
  font-size: clamp(0.52rem, 1.8vw, 0.68rem);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-phone.is-static .home-phone-track {
  height: auto;
}
.home-phone.is-static .home-phone-sticky {
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
  padding: 24px 0;
}
.home-phone.is-static .home-phone-frame {
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.home-phone.is-static .home-phone-other,
.home-phone.is-static .home-phone-mine,
.home-phone.is-static .home-phone-start,
.home-phone.is-static .home-phone-lang {
  opacity: 1;
  transition: none;
}
@media (min-width: 720px) {
  .home-phone-track { height: 260vh; }
  .home-phone-frame { width: min(360px, 34vw); }
  .home-phone .home-phone-other,
  .home-phone .home-phone-mine { font-size: 0.88rem; }
  .home-phone .home-phone-start { font-size: 0.74rem; }
  .home-phone .home-phone-lang { font-size: 0.66rem; }
}
.home-pitch {
  background: #fff;
  color: #404040;
  padding: 28px 0 56px;
}
.home-pitch-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.home-pitch-col h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
}
.home-pitch-col p {
  margin: 12px 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #404040;
}
@media (min-width: 900px) {
  .home-pitch { padding: 72px 0 176px; }
  .home-pitch-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 48px;
    align-items: start;
  }
  .home-pitch-col h2 { font-size: 1.35rem; }
  .home-pitch-col p { font-size: 0.98rem; }
}
.home-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  height: min(52vh, 480px);
  background: #111;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
}
.home-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
}
.home-banner-copy {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  margin: 0 auto;
  padding: 48px 20px;
}
.home-banner-copy h2 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.home-banner-copy p {
  margin: 14px 0 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #f5f5f5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
@media (min-width: 720px) {
  .home-banner { min-height: 360px; height: min(56vh, 520px); }
  .home-banner-copy { padding: 64px 28px; }
  .home-banner-copy h2 { font-size: 2.1rem; }
  .home-banner-copy p { font-size: 1.05rem; }
}
@media (hover: none), (pointer: coarse) {
  .home-banner { background-attachment: scroll; }
}
.home-features {
  background: #fff;
  color: #404040;
  padding: 58px 0 56px;
}
@media (min-width: 720px) {
  .home-features { padding: 96px 0 112px; }
}
.home-features-inner {
  max-width: 52rem;
  margin: 0 auto;
}
.home-features-heading,
.home-grid-heading,
.home-langs-heading,
.home-plans h2,
.home-faq h2 {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #737373;
}
.home-features-heading {
  margin: 0 0 32px;
}
.home-grid-heading,
.home-langs-heading {
  margin: 0 0 48px;
  text-align: center;
}
.home-plans h2 {
  margin: 0;
  text-align: center;
}
.home-faq h2 {
  margin: 0 0 40px;
  text-align: center;
}
.home-features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.home-features-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.home-features-media {
  flex: 0 0 auto;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.home-features-media img {
  display: block;
  width: 104px;
  height: auto;
}
.home-features-copy {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 4px;
}
.home-features-item h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
}
.home-features-item p {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #404040;
}
.home-features-lead {
  font-weight: 600;
  color: #333;
}
@media (min-width: 720px) {
  .home-features-heading,
  .home-grid-heading,
  .home-langs-heading,
  .home-plans h2,
  .home-faq h2 { font-size: 2.1rem; }
  .home-features-item { gap: 28px; }
  .home-features-media img { width: 118px; }
  .home-features-list { gap: 32px; }
}
.home-features-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.home-features-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.home-features-lightbox-panel {
  position: relative;
  max-width: min(420px, 92vw);
  max-height: 92vh;
  margin: 0;
}
.home-features-lightbox-panel img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 92vh;
  object-fit: contain;
}
.home-features-lightbox-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.home-features-lightbox-close:hover {
  background: #333;
}
body.home-features-lightbox-on {
  overflow: hidden;
}
.home-langs {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  color: #fff;
  padding: 58px 0 56px;
}
.home-langs-pic {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.home-langs::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
}
.home-langs-inner {
  position: relative;
  z-index: 2;
}
.home-langs .home-langs-heading {
  margin-bottom: 0;
  color: #e5e5e5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.site-main .home-langs-lead,
.home-langs-lead {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 44rem;
  margin: 20px auto 50px;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #f0f0f0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.home-langs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 20px 8px;
}
.home-langs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  min-width: 0;
}
.home-langs-flag {
  display: block;
  width: 36px;
  height: 27px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 1px 6px rgba(0, 0, 0, 0.35);
}
.home-langs-name {
  font-size: 10px;
  line-height: 1.25;
  color: #f5f5f5;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
@media (max-width: 999px) {
  .home-langs-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px 12px;
  }
  .home-langs-flag { width: 40px; height: 30px; }
}
@media (max-width: 639px) {
  .home-langs-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 10px;
  }
}
@media (min-width: 720px) {
  .home-langs { padding: 72px 0 96px; }
}
@media (min-width: 1000px) {
  .home-langs { padding: 96px 0 112px; }
}
.home-grid {
  background: #f5f5f5;
  color: #404040;
  padding: 58px 0 56px;
}
.home-grid-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 24px;
}
.home-grid-item {
  text-align: start;
}
.home-grid-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 32px;
  height: 32px;
  color: #171717;
}
.home-grid-svg {
  display: block;
  width: 28px;
  height: 28px;
}
.home-grid-item h3 {
  margin: 12px 0 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
}
.home-grid-item p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #404040;
}
@media (min-width: 640px) {
  .home-grid-list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 720px) {
  .home-grid { padding: 72px 0 96px; }
}
@media (min-width: 1000px) {
  .home-grid { padding: 96px 0 128px; }
  .home-grid-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px 32px;
  }
}
.home-plans {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  padding: 58px 0 56px;
}
.home-plans::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
}
.home-plans-inner {
  position: relative;
  z-index: 2;
}
.home-plans .home-plans-inner > h2 {
  color: #e5e5e5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.site-main .home-plans p.home-plans-lead,
.home-plans p.home-plans-lead {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 12px auto 50px;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #f0f0f0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.site-main .home-plans p.home-plans-test,
.home-plans p.home-plans-test {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: -34px auto 40px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: #ef4444;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}
.home-plans-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 8px;
}
.home-plan {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 28px 22px 24px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(23, 23, 23, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.home-plan.is-free { background: #fafafa; }
.home-plan h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
}
.home-plan .qty {
  margin: 12px 0 0;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #171717;
}
.home-plan .price {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: #525252;
}
.home-plan .blurb {
  margin: 12px 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #525252;
  flex: 1;
}
.home-plan-btn {
  display: block;
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #171717;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 0.95rem;
}
@media (hover: hover) {
  .home-plan:hover {
    transform: translate(6px, 6px);
    box-shadow: 2px 2px 0 rgba(23, 23, 23, 0.12);
  }
}
@media (min-width: 640px) {
  .home-plans-list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 720px) {
  .home-plans { padding: 172px 0 196px; }
}
@media (min-width: 1000px) {
  .home-plans { padding: 196px 0 228px; }
  .home-plans-list { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .home-plans p.home-plans-lead { max-width: calc(50% - 12px); }
}
@media (hover: none), (pointer: coarse) {
  .home-plans { background-attachment: scroll; }
}
.home-faq {
  background: #f5f5f5;
  color: #404040;
  padding: 58px 0 56px;
}
@media (min-width: 720px) {
  .home-faq { padding: 72px 0 96px; }
}
.home-faq-list {
  max-width: 44rem;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
}
.home-faq-item {
  border-bottom: 1px solid #e5e5e5;
}
.home-faq-item:last-child {
  border-bottom: 0;
}
.home-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #171717;
}
.home-faq summary::-webkit-details-marker {
  display: none;
}
.home-faq summary::marker {
  content: "";
  font-size: 0;
}
.home-faq-q {
  flex: 1 1 auto;
}
.home-faq-arrow {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: -3px;
  border-right: 2px solid #171717;
  border-bottom: 2px solid #171717;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.home-faq-item[open] .home-faq-arrow {
  margin-top: 3px;
  transform: rotate(-135deg);
}
.home-faq-a {
  padding: 0 20px 18px;
}
.home-faq .home-faq-a p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #525252;
}
@media (min-width: 1000px) {
  .home-faq { padding: 96px 0 128px; }
}
@media (prefers-reduced-motion: reduce) {
  .home-faq-arrow { transition: none; }
}
.home-talk {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  height: min(52vh, 480px);
  background: #111;
  color: #fff;
  text-align: center;
}
.home-talk-pic {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.home-talk::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
}
.home-talk-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 48px 20px;
}
.home-talk h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
@media (min-width: 720px) {
  .home-talk { min-height: 360px; height: min(56vh, 520px); }
  .home-talk-copy { padding: 64px 28px; }
}

.site-top-btn {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #171717;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.site-top-btn.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.site-top-btn:hover {
  background: #333;
}
.site-top-btn:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 3px;
}
.site-top-btn[hidden] {
  display: none !important;
}
.site-main-legal {
  max-width: 44rem;
}
.site-legal h1 {
  margin: 12px 0 0;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.site-legal-updated {
  margin: 12px 0 0;
  color: #a3a3a3;
  font-size: 0.9rem;
}
.site-legal-body {
  margin-top: 28px;
}
.site-legal-body h2 {
  margin: 32px 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
}
.site-legal-body h2:first-child {
  margin-top: 0;
}
.site-legal-body p {
  margin: 0 0 12px;
  color: #404040;
  line-height: 1.6;
}
.site-legal-body p strong {
  color: #333;
  font-weight: 700;
}

/* Interactive /knowledge phone guide */
body:has(.site-main-guide) {
  background: #000;
}
.site-main-guide {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  flex: 1;
  min-height: 0;
  overflow: visible;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.site-main-guide p { color: inherit; }
.guide-page {
  flex: none;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.site-main-guide .guide-title {
  flex-shrink: 0;
  margin: 20px 16px 0;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}
.site-main-guide .guide-hint {
  flex-shrink: 0;
  margin: 0;
  padding: 8px 12px 4px;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #d4d4d4;
}
.guide-svcs {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0 10px 8px;
  overflow: hidden;
  text-align: center;
}
.guide-svcs a {
  margin: 2px 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #a3a3a3;
  text-decoration: none;
  font-size: 0.68rem;
  line-height: 1.3;
  white-space: nowrap;
}
.guide-svcs-sep {
  margin: 0 6px;
  color: #525252;
  font-size: 0.68rem;
  line-height: 1.3;
}
.guide-svcs a.on {
  background: transparent;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.guide-stage {
  flex: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 8px 24px;
}
.guide-phone {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 526 / 1024;
  height: auto;
}
.guide-phone-pic {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}
.guide-screen {
  position: absolute;
  top: 9.6%;
  right: 9.9%;
  bottom: 10.4%;
  left: 9.15%;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #111;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}
.guide-coming {
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #e5e5e5;
}
.guide-app {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #111;
  position: relative;
  overflow: hidden;
}
.guide-head {
  flex-shrink: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 8px 4px;
}
.guide-logo {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.guide-logo img {
  display: block;
  height: 16px;
  width: auto;
}
.guide-head-right {
  min-width: 0;
  max-width: 62%;
}
.guide-token {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: end;
}
.guide-welcome {
  display: block;
  max-width: 100%;
  margin-bottom: 2px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.guide-mid {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 8px;
}
.guide-pane {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.guide-box-wrap {
  flex: 1;
  min-height: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
.guide-box {
  flex: 1;
  min-height: 0;
  background: #fff;
  color: #111;
  padding: 6px 8px 4px;
  border-radius: 4px;
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.guide-box.guest { transform: rotate(180deg); }
.guide-app.same-view .guide-box.guest { transform: none; }
.guide-app.same-view .guide-mic.guest { display: none; }
.guide-line {
  display: block;
  text-align: start;
}
.guide-line.strong { font-weight: 600; }
.guide-box-foot {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
}
.guide-how,
.guide-wipe {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b0b0b0;
  color: #fff;
  cursor: pointer;
}
.guide-how svg,
.guide-wipe svg {
  display: block;
  width: 12px;
  height: 12px;
}
.guide-box.guest .guide-wipe svg { transform: rotate(180deg); }
.guide-app.same-view .guide-box.guest .guide-wipe svg { transform: none; }
.guide-mute .ico-mute { display: none; }
.guide-mute.muted .ico-sound { display: none; }
.guide-mute.muted .ico-mute { display: block; }
.guide-mute.muted { background: #dc2626; }
.guide-rotate {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 3;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
}
.guide-mic {
  flex-shrink: 0;
  width: 100%;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: #16a34a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.15;
}
.guide-mic.guest { margin-bottom: 4px; transform: rotate(180deg); }
.guide-mic.host { margin-top: 4px; }
.guide-mic.live { background: #dc2626; }
.guide-app.same-view .guide-mic.guest { transform: none; }
.guide-mark {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding: 2px 16px 0;
}
.guide-mark img {
  display: block;
  height: 18px;
  width: auto;
  max-width: 50%;
  object-fit: contain;
}
.guide-bar {
  flex-shrink: 0;
  padding: 4px 10px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.guide-lang {
  flex: 1;
  background: #2a2a2a;
  border: 0;
  color: #fff;
  border-radius: 999px;
  padding: 7px 6px;
  font-size: 0.68rem;
  cursor: pointer;
}
.guide-swap {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.guide-tray {
  flex-shrink: 0;
  height: 32px;
  border: 0;
  background: #3f3f3f;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-tray-icon {
  display: block;
  width: 16px;
  height: 2px;
  background: #fff;
  box-shadow: 0 -5px 0 #fff, 0 5px 0 #fff;
}
.guide-sheet,
.guide-share {
  position: absolute;
  inset: 0;
  z-index: 12;
}
.guide-explain[hidden],
.guide-sheet[hidden],
.guide-share[hidden] {
  display: none !important;
}
.guide-sheet-dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.guide-sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 32px;
  background: #4a4a4a;
}
.guide-share-panel {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 12px;
  background: #4a4a4a;
  border-radius: 12px;
  overflow: hidden;
}
.guide-sheet-item {
  display: block;
  width: 100%;
  padding: 14px 10px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #5c5c5c;
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  cursor: pointer;
}
.guide-sheet-item:last-child { border-bottom: 0; }
.guide-sheet-item:hover,
.guide-sheet-item:focus-visible,
.guide-sheet-item.on {
  background: #ea580c;
  color: #fff;
}
.guide-explain {
  position: absolute;
  z-index: 20;
  width: min(72%, 210px);
  margin: 0;
  padding: 12px 28px 12px 12px;
  background: #14b8a6;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  pointer-events: auto;
}
.guide-explain-bar,
.guide-explain-title {
  display: none;
}
.guide-explain-close {
  position: absolute;
  top: 4px;
  inset-inline-end: 6px;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
}
.guide-explain-body {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #fff;
}
.guide-explain-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border: 8px solid transparent;
}
.guide-explain[data-arrow="top"] .guide-explain-arrow {
  top: -16px;
  left: var(--arrow-x, 50%);
  margin-left: -8px;
  border-top-width: 0;
  border-bottom-color: #14b8a6;
}
.guide-explain[data-arrow="bottom"] .guide-explain-arrow {
  bottom: -16px;
  left: var(--arrow-x, 50%);
  margin-left: -8px;
  border-bottom-width: 0;
  border-top-color: #14b8a6;
}
.guide-hit {
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
  .guide-hit:hover {
    outline: 1px solid rgba(255, 255, 255, 0.35);
    outline-offset: 1px;
  }
  .guide-box.guide-hit:hover {
    outline-color: rgba(22, 163, 74, 0.55);
  }
}
.guide-svc {
  margin-inline-start: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}
.guide-class-langs {
  flex-shrink: 0;
  display: flex;
  gap: 6px;
  padding: 4px 8px 2px;
}
.guide-class-pick {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: start;
  cursor: pointer;
  color: #d1d5db;
  font: inherit;
}
.guide-class-pick > span:first-child {
  font-size: 10px;
}
.guide-class-fake {
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0 8px;
  border-radius: 8px;
  background: #2a2a2a;
  color: #fff;
  font-size: 11px;
}
.guide-lesson {
  flex-shrink: 0;
  margin: 0 10px 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 11px;
  text-align: start;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.guide-class-mid {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0 8px;
}
.guide-class-status {
  flex-shrink: 0;
  margin: 4px 10px 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d1d5db;
  font-size: 0.72rem;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
  min-height: 2em;
}
.guide-app.is-class .guide-mic.host {
  width: auto;
  margin: 4px 8px 2px;
}
.guide-app.is-read .guide-svc {
  font-size: 11px;
}
.guide-read-mid {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 8px;
}
.guide-app.is-read .guide-box {
  font-size: 0.72rem;
}
.guide-read-foot {
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
}
.guide-read-tools {
  display: flex;
  align-items: center;
  gap: 6px;
}
.guide-read-out {
  justify-content: flex-end;
}
.guide-pick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 58%;
  height: 22px;
  margin: 0;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  flex-shrink: 1;
}
.guide-count {
  margin-left: auto;
  color: #9ca3af;
  font-size: 0.62rem;
}
.guide-formats {
  margin: 0;
  color: #9ca3af;
  font-size: 0.52rem;
  line-height: 1.25;
}
.guide-speak .i-pause { display: none; }
.guide-speak.live .i-speak { display: none; }
.guide-speak.live .i-pause { display: block; }
.guide-speak.live { background: #16a34a; }
.guide-app.is-read .guide-mic.host {
  width: auto;
  margin: 4px 8px 2px;
}
.guide-preview {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 8px 4px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: start;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
.guide-preview-pic {
  display: block;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 6px;
  background: #2a2a2a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.guide-preview-name {
  min-width: 0;
  color: #9ca3af;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.guide-picks {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.guide-app.is-photo .guide-read-tools {
  flex-wrap: nowrap;
}
.guide-app.is-photo .guide-picks {
  flex: 1 1 auto;
}
.guide-app.is-photo .guide-pick {
  flex: 0 1 auto;
  max-width: none;
}
.guide-app.is-photo .guide-photo-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
.guide-app.is-photo .guide-mic.host {
  width: auto;
  margin: 4px 8px 2px;
}
.guide-app.is-social .guide-svc {
  font-size: 11px;
}
.guide-social-mid {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0 8px;
}
.guide-app.is-social .guide-box {
  font-size: 0.72rem;
}
.guide-turns {
  flex: 1;
  min-height: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.guide-social-lines {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: start;
  cursor: pointer;
}
.guide-turn {
  display: flex;
  flex-direction: column;
  max-width: 86%;
  margin: 0 0 8px;
}
.guide-turn.me { align-self: flex-end; align-items: flex-end; }
.guide-turn.them { align-self: flex-start; align-items: flex-start; }
.guide-who {
  margin: 0 0 3px;
  font-size: 0.7rem;
  color: #6b7280;
}
.guide-turn.me .guide-who { color: #166534; text-align: end; }
.guide-bubble {
  border-radius: 10px;
  padding: 8px 10px;
}
.guide-turn.me .guide-bubble { background: #d9fdd3; }
.guide-turn.them .guide-bubble { background: #e5e7eb; }
.guide-said,
.guide-got {
  display: block;
  line-height: 1.35;
}
.guide-said { font-weight: 700; }
.guide-got { margin-top: 4px; opacity: 0.92; }
.guide-pic-sq {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 0 6px;
  border-radius: 6px;
  background: #2a2a2a;
}
.guide-pic-hint {
  display: block;
  font-size: 0.62rem;
  line-height: 1.3;
  color: #4b5563;
}
.guide-type-row {
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin: 4px 8px;
}
.guide-type-photo {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #2a2a2a;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-type-photo svg {
  display: block;
  width: 16px;
  height: 16px;
}
.guide-type-in {
  flex: 1;
  min-width: 0;
  height: 36px;
  margin: 0;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: #2a2a2a;
  color: #9ca3af;
  font-size: 0.72rem;
  text-align: start;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.guide-type-send {
  flex-shrink: 0;
  height: 36px;
  margin: 0;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: #16a34a;
  color: #fff;
  font-size: 0.72rem;
  cursor: pointer;
}
.guide-app.is-social .guide-mic.host {
  width: auto;
  margin: 4px 8px 2px;
}

/* Soft home-screen prompt (avoids Chrome's scary "Install" mini-bar) */
.pwa-home-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 12px;
  border-radius: 12px;
  background: #171717;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  font-family: Arial, Helvetica, sans-serif;
}
.pwa-home-add,
.pwa-home-later {
  margin: 0;
  border: 0;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.2;
  cursor: pointer;
  font-family: inherit;
}
.pwa-home-add {
  flex: 1 1 auto;
  min-width: 140px;
  padding: 10px 14px;
  background: #16a34a;
  color: #fff;
  font-weight: 400;
}
.pwa-home-later {
  flex: 0 0 auto;
  padding: 10px 12px;
  background: transparent;
  color: #d4d4d4;
  text-decoration: underline;
}
