:root {
  color-scheme: light;
  --ink: #171717;
  --paper: #ffffff;
  --cream: #f8f6f0;
  --soft: #f3f1eb;
  --line: #e5dfd2;
  --muted: #69707a;
  --green: #246b55;
  --green-2: #dff1e8;
  --orange: #bd6a36;
  --orange-2: #fff0e5;
  --blue: #355f94;
  --blue-2: #eaf2ff;
  --dark: #07110f;
  --dark-2: #0f1c18;
  --shadow: 0 28px 70px rgba(24, 28, 31, 0.12);
  --content: min(1120px, calc(100vw - 48px));
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(229, 223, 210, 0.74);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.console-brand,
.demo-user {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand {
  font-weight: 800;
  white-space: nowrap;
}

.brand img,
.console-brand img,
.demo-user img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(36, 107, 85, 0.16);
}

.nav-links {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  color: #40464d;
  font-size: 15px;
}

.nav-links a {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover {
  color: var(--green);
  transform: translateY(-1px);
}

.nav-links a.active {
  color: var(--green);
  font-weight: 820;
}

.header-actions,
.hero-actions,
.toolbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ghost-link {
  color: #4f555d;
  font-size: 15px;
}

.language-switch {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #4f555d;
  font-size: 13px;
  font-weight: 820;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.language-switch:hover {
  transform: translateY(-1px);
  border-color: rgba(36, 107, 85, 0.28);
  background: #fff;
  color: var(--green);
}

.language-switch b {
  color: #a5abb3;
  font-weight: 680;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 780;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 28px rgba(23, 23, 23, 0.14);
}

.button-dark:hover {
  background: #000;
}

.button-primary-cta {
  min-height: 52px;
  padding: 0 26px;
  background: #fff;
  color: #0b1512;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.button-primary-cta:hover {
  background: var(--orange-2);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 22px 52px rgba(0, 0, 0, 0.3);
}

.button-primary-cta span {
  font-size: 18px;
  line-height: 1;
}

.button-light {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  box-shadow: 0 14px 28px rgba(23, 23, 23, 0.08);
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0;
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 2px;
  grid-area: 1 / 1;
  border-radius: 99px;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

body.menu-open .menu-button span:first-child {
  transform: rotate(45deg);
}

body.menu-open .menu-button span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 78px max(24px, calc((100vw - 1180px) / 2)) 72px;
  background: var(--dark);
  color: #fff;
  isolation: isolate;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-stage::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.34;
}

.hero-stage::after {
  inset: 0;
  background: rgba(7, 17, 15, 0.24);
}

.hero-console {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2 - 90px));
  bottom: 24px;
  width: min(768px, 52vw);
  height: 548px;
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr) 180px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  transform: rotate(-1.5deg);
  animation: consoleFloat 8s ease-in-out infinite;
  will-change: transform;
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.1) 48%,
    rgba(114, 212, 156, 0.16) 50%,
    transparent 58%
  );
  transform: translateX(-54%);
  animation: consoleScan 6.8s ease-in-out infinite;
}

.hero-console > * {
  position: relative;
  z-index: 2;
}

.console-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.console-brand {
  width: 100%;
  gap: 8px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 820;
  min-width: 0;
}

.console-brand img {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}

.console-brand span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-item {
  min-height: 38px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.nav-item.active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.console-main {
  min-width: 0;
  padding: 22px;
}

.console-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.console-topline div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #72d49c;
  box-shadow: 0 0 0 5px rgba(114, 212, 156, 0.12);
  animation: statusPulse 1.8s ease-in-out infinite;
}

.console-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  user-select: none;
  -webkit-user-select: none;
}

.console-flow span {
  position: relative;
  z-index: 2;
  min-height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 760;
  pointer-events: none;
}

.console-flow i {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  width: calc((100% - 12px) / 4);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 177, 119, 0.6), rgba(114, 212, 156, 0.5));
  box-shadow: 0 8px 24px rgba(114, 212, 156, 0.12);
  transform: translateX(100%);
}

.capture-panel,
.summary-card,
.chat-card,
.transcript-preview article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.capture-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 18px;
  animation: demoFocus 4.8s ease-in-out infinite;
}

.mini-label {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 820;
}

.capture-panel strong {
  display: block;
  font-size: 18px;
  line-height: 1.28;
}

.meter-bars {
  height: 50px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.meter-bars i {
  width: 10px;
  border-radius: 999px 999px 0 0;
  background: #72d49c;
  animation: pulse 1.5s ease-in-out infinite;
}

.meter-bars i:nth-child(1) {
  height: 22px;
}

.meter-bars i:nth-child(2) {
  height: 42px;
  animation-delay: 90ms;
}

.meter-bars i:nth-child(3) {
  height: 30px;
  background: #ffb177;
  animation-delay: 180ms;
}

.meter-bars i:nth-child(4) {
  height: 54px;
  animation-delay: 270ms;
}

.meter-bars i:nth-child(5) {
  height: 28px;
  background: #84b2ff;
  animation-delay: 360ms;
}

.meter-bars i:nth-child(6) {
  height: 46px;
  animation-delay: 450ms;
}

.transcript-preview {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.transcript-preview article {
  padding: 15px;
  transform-origin: center left;
  animation: transcriptLift 6s ease-in-out infinite;
}

.transcript-preview article:nth-child(2) {
  animation-delay: 1.4s;
}

.transcript-preview span,
.recording-title p,
.transcript-list span,
.demo-user span,
.billing-top span,
.site-footer p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.transcript-preview span {
  color: rgba(255, 255, 255, 0.54);
}

.transcript-preview p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.48;
}

.console-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.summary-card,
.chat-card {
  padding: 18px;
}

.summary-card {
  animation: summaryReady 6s ease-in-out infinite;
  animation-delay: 1.8s;
}

.chat-card {
  animation: summaryReady 6s ease-in-out infinite;
  animation-delay: 3s;
}

.summary-card strong,
.chat-card strong {
  display: block;
  line-height: 1.45;
}

.summary-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.summary-card li {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.chat-card span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  transform: translateX(-72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 820;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #ffb177;
}

h1 {
  max-width: 560px;
  margin: 0;
  font-family:
    ui-serif, "Songti SC", "Noto Serif CJK SC", "Times New Roman", serif;
  font-size: 60px;
  line-height: 1.02;
  font-weight: 760;
  letter-spacing: 0;
}

h1 span {
  white-space: nowrap;
}

html[lang="en"] h1 span {
  white-space: normal;
}

.hero-copy {
  max-width: 500px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.78;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 28px;
}

.proof-strip {
  position: relative;
  z-index: 5;
  width: var(--content);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: -34px auto 0;
}

.proof-strip article {
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.proof-strip strong {
  display: block;
  margin-bottom: 9px;
  font-size: 18px;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.62;
}

.section,
.workspace-section,
.billing-section {
  width: var(--content);
  margin: 0 auto;
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}

.section h2,
.workspace-section h2,
.billing-section h2,
.cta-section h2 {
  max-width: 780px;
  margin: 0;
  font-family:
    ui-serif, "Songti SC", "Noto Serif CJK SC", "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.14;
  font-weight: 760;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.section-copy,
.cta-section p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.section-copy {
  max-width: 690px;
  margin: 20px auto 0;
}

.section-centered {
  text-align: center;
}

.section-centered h2 {
  margin-inline: auto;
}

.workflow-grid,
.scenario-grid,
.price-grid {
  display: grid;
  gap: 16px;
}

.workflow-grid {
  grid-template-columns: repeat(4, 1fr);
}

.workflow-grid article,
.scenario-grid article,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.workflow-grid article:hover,
.scenario-grid article:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 107, 85, 0.28);
  box-shadow: 0 20px 48px rgba(23, 23, 23, 0.07);
}

.workflow-grid article {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
}

.workflow-grid span,
.scenario-grid span {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.workflow-grid h3,
.scenario-grid h3,
.price-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.workflow-grid p,
.scenario-grid p,
.price-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.workflow-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.workflow-card-top b {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(36, 107, 85, 0.18);
  border-radius: 14px;
  background: linear-gradient(145deg, #ecf8f1, #fff6ee);
  color: var(--green);
  font-size: 25px;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(36, 107, 85, 0.1);
}

.workflow-card-visual {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 26px;
}

.workflow-card-visual i {
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 107, 85, 0.22), rgba(36, 107, 85, 0.62));
}

.workflow-card-visual i:nth-child(2) {
  width: 78%;
  background: linear-gradient(90deg, rgba(189, 106, 54, 0.22), rgba(189, 106, 54, 0.68));
}

.workflow-card-visual i:nth-child(3) {
  width: 56%;
  background: linear-gradient(90deg, rgba(53, 95, 148, 0.18), rgba(53, 95, 148, 0.56));
}

.workflow-grid article:nth-child(2) .workflow-card-visual i:nth-child(1) {
  width: 62%;
}

.workflow-grid article:nth-child(2) .workflow-card-visual i:nth-child(2) {
  width: 92%;
}

.workflow-grid article:nth-child(3) .workflow-card-visual i:nth-child(1) {
  width: 84%;
}

.workflow-grid article:nth-child(3) .workflow-card-visual i:nth-child(3) {
  width: 72%;
}

.workflow-grid article:nth-child(4) .workflow-card-visual i:nth-child(1) {
  width: 70%;
}

.workflow-grid article:nth-child(4) .workflow-card-visual i:nth-child(2) {
  width: 64%;
}

.workflow-chain {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.workflow-chain span {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border: 1px solid rgba(36, 107, 85, 0.14);
  border-radius: 8px;
  background: #fff;
}

.workflow-chain b {
  color: var(--green);
  font-size: 24px;
  line-height: 1;
}

.workflow-chain small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.belief-section {
  position: relative;
  width: min(1180px, calc(100vw - 48px));
  padding-block: 92px 98px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.belief-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 72px 76px 66px;
  border: 1px solid rgba(229, 223, 210, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 241, 0.9) 56%, rgba(243, 250, 246, 0.88)),
    #fff;
  box-shadow: 0 34px 90px rgba(24, 28, 31, 0.08);
}

.belief-card::before,
.belief-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.belief-card::before {
  inset: 24px;
  border: 1px solid rgba(36, 107, 85, 0.1);
  border-radius: 6px;
}

.belief-card::after {
  right: 76px;
  bottom: 52px;
  width: 132px;
  height: 1px;
  background: linear-gradient(90deg, rgba(36, 107, 85, 0.4), transparent);
}

.belief-card-top {
  position: absolute;
  top: 46px;
  left: 76px;
  right: 76px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.belief-card-top .eyebrow {
  margin: 0;
}

.belief-card-top span {
  color: rgba(23, 23, 23, 0.42);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.belief-section h2 {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.14;
}

.belief-section h2 span {
  color: var(--green);
}

.compare-card span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
}

.scene-showcase-section {
  border-top: 1px solid var(--line);
}

.scene-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.scene-showcase-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(23, 23, 23, 0.06);
}

.scene-showcase-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.scene-showcase-card div {
  padding: 24px;
}

.scene-showcase-card h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.32;
}

.scene-showcase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.workspace-section {
  width: 100%;
  padding-inline: max(24px, calc((100vw - 1120px) / 2));
  background: var(--cream);
  border-block: 1px solid var(--line);
}

.workspace-demo {
  min-height: 690px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.workspace-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: #fbfaf7;
}

.demo-user {
  margin-bottom: 18px;
}

.demo-user strong,
.demo-user span {
  display: block;
}

.demo-user span {
  margin-top: 2px;
}

.workspace-sidebar button,
.demo-sidebar button,
.detail-toolbar button,
.speaker-row button,
.suite-tabs button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.workspace-sidebar button {
  color: #4f555d;
  text-align: left;
  padding: 0 14px;
}

.workspace-sidebar button.active,
.workspace-sidebar button:hover {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(23, 23, 23, 0.05);
}

.recording-detail {
  min-width: 0;
  padding: 24px;
}

.detail-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.detail-toolbar button,
.speaker-row button {
  border-color: var(--line);
  background: #fff;
  padding: 0 14px;
  color: #3f454b;
}

.detail-toolbar button:hover,
.speaker-row button:hover {
  background: var(--soft);
}

.recording-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: center;
  padding: 24px 0;
}

.recording-title h3 {
  margin: 0 0 7px;
  font-size: 28px;
}

.recording-title p {
  margin: 0;
}

.playback {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.playback-line {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--soft);
}

.playback-line i {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.speaker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 18px;
}

.transcript-list {
  display: grid;
  gap: 12px;
}

.transcript-list article,
.insight-panel,
.panel-block,
.billing-card,
.suite-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.transcript-list article {
  padding: 18px;
}

.transcript-list p {
  margin: 8px 0 0;
  color: #22272d;
  line-height: 1.7;
}

.transcript-list .translated {
  color: #657084;
}

.insight-panel {
  align-self: start;
  padding: 14px;
  background: #fbfaf7;
}

.panel-block {
  padding: 18px;
}

.panel-block + .panel-block {
  margin-top: 12px;
}

.panel-block h4 {
  margin: 0 0 12px;
  font-size: 18px;
}

.panel-block ul,
.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-block li,
.price-card li {
  position: relative;
  margin-top: 10px;
  padding-left: 20px;
}

.panel-block li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.panel-block p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}

.panel-block strong {
  line-height: 1.55;
}

.suite-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.suite-tabs button {
  border-color: var(--line);
  background: #fff;
  padding: 0 16px;
  color: #424952;
}

.suite-tabs button.active {
  border-color: rgba(36, 107, 85, 0.34);
  background: var(--green-2);
  color: var(--green);
  font-weight: 820;
}

.suite-panels {
  position: relative;
}

.suite-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: center;
  min-height: 290px;
  padding: 34px;
}

.suite-panel.active {
  display: grid;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--orange-2);
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
}

.suite-panel h3 {
  margin: 18px 0 12px;
  font-size: 30px;
  line-height: 1.25;
}

.suite-panel p,
.suite-panel li {
  color: var(--muted);
  line-height: 1.78;
}

.suite-panel ul {
  margin: 0;
  padding: 22px;
  border-radius: 8px;
  background: var(--cream);
  list-style-position: inside;
}

.compare-story-section {
  width: 100%;
  padding-inline: max(24px, calc((100vw - 1120px) / 2));
  background: var(--dark);
  color: #fff;
}

.compare-story-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.compare-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.compare-card {
  min-height: 360px;
  padding: 30px;
  border-radius: 14px;
}

.compare-card h3 {
  margin: 18px 0 22px;
  font-family:
    ui-serif, "Songti SC", "Noto Serif CJK SC", "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: 0;
}

.compare-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.compare-card li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.compare-card-muted {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.compare-card-muted span {
  color: rgba(255, 255, 255, 0.56);
}

.compare-card-featured {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(114, 212, 156, 0.34);
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 177, 119, 0.28), transparent 34%),
    radial-gradient(circle at 85% 8%, rgba(114, 212, 156, 0.24), transparent 34%),
    rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.compare-card-featured::after {
  position: absolute;
  right: 26px;
  top: 24px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(114, 212, 156, 0.16);
  color: #b8f1d2;
  font-size: 12px;
  font-weight: 850;
  content: "推荐流程";
}

.language-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.language-inner {
  width: var(--content);
  margin: 0 auto;
  padding: 86px 0;
  text-align: center;
}

.language-copy {
  max-width: 760px;
  margin: 0 auto;
}

.language-inner h2 {
  margin: 0;
  font-family:
    ui-serif, "Songti SC", "Noto Serif CJK SC", "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.16;
  font-weight: 760;
  letter-spacing: 0;
}

.language-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.language-marquee {
  overflow: hidden;
  display: grid;
  gap: 12px;
  margin-top: 42px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.language-track {
  width: max-content;
  display: flex;
  gap: 10px;
  animation: languageMove 34s linear infinite;
}

.language-track-reverse {
  animation-direction: reverse;
  transform: translateX(-50%);
}

.language-track span {
  min-width: 112px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf7;
  color: #384047;
  font-weight: 780;
  white-space: nowrap;
}

.scenarios-section {
  border-top: 1px solid var(--line);
}

.scenario-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}

.scenario-grid article {
  min-height: 240px;
  padding: 24px;
}

.research-preview-section {
  border-top: 1px solid var(--line);
}

.research-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.research-preview-grid article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.research-preview-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 107, 85, 0.28);
  box-shadow: 0 20px 48px rgba(23, 23, 23, 0.07);
}

.research-preview-grid span,
.research-card span,
.research-featured span {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.research-preview-grid h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.research-preview-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.research-preview-grid a {
  margin-top: auto;
  color: var(--green);
  font-weight: 820;
}

.research-preview-cta {
  margin-top: 28px;
}

.plan-bridge-section {
  border-top: 1px solid var(--line);
}

.plan-bridge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plan-bridge-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.plan-bridge-grid span {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.plan-bridge-grid h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.plan-bridge-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.plan-bridge-cta {
  margin-top: 28px;
}

.billing-section {
  width: 100%;
  padding-inline: max(24px, calc((100vw - 1120px) / 2));
  background: var(--dark);
  color: #fff;
}

.billing-section .eyebrow {
  color: #ffb177;
}

.billing-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 18px;
}

.billing-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.billing-top strong {
  display: block;
  margin-top: 8px;
  font-size: 42px;
  line-height: 1.05;
}

.usage-line {
  height: 10px;
  overflow: hidden;
  margin: 24px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.usage-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #72d49c;
}

.billing-card dl {
  margin: 0;
}

.billing-card div + div {
  margin-top: 16px;
}

.billing-card dt {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 820;
}

.billing-card dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.billing-section .price-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.price-card.featured {
  border-color: rgba(114, 212, 156, 0.52);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.price {
  margin: 8px 0 22px;
  font-size: 42px;
  line-height: 1;
  font-weight: 880;
}

.price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 680;
}

.price-card .button {
  margin-top: auto;
}

.pricing-page {
  background: #fff;
}

.pricing-hero {
  background: var(--dark);
  color: #fff;
  padding: 96px max(24px, calc((100vw - 1120px) / 2)) 88px;
}

.pricing-hero-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: center;
}

.pricing-hero-grid > *,
.pricing-section-head > * {
  min-width: 0;
}

.pricing-hero h1 {
  max-width: 720px;
  font-size: 58px;
  overflow-wrap: anywhere;
}

.pricing-hero h1 span {
  white-space: normal;
}

.pricing-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.82;
}

.pricing-hero-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.pricing-hero-panel > span,
.plan-label,
.topup-card span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
}

.pricing-hero-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 42px;
  line-height: 1;
}

.pricing-hero-panel p {
  margin-top: 16px;
}

.pricing-hero-panel dl {
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}

.pricing-hero-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-hero-panel dt {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 760;
}

.pricing-hero-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  text-align: right;
}

.pricing-section {
  width: var(--content);
  margin: 0 auto;
  padding: 96px 0;
}

.pricing-section + .pricing-section {
  border-top: 1px solid var(--line);
}

.pricing-section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

.pricing-section-head h2,
.pricing-faq-section h2 {
  margin: 0;
  font-family:
    ui-serif, "Songti SC", "Noto Serif CJK SC", "Times New Roman", serif;
  font-size: 46px;
  line-height: 1.14;
  font-weight: 760;
  letter-spacing: 0;
}

.pricing-section-head p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  white-space: nowrap;
}

.billing-toggle button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0 16px;
  color: #58606a;
  cursor: pointer;
}

.billing-toggle button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(23, 23, 23, 0.08);
}

.billing-toggle span {
  color: var(--green);
  font-size: 12px;
  font-weight: 820;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pricing-plan-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.pricing-plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 107, 85, 0.28);
  box-shadow: 0 22px 52px rgba(23, 23, 23, 0.08);
}

.pricing-plan-card.featured {
  border-color: var(--ink);
  box-shadow: 0 24px 58px rgba(23, 23, 23, 0.12);
}

.recommend-badge {
  position: absolute;
  top: -11px;
  right: 18px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.plan-kicker {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.pricing-plan-card h3 {
  margin: 14px 0 4px;
  font-size: 24px;
}

.plan-label {
  min-height: 20px;
  margin: 0;
}

.plan-price {
  margin: 20px 0 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-price strong {
  font-size: 36px;
  line-height: 1;
  font-weight: 880;
}

.plan-price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 680;
}

.plan-note {
  min-height: 24px;
  margin: 0 0 18px;
  color: #27303a;
  font-weight: 760;
}

.pricing-plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-plan-card li {
  position: relative;
  margin-top: 12px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.pricing-plan-card .button {
  width: 100%;
  margin-top: auto;
}

.topup-section {
  background: #fff;
}

.topup-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.topup-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.topup-card.featured {
  border-color: var(--ink);
  box-shadow: 0 18px 44px rgba(23, 23, 23, 0.1);
}

.topup-card strong {
  display: block;
  margin-top: 14px;
  font-size: 28px;
}

.topup-card p {
  margin: 8px 0 0;
  color: #27303a;
}

.topup-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.custom-recharge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
}

.custom-recharge strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.custom-recharge p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.compare-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  line-height: 1.55;
}

.compare-table thead th {
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
}

.compare-table tbody th {
  width: 260px;
  color: #27303a;
  font-weight: 760;
}

.compare-table td {
  color: var(--muted);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-faq-section {
  padding-top: 96px;
}

.research-page {
  background: #fff;
}

.research-hero {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: 56px;
  align-items: center;
  padding: 92px max(24px, calc((100vw - 1120px) / 2));
  background: var(--dark);
  color: #fff;
}

.research-hero-copy {
  min-width: 0;
}

.research-hero h1 {
  max-width: 740px;
  margin: 0;
  font-family:
    ui-serif, "Songti SC", "Noto Serif CJK SC", "Times New Roman", serif;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: 0;
}

.research-hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.82;
}

.research-featured {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.research-featured img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.research-featured div {
  padding: 24px;
}

.research-featured h2 {
  margin: 14px 0 10px;
  font-size: 28px;
  line-height: 1.28;
}

.research-featured p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.research-index-section {
  padding-top: 98px;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.seo-topic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.seo-topic-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(7, 95, 70, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.seo-topic-strip a:hover {
  transform: translateY(-1px);
  border-color: rgba(7, 95, 70, 0.34);
  background: #fff;
}

.research-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.research-card h3 {
  margin: 18px 0 12px;
  font-size: 24px;
  line-height: 1.32;
}

.research-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.research-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.research-card li {
  position: relative;
  margin-top: 10px;
  padding-left: 18px;
  color: #3f454b;
  line-height: 1.6;
}

.research-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.research-read-link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--green);
  font-weight: 820;
}

.article-shell {
  width: min(920px, calc(100vw - 48px));
  margin: 0 auto;
}

.article-hero {
  padding: 86px 0 42px;
}

.article-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green);
  font-weight: 820;
}

.article-hero h1 {
  margin: 0;
  font-family:
    ui-serif, "Songti SC", "Noto Serif CJK SC", "Times New Roman", serif;
  font-size: 56px;
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}

.article-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.article-content {
  display: none;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(23, 23, 23, 0.06);
}

.article-content.active {
  display: block;
}

.article-meta {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 820;
}

.article-content h2 {
  margin: 0 0 22px;
  font-size: 34px;
  line-height: 1.25;
}

.article-content h3 {
  margin: 34px 0 12px;
  font-size: 22px;
}

.article-content p,
.article-content li {
  color: #4f5966;
  font-size: 17px;
  line-height: 1.86;
}

.article-content ul,
.article-content ol {
  margin: 0;
  padding-left: 22px;
}

.article-content blockquote {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--green);
  background: var(--cream);
  color: #2f3b35;
  line-height: 1.8;
  font-weight: 720;
}

.article-media,
.article-visual {
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfaf7;
}

.article-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-media figcaption {
  padding: 14px 18px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.article-visual {
  padding: 24px;
}

.visual-title {
  margin-bottom: 18px;
  color: #171717;
  font-weight: 860;
}

.visual-grid,
.visual-score-grid,
.visual-case-grid {
  display: grid;
  gap: 12px;
}

.visual-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.visual-grid span,
.visual-case-grid span,
.visual-score-card {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(7, 95, 70, 0.14);
  border-radius: 8px;
  background: #fff;
  color: #4f5966;
  font-size: 14px;
  line-height: 1.55;
}

.visual-grid strong,
.visual-case-grid strong,
.visual-score-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
}

.visual-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-bars {
  display: grid;
  gap: 12px;
}

.visual-bar {
  display: grid;
  grid-template-columns: 116px 1fr 42px;
  align-items: center;
  gap: 12px;
  color: #4f5966;
  font-size: 14px;
  font-weight: 760;
}

.visual-bar i {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #ece8df;
}

.visual-bar i::after {
  width: var(--value);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #075f46, #73c59b);
  content: "";
}

.visual-score-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visual-score-card strong {
  color: #171717;
  font-size: 18px;
}

.visual-score-card b {
  color: var(--green);
  font-size: 28px;
  line-height: 1;
}

.article-table-wrap {
  margin: 30px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.article-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.article-table th,
.article-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: #4f5966;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.article-table th {
  color: #171717;
  background: #fbfaf7;
  font-weight: 850;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(7, 95, 70, 0.1);
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.article-content a,
.article-nav a {
  color: var(--green);
  font-weight: 780;
  overflow-wrap: anywhere;
}

.article-faq,
.article-related {
  margin: 30px 0;
  padding: 22px;
  border: 1px solid rgba(7, 95, 70, 0.14);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(7, 95, 70, 0.045), rgba(244, 241, 234, 0.72));
}

.article-faq h3,
.article-related h3 {
  margin-top: 0;
}

.article-faq dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.article-faq dt {
  color: #171717;
  font-weight: 860;
}

.article-faq dd {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.article-related ul {
  margin-bottom: 0;
}

.article-nav {
  padding: 42px 0 88px;
}

.article-nav h2 {
  margin: 0 0 18px;
  font-size: 26px;
}

.article-nav div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.article-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-section {
  border-bottom: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 10px;
}

summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 780;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--green);
  font-size: 24px;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.8;
}

.cta-section {
  width: min(960px, calc(100vw - 48px));
  margin: 0 auto 96px;
  padding: 72px 28px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.cta-section h2 {
  margin-inline: auto;
}

.cta-section p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px auto 0;
}

.cta-section .hero-actions {
  justify-content: center;
}

.site-footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 32px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.footer-brand-block {
  display: grid;
  gap: 8px;
}

.footer-brand-block p,
.footer-copy {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-links a + a::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  margin-right: 14px;
  background: var(--line);
  vertical-align: -1px;
}

.site-footer a {
  color: var(--green);
  font-weight: 780;
}

.legal-shell {
  width: min(920px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 92px 0 104px;
}

.legal-hero {
  padding-bottom: 38px;
}

.legal-hero h1 {
  margin: 0;
  font-family:
    ui-serif, "Songti SC", "Noto Serif CJK SC", "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.12;
  font-weight: 760;
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.legal-content {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(23, 23, 23, 0.06);
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: 25px;
  line-height: 1.3;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #4f5966;
  font-size: 16px;
  line-height: 1.86;
}

.legal-content ul {
  margin: 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--green);
  font-weight: 780;
  overflow-wrap: anywhere;
}

.company-shell {
  width: min(1040px, calc(100vw - 48px));
}

.company-content {
  display: grid;
  gap: 34px;
}

.company-intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(36, 107, 85, 0.15);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(36, 107, 85, 0.06), rgba(248, 246, 240, 0.86));
}

.company-intro-panel h2 {
  margin-top: 8px;
}

.company-product-mark {
  min-height: 210px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(36, 107, 85, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.company-product-mark img {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(36, 107, 85, 0.16);
}

.company-product-mark strong {
  font-size: 22px;
  font-weight: 850;
}

.company-product-mark span {
  color: var(--muted);
  font-size: 13px;
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.company-info-item {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.company-info-wide {
  grid-row: span 2;
}

.company-info-item span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
}

.company-info-item strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.62;
}

.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 560ms ease,
    transform 560ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    transform: scaleY(0.74);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes consoleFloat {
  0%,
  100% {
    transform: rotate(-1.5deg) translateY(0);
  }
  50% {
    transform: rotate(-1.5deg) translateY(-10px);
  }
}

@keyframes consoleScan {
  0%,
  46% {
    transform: translateX(-54%);
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  72%,
  100% {
    transform: translateX(54%);
    opacity: 0;
  }
}

@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(114, 212, 156, 0.12);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(114, 212, 156, 0.04);
  }
}

@keyframes demoFocus {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow: none;
  }
  38%,
  58% {
    border-color: rgba(255, 177, 119, 0.42);
    box-shadow: 0 0 0 1px rgba(255, 177, 119, 0.08), 0 18px 36px rgba(0, 0, 0, 0.12);
  }
}

@keyframes transcriptLift {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(255, 255, 255, 0.13);
  }
  45%,
  60% {
    transform: translateY(-4px);
    border-color: rgba(114, 212, 156, 0.34);
  }
}

@keyframes summaryReady {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(255, 255, 255, 0.13);
  }
  42%,
  62% {
    transform: translateY(-5px);
    border-color: rgba(255, 177, 119, 0.38);
  }
}

@keyframes languageMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1240px) {
  .pricing-cards,
  .research-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .research-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .hero-console {
    right: -130px;
    width: 820px;
    opacity: 0.52;
  }

  .workflow-grid,
  .proof-strip,
  .scenario-grid,
  .scene-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading,
  .pricing-layout,
  .language-inner {
    grid-template-columns: 1fr;
  }

  .compare-story-grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .research-hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pricing-hero-panel {
    max-width: 560px;
  }

  .language-inner {
    gap: 26px;
  }

  .pricing-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .topup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workspace-demo {
    grid-template-columns: 1fr;
  }

  .workspace-sidebar {
    display: grid;
    grid-template-columns: repeat(6, minmax(110px, 1fr));
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .demo-user {
    grid-column: 1 / -1;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --content: min(100vw - 36px, 740px);
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  body.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 8px;
  }

  .nav-links a:hover {
    background: var(--soft);
    transform: none;
  }

  .ghost-link,
  .header-actions > .button {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    padding-top: 84px;
  }

  .hero-console {
    right: -280px;
    bottom: 28px;
    opacity: 0.34;
  }

  .hero-content {
    transform: none;
  }

  h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section,
  .workspace-section,
  .billing-section {
    padding-block: 84px;
  }

  .section h2,
  .workspace-section h2,
  .billing-section h2,
  .pricing-section-head h2,
  .pricing-faq-section h2,
  .research-hero h1,
  .article-hero h1,
  .cta-section h2 {
    font-size: 36px;
  }

  .article-shell {
    width: min(760px, calc(100vw - 36px));
  }

  .article-hero {
    padding: 74px 0 34px;
  }

  .article-content {
    padding: 34px;
  }

  .legal-shell {
    width: min(760px, calc(100vw - 36px));
    padding: 74px 0 84px;
  }

  .legal-content {
    padding: 34px;
  }

  .legal-content h2 {
    font-size: 23px;
  }

  .company-intro-panel,
  .company-info-grid {
    grid-template-columns: 1fr;
  }

  .company-info-wide {
    grid-row: auto;
  }

  .article-content h2 {
    font-size: 30px;
  }

  .article-nav div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-grid,
  .visual-case-grid,
  .visual-score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recording-title,
  .suite-panel,
  .price-grid,
  .plan-bridge-grid,
  .research-grid {
    grid-template-columns: 1fr;
  }

  .compare-card {
    min-height: auto;
    padding: 24px;
  }

  .compare-card h3 {
    font-size: 32px;
  }

  .playback {
    max-width: 420px;
  }
}

@media (max-width: 620px) {
  :root {
    --content: min(100vw - 28px, 100%);
  }

  .site-header {
    height: 66px;
    padding-inline: 14px;
  }

  .nav-links {
    top: 66px;
  }

  .hero {
    padding: 76px 14px 78px;
  }

  .hero-console {
    right: -560px;
    bottom: 54px;
    width: 820px;
    opacity: 0.22;
  }

  h1 {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
    max-width: 290px;
  }

  .proof-strip,
  .workflow-grid,
  .scenario-grid,
  .scene-showcase-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: 16px;
  }

  .section,
  .workspace-section,
  .billing-section {
    padding-block: 68px;
  }

  .belief-section {
    width: calc(100vw - 28px);
    padding-block: 64px 68px;
  }

  .belief-card {
    min-height: 386px;
    padding: 74px 22px 58px;
  }

  .belief-card::before {
    inset: 14px;
  }

  .belief-card::after {
    right: 26px;
    bottom: 34px;
    width: 96px;
  }

  .belief-card-top {
    top: 32px;
    left: 24px;
    right: 24px;
  }

  .belief-card-top span {
    font-size: 10px;
  }

  .belief-section h2 {
    font-size: clamp(31px, 8.4vw, 38px);
    line-height: 1.2;
  }

  .language-inner {
    width: calc(100vw - 28px);
    padding: 56px 0;
  }

  .language-inner h2 {
    font-size: 30px;
  }

  .pricing-hero {
    padding: 72px 14px 64px;
  }

  .research-hero {
    padding: 72px 14px 64px;
  }

  .pricing-hero-grid,
  .pricing-section,
  .research-hero-copy,
  .research-featured {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .pricing-hero h1 {
    font-size: 38px;
    line-height: 1.1;
  }

  .pricing-hero h1 span {
    display: block;
  }

  .pricing-hero p:not(.eyebrow),
  .research-hero-copy p:not(.eyebrow),
  .pricing-section-head p:not(.eyebrow) {
    font-size: 16px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .pricing-section {
    padding: 68px 0;
  }

  .section h2,
  .workspace-section h2,
  .billing-section h2,
  .pricing-section-head h2,
  .pricing-faq-section h2,
  .research-hero h1,
  .article-hero h1,
  .cta-section h2 {
    font-size: 30px;
  }

  .article-shell {
    width: calc(100vw - 28px);
  }

  .article-hero {
    padding: 68px 0 28px;
  }

  .article-hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.72;
  }

  .article-content {
    padding: 22px;
    border-radius: 8px;
  }

  .legal-content {
    padding: 24px 18px;
  }

  .company-content {
    gap: 22px;
  }

  .company-intro-panel {
    padding: 20px;
  }

  .company-product-mark {
    min-height: 170px;
  }

  .company-info-item {
    padding: 16px;
  }

  .article-content h2 {
    font-size: 24px;
  }

  .article-content h3 {
    font-size: 19px;
  }

  .article-content p,
  .article-content li {
    font-size: 16px;
    line-height: 1.78;
  }

  .article-content blockquote {
    padding: 16px 18px;
  }

  .article-nav {
    padding-bottom: 70px;
  }

  .article-nav div {
    grid-template-columns: 1fr;
  }

  .article-visual {
    padding: 18px;
  }

  .article-table-wrap {
    overflow-x: visible;
  }

  .article-table {
    min-width: 0;
  }

  .article-table thead {
    display: none;
  }

  .article-table,
  .article-table tbody,
  .article-table tr,
  .article-table td {
    display: block;
  }

  .article-table tr {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .article-table tr:last-child {
    border-bottom: 0;
  }

  .article-table td {
    display: grid;
    grid-template-columns: 94px 1fr;
    gap: 10px;
    padding: 8px 14px;
    border-bottom: 0;
  }

  .article-table td::before {
    color: #171717;
    font-weight: 850;
    content: attr(data-label);
  }

  .visual-grid,
  .visual-case-grid,
  .visual-score-grid {
    grid-template-columns: 1fr;
  }

  .visual-bar {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .section-heading {
    gap: 18px;
  }

  .workflow-chain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #workflow .section-heading h2 {
    font-size: 28px;
    line-height: 1.22;
  }

  .workflow-chain span:last-child {
    grid-column: 1 / -1;
  }

  .workflow-grid article,
  .scenario-grid article,
  .price-card,
  .pricing-plan-card {
    min-height: auto;
  }

  .pricing-cards,
  .topup-grid,
  .research-preview-grid,
  .research-grid {
    grid-template-columns: 1fr;
  }

  .research-card,
  .research-preview-grid article {
    min-height: auto;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-toggle button {
    flex: 1;
  }

  .custom-recharge {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-hero-panel {
    width: 100%;
    padding: 22px;
  }

  .pricing-hero-panel dl div {
    flex-direction: column;
    gap: 6px;
  }

  .pricing-hero-panel dd {
    text-align: left;
  }

  .recording-detail {
    padding: 16px;
  }

  .detail-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .toolbar-actions,
  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .detail-toolbar button,
  .speaker-row button,
  .suite-tabs button {
    min-height: 40px;
  }

  .suite-panel {
    padding: 22px;
  }

  .suite-panel h3 {
    font-size: 24px;
  }

  .workspace-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px;
    overflow-x: hidden;
  }

  .workspace-sidebar button,
  .demo-user {
    min-width: 0;
  }

  .cta-section {
    width: calc(100vw - 28px);
    margin-bottom: 70px;
    padding: 56px 18px;
  }

  #cta .hero-actions {
    align-items: center;
    justify-content: center;
  }

  #cta .button {
    max-width: 220px;
    margin-inline: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 82px 14px 44px;
  }

  .hero-stage {
    position: relative;
    order: 2;
    z-index: 0;
    inset: auto;
    width: 100%;
    height: 302px;
    margin-top: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 26px 70px rgba(0, 0, 0, 0.24);
  }

  .hero-stage::after {
    background: linear-gradient(180deg, rgba(7, 17, 15, 0.08), rgba(7, 17, 15, 0.2));
  }

  .hero-console {
    top: 26px;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 730px;
    height: 516px;
    opacity: 0.88;
    transform: translateX(-50%) scale(0.43) rotate(-1.2deg);
    transform-origin: top center;
    animation: none;
  }

  .hero-content {
    position: relative;
    order: 1;
    z-index: 1;
  }

  .hero .eyebrow {
    max-width: 310px;
  }

  .hero-copy {
    max-width: none;
    font-size: 16px;
    line-height: 1.78;
  }

  .hero .button {
    width: 100%;
    max-width: none;
  }

  .compare-table-wrap {
    overflow-x: visible;
    border: 0;
    background: transparent;
  }

  .compare-table {
    min-width: 0;
    display: block;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td {
    display: block;
    width: 100%;
  }

  .compare-table tr {
    margin-bottom: 12px;
    padding: 14px 14px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
  }

  .compare-table th,
  .compare-table td {
    padding: 0;
    border-bottom: 0;
  }

  .compare-table tbody th {
    width: auto;
    margin-bottom: 12px;
    color: #171717;
    font-size: 16px;
  }

  .compare-table td {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 10px;
    padding: 8px 0;
    color: #4f5966;
  }

  .compare-table td::before {
    color: var(--green);
    font-size: 13px;
    font-weight: 850;
  }

  .compare-table td:nth-child(2)::before {
    content: "免费版";
  }

  .compare-table td:nth-child(3)::before {
    content: "Lite";
  }

  .compare-table td:nth-child(4)::before {
    content: "Pro";
  }

  .compare-table td:nth-child(5)::before {
    content: "Business";
  }

  .pricing-hero-grid,
  .research-hero-copy,
  .research-featured {
    width: 100%;
    max-width: 100%;
  }

  .pricing-section {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
  }

  html[lang="en"] .compare-table td:nth-child(2)::before {
    content: "Free";
  }

  html[lang="en"] .compare-table td:nth-child(3)::before {
    content: "Lite";
  }

  html[lang="en"] .compare-table td:nth-child(4)::before {
    content: "Pro";
  }

  html[lang="en"] .compare-table td:nth-child(5)::before {
    content: "Business";
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
