:root {
  color-scheme: dark;
  --page: #07070f;
  --page-soft: #0d0d17;
  --surface: #11111c;
  --surface-strong: #171724;
  --surface-faint: rgba(255, 255, 255, 0.025);
  --ink: #f0f0f5;
  --muted: rgba(240, 240, 245, 0.5);
  --muted-strong: rgba(240, 240, 245, 0.7);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --red: #ff3b30;
  --coral: #ff7043;
  --orange: #ff9a57;
  --peach: #ffb374;
  --focus: rgba(255, 112, 67, 0.32);
  --success-bg: rgba(72, 187, 137, 0.13);
  --success-ink: #8de0b7;
  --warning-bg: rgba(245, 173, 66, 0.14);
  --warning-ink: #f5c670;
  --danger-bg: rgba(255, 83, 76, 0.14);
  --danger-ink: #ff9d98;
  --radius-card: 16px;
  --radius-control: 10px;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  background: var(--page);
  color: var(--ink);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

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

button,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--coral));
  color: #fff;
  padding: 11px 23px;
  font-weight: 680;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 5px 24px rgba(255, 59, 48, 0.3);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

button svg,
.button svg,
.brand-mark svg,
.feature-icon svg,
.proof-stars svg,
.review-stars svg,
.footer-badges svg {
  width: 16px;
  height: 16px;
  flex: none;
  stroke-width: 1.9;
}

button:active,
.button:active {
  transform: scale(0.98);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  box-shadow: none;
}

.button-secondary,
button.ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted-strong);
  box-shadow: none;
}

button.danger {
  background: #ad342f;
}

.button-compact {
  min-height: 38px;
  padding: 9px 18px;
  font-size: 13px;
}

button:focus-visible,
.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  padding: 12px 13px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(240, 240, 245, 0.27);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 112, 67, 0.72);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 4px var(--focus);
}

textarea {
  resize: vertical;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 620;
}

.hidden {
  display: none !important;
}

.section-shell {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.public-site {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  background: var(--page);
  color: var(--ink);
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  box-shadow: 0 0 12px rgba(255, 59, 48, 0.65);
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition:
    background-color 320ms ease,
    border-color 320ms ease,
    backdrop-filter 320ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.055);
  background: rgba(7, 7, 15, 0.84);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.nav-shell {
  position: relative;
  display: flex;
  width: min(1280px, calc(100% - 48px));
  min-height: 66px;
  align-items: center;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--red), var(--coral));
  color: #fff;
  box-shadow: 0 7px 24px rgba(255, 59, 48, 0.28);
}

.brand-mark svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
}

.brand-name {
  color: var(--ink);
  font-size: 17px;
  font-weight: 720;
}

.brand-caption {
  margin-left: 2px;
  color: var(--muted);
  font-size: 11px;
}

.public-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: auto;
}

.public-nav a,
.nav-login {
  color: var(--muted);
  font-size: 14px;
  font-weight: 540;
  transition: color 180ms ease;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 42px;
}

.mobile-nav-toggle,
.mobile-only {
  display: none;
}

.mobile-nav-toggle {
  width: 40px;
  min-height: 40px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 0;
  color: var(--ink);
  box-shadow: none;
}

.mobile-nav-toggle svg {
  width: 20px;
  height: 20px;
}

.menu-close-icon {
  display: none;
}

.mobile-nav-toggle[aria-expanded="true"] .menu-open-icon {
  display: none;
}

.mobile-nav-toggle[aria-expanded="true"] .menu-close-icon {
  display: block;
}

.landing-hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - 46px);
  align-items: center;
  overflow: hidden;
  padding: 68px 0 64px;
}

.hero-background,
.hero-background::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero-background {
  background:
    radial-gradient(ellipse 70% 58% at 50% -8%, rgba(255, 59, 48, 0.14), transparent 70%),
    radial-gradient(ellipse 40% 42% at 86% 68%, rgba(255, 112, 67, 0.075), transparent 62%),
    var(--page);
}

.hero-background::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, #000 80%, transparent 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.hero-grid > *,
.feature-grid > *,
.case-display > *,
.pricing-grid > *,
.workspace > * {
  min-width: 0;
}

.hero-copy {
  display: flex;
  max-width: 640px;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 28px;
  border: 1px solid rgba(255, 59, 48, 0.31);
  border-radius: 999px;
  background: rgba(255, 59, 48, 0.08);
  color: var(--coral);
  padding: 7px 14px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  font-weight: 650;
}

.hero-badge > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 59, 48, 0.76);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.hero-copy h1,
.section-heading h2,
.case-copy h3,
.download-panel h2 {
  font-family: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  font-weight: 400;
}

.hero-copy h1 {
  max-width: 700px;
  margin: 0;
  color: var(--ink);
  font-size: 82px;
  line-height: 1.07;
}

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

.gradient-text {
  background: linear-gradient(125deg, var(--red) 18%, var(--orange) 84%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  max-width: 520px;
  margin: 29px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.voice-player {
  display: grid;
  width: min(100%, 430px);
  min-height: 92px;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  backdrop-filter: blur(8px);
}

.player-toggle {
  width: 42px;
  min-height: 42px;
  padding: 0;
}

.player-toggle svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.player-play-icon {
  display: none;
}

.player-toggle[aria-pressed="false"] .player-pause-icon {
  display: none;
}

.player-toggle[aria-pressed="false"] .player-play-icon {
  display: block;
}

.waveform {
  display: flex;
  height: 56px;
  min-width: 0;
  align-items: center;
  gap: 3px;
  overflow: hidden;
}

.waveform span {
  width: 3px;
  height: var(--h);
  flex: none;
  border-radius: 999px;
  background: linear-gradient(to top, var(--red), var(--coral));
  transform-origin: center;
}

.waveform.is-playing span {
  animation-name: waveform-pulse;
  animation-duration: 760ms;
  animation-timing-function: ease-in-out;
  animation-delay: -180ms;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  will-change: transform, opacity;
}

.waveform.is-playing span:nth-child(4n + 1) {
  animation-duration: 620ms;
  animation-delay: -460ms;
}

.waveform.is-playing span:nth-child(4n + 2) {
  animation-duration: 880ms;
  animation-delay: -270ms;
}

.waveform.is-playing span:nth-child(4n + 3) {
  animation-duration: 700ms;
  animation-delay: -590ms;
}

.waveform.is-playing span:nth-child(4n) {
  animation-duration: 980ms;
  animation-delay: -340ms;
}

.waveform .wave-future {
  background: rgba(255, 255, 255, 0.1);
}

.player-time {
  display: grid;
  gap: 2px;
  text-align: right;
}

.player-time strong,
.player-time span {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
}

.player-time strong {
  font-size: 12px;
}

.player-time span {
  color: var(--muted);
  font-size: 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-actions .button {
  min-height: 48px;
  padding-inline: 27px;
  font-size: 14px;
}

.social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack img {
  width: 28px;
  height: 28px;
  margin-left: -8px;
  border: 2px solid var(--page);
  border-radius: 50%;
  object-fit: cover;
}

.proof-stars,
.review-stars {
  display: flex;
  gap: 2px;
  color: var(--red);
}

.proof-stars svg,
.review-stars svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.social-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.social-proof p strong {
  color: var(--ink);
  font-weight: 700;
}

.product-visual {
  position: relative;
  display: flex;
  width: 100%;
  height: 500px;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.device-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.device-glow-large {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.09), transparent 70%);
  animation: glow-large 4s ease-in-out infinite;
}

.device-glow-small {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.14), transparent 70%);
  animation: glow-small 3.2s 500ms ease-in-out infinite;
}

.device {
  position: relative;
  z-index: 4;
  display: flex;
  width: 130px;
  height: 214px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 65px 65px 52px 52px;
  background: linear-gradient(165deg, #29293a, #111120 46%, #1b0d0c);
  padding: 25px 0 22px;
  box-shadow:
    0 44px 110px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -1px 0 rgba(0, 0, 0, 0.32),
    0 0 68px rgba(255, 59, 48, 0.17);
  animation: device-float 5s ease-in-out infinite;
}

.device::after {
  position: absolute;
  top: 0;
  right: 16%;
  left: 16%;
  height: 42%;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.07), transparent);
  content: "";
  pointer-events: none;
}

.device-top,
.device-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.device-top {
  gap: 6px;
}

.recording-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red), 0 0 34px rgba(255, 59, 48, 0.55);
  animation: pulse-dot 1.4s ease-in-out infinite;
}

.mic-grille {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  gap: 4px;
}

.mic-grille i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}

.device-center {
  gap: 8px;
}

.device-button {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--coral));
  color: #fff;
  box-shadow:
    0 9px 34px rgba(255, 59, 48, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  animation: device-button-breathe 2.4s ease-in-out infinite;
}

.device-button svg {
  width: 25px;
  height: 25px;
}

.device-center strong {
  color: rgba(255, 255, 255, 0.38);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 9px;
}

.device-leds {
  display: flex;
  gap: 6px;
}

.device-leds i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 59, 48, 0.3);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

.device-leds i:nth-child(2) {
  background: var(--red);
  animation-delay: 280ms;
}

.device-leds i:nth-child(3) {
  animation-delay: 560ms;
}

.device-shadow {
  position: absolute;
  z-index: 1;
  bottom: 105px;
  left: 50%;
  width: 104px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 59, 48, 0.28);
  filter: blur(13px);
  transform: translateX(-50%);
}

.spec-pill {
  position: absolute;
  z-index: 6;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  min-width: 100px;
  gap: 3px;
  opacity: 0.96;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(
      circle at var(--glass-glow-x, 18%) var(--glass-glow-y, 18%),
      rgba(255, 255, 255, 0.16),
      transparent 38%
    ),
    linear-gradient(145deg, rgba(43, 43, 60, 0.54), rgba(12, 12, 23, 0.62) 55%, rgba(37, 9, 11, 0.48));
  padding: 9px 13px;
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.46),
    0 4px 18px rgba(255, 59, 48, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    inset 1px 0 0 rgba(255, 255, 255, 0.045);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  backdrop-filter: blur(14px) saturate(135%);
  backface-visibility: hidden;
  contain: paint;
  will-change: transform;
}

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

.spec-pill::before {
  z-index: -1;
  inset: 1px;
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 32%),
    radial-gradient(circle at 88% 120%, rgba(255, 59, 48, 0.17), transparent 52%);
}

.spec-pill::after {
  z-index: -1;
  top: -45%;
  left: -18%;
  width: 48%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  filter: blur(1px);
  opacity: 0.68;
  transform: rotate(18deg);
}

.spec-pill strong {
  position: relative;
  z-index: 1;
  color: var(--coral);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 13px;
  text-shadow: 0 0 16px rgba(255, 112, 67, 0.34);
}

.spec-pill small {
  position: relative;
  z-index: 1;
  color: rgba(210, 210, 222, 0.58);
  font-size: 10.5px;
}

.spec-one {
  --glass-glow-x: 16%;
  --glass-glow-y: 12%;
  top: 158px;
  left: 60px;
  animation: spec-float-one 5.2s -1.4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite both;
}

.spec-two {
  --glass-glow-x: 82%;
  --glass-glow-y: 14%;
  top: 178px;
  right: 42px;
  animation: spec-float-two 5.6s -3.7s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite both;
}

.spec-three {
  --glass-glow-x: 14%;
  --glass-glow-y: 82%;
  bottom: 142px;
  left: 64px;
  animation: spec-float-three 5.4s -2.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite both;
}

.spec-four {
  --glass-glow-x: 84%;
  --glass-glow-y: 78%;
  right: 40px;
  bottom: 136px;
  animation: spec-float-four 5.8s -4.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite both;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .spec-pill {
    background: rgba(20, 20, 32, 0.96);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .spec-pill {
    background: #151520;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .spec-pill::after {
    display: none;
  }
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  transform: translateX(-50%);
  animation: scroll-cue 2.2s ease-in-out infinite;
}

.scroll-cue span {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
}

.scroll-cue svg {
  width: 14px;
  height: 14px;
}

.spec-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}

.spec-marquee::before,
.spec-marquee::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 80px;
  content: "";
  pointer-events: none;
}

.spec-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--page), transparent);
}

.spec-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--page), transparent);
}

.spec-track {
  display: flex;
  width: max-content;
  align-items: center;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 13px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.spec-track span {
  padding-inline: 24px;
}

.spec-track i {
  color: rgba(255, 255, 255, 0.18);
  font-style: normal;
}

.content-section {
  position: relative;
  padding: 116px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 58px;
}

.section-heading > p,
.download-panel > p {
  margin: 0 0 13px;
  color: var(--red);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  font-weight: 650;
}

.section-heading h2,
.download-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.18;
}

.section-heading > span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

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

.feature-card {
  position: relative;
  display: flex;
  min-height: 318px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-faint);
  padding: 24px;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.feature-card::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, color-mix(in srgb, currentColor 8%, transparent), transparent 68%);
  content: "";
  pointer-events: none;
}

.feature-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 12px;
  background: color-mix(in srgb, currentColor 10%, transparent);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-top small {
  border: 1px solid color-mix(in srgb, currentColor 20%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, currentColor 8%, transparent);
  padding: 4px 8px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
}

.feature-card > strong {
  margin-top: 52px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 31px;
}

.feature-card h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 17px;
}

.feature-card p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.feature-red {
  color: var(--red);
}

.feature-coral {
  color: var(--coral);
}

.feature-orange {
  color: var(--orange);
}

.feature-peach {
  color: var(--peach);
}

.case-section {
  background: radial-gradient(ellipse 75% 52% at 50% 100%, rgba(255, 59, 48, 0.055), transparent 66%);
}

.case-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.case-tab {
  min-height: 38px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  padding: 9px 17px;
  font-size: 13px;
  box-shadow: none;
}

.case-tab.is-active {
  border-color: transparent;
  background: var(--red);
  color: #fff;
  box-shadow: 0 5px 18px rgba(255, 59, 48, 0.31);
}

.case-display {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 58px;
  align-items: center;
  transition:
    opacity 320ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.case-display.is-leaving-next {
  opacity: 0;
  transform: translateX(-44px);
}

.case-display.is-leaving-previous {
  opacity: 0;
  transform: translateX(44px);
}

.case-display.is-entering-next {
  opacity: 0;
  transform: translateX(44px);
  transition: none;
}

.case-display.is-entering-previous {
  opacity: 0;
  transform: translateX(-44px);
  transition: none;
}

.case-media {
  position: relative;
  overflow: hidden;
  height: 410px;
  margin: 0;
  border-radius: var(--radius-card);
  background: var(--surface);
}

.case-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7, 7, 15, 0.54), transparent 62%);
  content: "";
  pointer-events: none;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.case-media figcaption {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  padding: 7px 12px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  font-weight: 680;
}

.case-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.case-copy h3 {
  margin: 0;
  font-size: 38px;
  line-height: 1.24;
}

.case-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.case-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.case-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 14px;
}

.case-copy li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.case-copy .button {
  margin-top: 30px;
}

.case-dots {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}

.case-dots button {
  position: relative;
  overflow: hidden;
  width: 7px;
  min-height: 7px;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  padding: 0;
  box-shadow: none;
  transition:
    width 220ms ease,
    background-color 220ms ease;
}

.case-dots button.is-active {
  width: 26px;
  background: rgba(255, 59, 48, 0.24);
}

.case-dots button.is-active::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  animation: case-progress 4s linear infinite;
}

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

.review-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-faint);
  padding: 26px;
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.review-card blockquote {
  flex: 1;
  margin: 22px 0 26px;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.8;
}

.review-person {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 17px;
}

.review-person > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--coral));
  font-size: 14px;
  font-weight: 720;
}

.review-person p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.review-person strong {
  font-size: 14px;
}

.review-person small {
  color: var(--muted);
  font-size: 12px;
}

.pricing-section {
  background: radial-gradient(ellipse 58% 54% at 50% 50%, rgba(255, 59, 48, 0.055), transparent 72%);
}

.pricing-shell {
  max-width: 1050px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 480px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-faint);
  padding: 28px;
}

.pricing-card.is-featured {
  border-color: rgba(255, 59, 48, 0.36);
  background: linear-gradient(160deg, rgba(255, 59, 48, 0.11), rgba(255, 112, 67, 0.045));
  box-shadow: 0 0 42px rgba(255, 59, 48, 0.08);
}

.popular-label {
  position: absolute;
  z-index: 2;
  top: -17px;
  left: 50%;
  display: inline-flex;
  min-width: 92px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  padding: 8px 18px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 7px 22px rgba(255, 59, 48, 0.38);
  transform: translateX(-50%);
}

.pricing-card h3 {
  margin: 0;
  font-size: 19px;
}

.pricing-card > div > p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 30px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 40px;
  font-weight: 720;
}

.price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.pricing-card ul {
  display: grid;
  gap: 14px;
  flex: 1;
  margin: 29px 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.pricing-card li svg {
  width: 14px;
  height: 14px;
  flex: none;
  color: var(--red);
}

.pricing-card .button {
  width: 100%;
}

.download-section {
  padding: 70px 0 112px;
}

.download-panel {
  position: relative;
  overflow: hidden;
  max-width: 790px;
  border-top: 1px solid rgba(255, 59, 48, 0.42);
  border-bottom: 1px solid rgba(255, 59, 48, 0.2);
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.12), rgba(255, 112, 67, 0.045));
  padding: 70px 48px;
  text-align: center;
}

.download-panel::before {
  position: absolute;
  top: -80px;
  left: 50%;
  width: 340px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 59, 48, 0.12);
  content: "";
  filter: blur(54px);
  transform: translateX(-50%);
}

.download-panel > * {
  position: relative;
  z-index: 2;
}

.download-panel > p {
  color: var(--coral);
}

.download-panel h2 {
  font-size: 44px;
}

.download-panel > span {
  display: block;
  max-width: 570px;
  margin: 17px auto 0;
  color: var(--muted);
  line-height: 1.75;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  margin-top: 34px;
}

.download-actions button,
.download-actions .button {
  min-height: 50px;
  padding-inline: 24px;
  font-size: 13px;
}

.download-panel > small {
  display: block;
  margin-top: 21px;
  color: rgba(240, 240, 245, 0.34);
  font-size: 11px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 62px 0 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) repeat(3, minmax(120px, 1fr));
  gap: 55px;
  padding-bottom: 52px;
}

.footer-intro > p {
  max-width: 300px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted-strong);
  padding: 9px 12px;
  font-size: 11px;
}

.footer-badges svg {
  width: 13px;
  height: 13px;
}

.footer-main nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-main h3 {
  margin: 2px 0 8px;
  color: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
}

.footer-main nav a {
  color: var(--muted);
  font-size: 13px;
  transition: color 160ms ease;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 27px;
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(240, 240, 245, 0.34);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.login-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.login-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: rgba(3, 3, 8, 0.82);
  padding: 0;
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.session-card {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-card);
  background: #10101a;
  padding: 34px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.62);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  min-height: 38px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 0;
  color: var(--muted);
  box-shadow: none;
}

.review-site .session-card .modal-theme-toggle {
  position: absolute;
  top: 18px;
  right: 64px;
  margin: 0;
}

.login-form {
  display: grid;
  gap: 17px;
}

.form-heading {
  display: grid;
  justify-items: start;
  margin-bottom: 5px;
}

.form-heading > p {
  margin: 17px 0 8px;
  color: var(--coral);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
}

.form-heading h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  font-size: 35px;
  font-weight: 400;
}

.form-heading small,
.form-hint {
  color: var(--muted);
  font-size: 12px;
}

.form-heading small {
  margin-top: 8px;
}

.form-hint {
  margin: 0;
  text-align: center;
}

.dashboard-shell {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 60% 42% at 50% 0%, rgba(255, 59, 48, 0.08), transparent 68%),
    var(--page);
}

.dashboard-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 15, 0.88);
  backdrop-filter: blur(20px);
}

.dashboard-header-inner {
  display: flex;
  width: min(1180px, calc(100% - 48px));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
}

.dashboard-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dashboard-shell .theme-toggle {
  width: 38px;
  min-height: 38px;
  flex: none;
  border-color: var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  padding: 0;
  box-shadow: none;
}

.profile-panel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-panel small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.profile-panel strong {
  display: block;
  margin-top: 3px;
  font-size: 13px;
}

.profile-panel button {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 12px;
}

.app-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding: 55px 0 76px;
}

.section-kicker {
  margin: 0;
  color: var(--coral);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
}

.dashboard-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.dashboard-intro h1 {
  margin: 12px 0 10px;
  font-family: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
}

.dashboard-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.workspace {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.025);
  padding: 21px;
}

.panel-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 19px;
}

.panel-title h2 {
  margin: 0;
  font-size: 20px;
}

.panel-title p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.68;
}

.recording-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.recording-head h3 {
  margin: 0;
}

.upload-form {
  display: grid;
  gap: 15px;
}

.file-box {
  display: grid;
  min-height: 150px;
  place-items: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
  cursor: pointer;
  text-align: center;
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

.file-box input {
  display: none;
}

.file-box span {
  color: var(--coral);
  font-size: 15px;
  font-weight: 720;
}

.file-box small {
  color: var(--muted);
  font-weight: 500;
}

.file-box.dragover {
  border-color: var(--coral);
  background: rgba(255, 112, 67, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.5;
}

.check-row input {
  width: auto;
  accent-color: var(--red);
}

.progress-wrap {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
  align-items: center;
}

.progress-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--coral));
  transition: width 200ms ease;
}

.player-panel audio {
  width: 100%;
  color-scheme: dark;
}

.empty {
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius-card);
  color: var(--muted);
  text-align: center;
}

.current-recording {
  display: grid;
  gap: 15px;
}

.status {
  display: inline-block;
  margin-top: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 700;
}

.status.ready,
.status.completed {
  background: var(--success-bg);
  color: var(--success-ink);
}

.status.failed {
  background: var(--danger-bg);
  color: var(--danger-ink);
}

.status.transcribing,
.status.summarizing,
.status.processing {
  background: var(--warning-bg);
  color: var(--warning-ink);
}

.summary-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.018);
  padding: 16px;
}

.summary-box h4 {
  margin: 0 0 11px;
}

.summary-box button {
  margin-top: 14px;
}

pre {
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  line-height: 1.75;
  white-space: pre-wrap;
  word-break: break-word;
}

.records-panel {
  margin-top: 20px;
}

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

.record-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
  padding: 15px;
}

.record-item h3 {
  margin: 0;
  font-size: 15px;
}

.record-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.record-actions {
  display: flex;
  gap: 8px;
}

.record-actions button {
  min-height: 36px;
  padding: 7px 12px;
  font-size: 12px;
}

.toast {
  position: fixed;
  z-index: 150;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100% - 48px));
  border: 1px solid rgba(255, 112, 67, 0.3);
  border-radius: 12px;
  background: #17121b;
  color: var(--ink);
  padding: 13px 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 650ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (hover: hover) {
  button:not(:disabled):hover,
  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(255, 59, 48, 0.42);
  }

  .button-secondary:hover,
  button.ghost:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    color: var(--ink);
    box-shadow: none;
  }

  .public-nav a:hover,
  .nav-login:hover,
  .footer-main nav a:hover,
  .footer-bottom a:hover {
    color: var(--ink);
  }

  .feature-card:hover,
  .review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 112, 67, 0.28);
  }

  .case-tab:hover {
    color: var(--ink);
  }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
  }

  .hero-copy h1 {
    font-size: 68px;
  }

  .product-visual {
    transform: scale(0.9);
  }

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

  .case-display {
    gap: 40px;
  }

  .footer-main {
    gap: 36px;
  }

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

@media (max-width: 860px) {
  .public-nav,
  .nav-actions {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .public-nav.is-open {
    position: absolute;
    top: 58px;
    right: 0;
    left: 0;
    display: grid;
    gap: 3px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(12, 12, 21, 0.97);
    padding: 10px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(22px);
  }

  .public-nav.is-open a {
    border-radius: 9px;
    padding: 12px;
  }

  .mobile-only {
    display: block;
  }

  .landing-hero {
    padding-top: 110px;
  }

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

  .hero-copy {
    max-width: 680px;
  }

  .hero-copy h1 {
    font-size: 64px;
  }

  .product-visual {
    height: 390px;
    transform: scale(0.86);
  }

  .scroll-cue {
    display: none;
  }

  .content-section {
    padding: 92px 0;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .case-display {
    grid-template-columns: 1fr;
  }

  .case-media {
    height: 390px;
  }

  .case-copy {
    max-width: 620px;
  }

  .review-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 0;
  }

  .pricing-grid {
    max-width: 560px;
    margin-inline: auto;
  }

  .pricing-card {
    min-height: 0;
  }

  .pricing-card ul {
    min-height: 180px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 64px;
  }

  .section-shell,
  .nav-shell,
  .dashboard-header-inner,
  .app-shell {
    width: min(100% - 32px, 1152px);
  }

  .nav-shell,
  .dashboard-header-inner {
    min-height: 60px;
  }

  .public-nav.is-open {
    top: 54px;
  }

  .landing-hero {
    align-items: flex-start;
    padding: 104px 0 42px;
  }

  .hero-badge {
    margin-bottom: 21px;
    font-size: 10px;
  }

  .hero-copy h1 {
    width: 100%;
    font-size: 49px;
    line-height: 1.1;
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.72;
  }

  .voice-player {
    width: 100%;
    min-height: 80px;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 11px;
    margin-top: 24px;
    padding: 12px;
  }

  .player-toggle {
    width: 40px;
    min-height: 40px;
  }

  .waveform {
    gap: 2px;
  }

  .waveform span {
    width: 2px;
  }

  .waveform span:nth-child(n + 23) {
    display: none;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .social-proof {
    gap: 9px;
  }

  .social-proof p {
    width: 100%;
  }

  .product-visual {
    height: 380px;
    margin-top: 0;
    transform: scale(0.78);
  }

  .spec-one {
    top: 80px;
    left: 0;
  }

  .spec-two {
    top: 100px;
    right: 0;
  }

  .spec-three {
    bottom: 78px;
    left: 0;
  }

  .spec-four {
    right: 0;
    bottom: 56px;
  }

  .spec-marquee {
    padding-block: 14px;
  }

  .content-section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .download-panel h2 {
    font-size: 35px;
    line-height: 1.2;
  }

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

  .feature-card {
    min-height: 260px;
  }

  .feature-card > strong {
    margin-top: 34px;
  }

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

  .case-tab {
    width: 100%;
    padding-inline: 8px;
    font-size: 12px;
  }

  .case-media {
    height: 260px;
  }

  .case-copy h3 {
    font-size: 30px;
  }

  .case-copy > p {
    font-size: 15px;
  }

  .case-copy .button {
    width: 100%;
  }

  .review-card,
  .pricing-card {
    padding: 23px;
  }

  .download-section {
    padding: 35px 0 78px;
  }

  .download-panel {
    width: 100%;
    padding: 54px 20px;
  }

  .download-actions {
    display: grid;
  }

  .download-actions button,
  .download-actions .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .footer-main nav:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }

  .session-card {
    padding: 28px 22px;
  }

  .profile-panel {
    gap: 9px;
  }

  .profile-panel > div {
    display: none;
  }

  .app-shell {
    padding: 42px 0 58px;
  }

  .dashboard-intro h1 {
    font-size: 38px;
  }

  .panel {
    padding: 16px;
  }

  .panel-title,
  .recording-head {
    display: grid;
  }

  .panel-title button,
  .recording-head button {
    justify-self: start;
  }

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

  .record-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .record-actions {
    flex-wrap: wrap;
  }

  .toast {
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
  }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 44px;
  }

  .case-tabs {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-intro,
  .footer-main nav:last-child {
    grid-column: auto;
  }
}

@keyframes waveform-pulse {
  0% {
    opacity: 0.72;
    transform: scaleY(0.32);
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

@keyframes device-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes device-button-breathe {
  0%,
  100% {
    box-shadow:
      0 9px 30px rgba(255, 59, 48, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transform: scale(0.96);
  }

  50% {
    box-shadow:
      0 10px 48px rgba(255, 59, 48, 0.82),
      0 0 24px rgba(255, 112, 67, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transform: scale(1.04);
  }
}

@keyframes spec-float-one {
  0%,
  100% {
    transform: translate3d(0, 4px, 0);
  }

  50% {
    transform: translate3d(-8px, -7px, 0);
  }
}

@keyframes spec-float-two {
  0%,
  100% {
    transform: translate3d(-3px, 5px, 0);
  }

  50% {
    transform: translate3d(8px, -8px, 0);
  }
}

@keyframes spec-float-three {
  0%,
  100% {
    transform: translate3d(3px, -3px, 0);
  }

  50% {
    transform: translate3d(-7px, 8px, 0);
  }
}

@keyframes spec-float-four {
  0%,
  100% {
    transform: translate3d(-2px, -5px, 0);
  }

  50% {
    transform: translate3d(9px, 7px, 0);
  }
}

@keyframes glow-large {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes glow-small {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.12);
  }
}

@keyframes scroll-cue {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes case-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }

  .waveform.is-playing span {
    animation-name: waveform-pulse-reduced !important;
    animation-duration: 1.2s !important;
    animation-iteration-count: infinite !important;
    animation-direction: alternate !important;
  }

  .device {
    animation: device-float-reduced 7s ease-in-out infinite !important;
  }

  .device-button {
    animation: device-button-breathe-reduced 4.8s ease-in-out infinite !important;
  }

  .device-glow-large {
    animation: glow-large-reduced 8s ease-in-out infinite !important;
  }

  .device-glow-small {
    animation: glow-small-reduced 7s 500ms ease-in-out infinite !important;
  }

  .spec-one,
  .spec-two,
  .spec-three,
  .spec-four {
    animation-duration: 7s !important;
    animation-iteration-count: infinite !important;
  }

  .case-display {
    transition-duration: 240ms !important;
    transition-timing-function: ease-out !important;
  }

  .case-display.is-leaving-next {
    transform: translateX(-14px);
  }

  .case-display.is-leaving-previous {
    transform: translateX(14px);
  }

  .case-display.is-entering-next {
    transform: translateX(14px);
  }

  .case-display.is-entering-previous {
    transform: translateX(-14px);
  }

  .case-dots button.is-active::after {
    animation-duration: 4s !important;
    animation-iteration-count: infinite !important;
  }
}

@keyframes waveform-pulse-reduced {
  from {
    opacity: 0.84;
    transform: scaleY(0.68);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes device-float-reduced {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes device-button-breathe-reduced {
  0%,
  100% {
    box-shadow:
      0 9px 30px rgba(255, 59, 48, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }

  50% {
    box-shadow:
      0 9px 39px rgba(255, 59, 48, 0.66),
      inset 0 1px 0 rgba(255, 255, 255, 0.26);
  }
}

@keyframes glow-large-reduced {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(1);
  }

  50% {
    opacity: 0.74;
    transform: scale(1.025);
  }
}

@keyframes glow-small-reduced {
  0%,
  100% {
    opacity: 0.66;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.035);
  }
}

/* Communication review landing page */
.review-site {
  --review-width: 1180px;
  --review-panel: #101018;
  --review-panel-strong: #15151f;
  --review-rule: rgba(255, 255, 255, 0.095);
  --review-red-soft: rgba(255, 59, 48, 0.11);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #07070f;
  background-size: 74px 74px;
}

.review-site .section-shell,
.review-site .nav-shell {
  width: min(var(--review-width), calc(100% - 56px));
}

.review-site .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.04);
  background: rgba(7, 7, 15, 0.72);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.review-site .site-header.is-scrolled {
  background: rgba(7, 7, 15, 0.92);
}

.review-site .nav-shell {
  min-height: 70px;
}

.review-site .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.review-site .public-nav {
  gap: 28px;
}

.review-site .nav-actions {
  gap: 20px;
  margin-left: 34px;
}

.review-site .public-nav a,
.review-site .nav-login {
  color: rgba(240, 240, 245, 0.58);
  font-size: 13px;
}

.review-site .review-hero {
  position: relative;
  display: flex;
  min-height: min(820px, calc(100svh - 18px));
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--review-rule);
  padding: 116px 0 92px;
}

.review-grid-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(120deg, rgba(255, 59, 48, 0.09), transparent 36%),
    #07070f;
  background-size:
    74px 74px,
    74px 74px,
    100% 100%,
    100% 100%;
  mask-image: linear-gradient(to bottom, #000 0%, #000 86%, transparent 100%);
  pointer-events: none;
}

.review-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 62px;
  align-items: center;
}

.review-hero-layout > *,
.full-report-grid > *,
.review-case-display > * {
  min-width: 0;
}

.review-hero-copy {
  max-width: 560px;
}

.review-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 25px;
  border: 1px solid rgba(255, 59, 48, 0.32);
  border-radius: 999px;
  background: rgba(255, 59, 48, 0.075);
  color: #ff725f;
  padding: 8px 14px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
}

.review-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 59, 48, 0.8);
}

.review-hero h1,
.review-section-heading h2,
.why-grid h3,
.capability-grid h3,
.case-copy h3,
.review-download-panel h2 {
  font-family: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  font-weight: 400;
}

.review-hero h1 {
  max-width: 610px;
  margin: 0;
  color: #f5f4f6;
  font-size: 58px;
  line-height: 1.16;
}

.review-hero h1 span {
  display: block;
  margin-top: 7px;
  background: linear-gradient(115deg, #ff453a 2%, #ff945b 88%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.review-hero-lede {
  max-width: 520px;
  margin: 27px 0 0;
  color: rgba(240, 240, 245, 0.57);
  font-size: 17px;
  line-height: 1.86;
}

.review-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 34px;
}

.review-hero-actions .button {
  min-height: 50px;
  padding-inline: 24px;
}

.review-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.review-proof .avatar-stack {
  display: flex;
}

.review-proof .avatar-stack img {
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border: 2px solid #090910;
  border-radius: 50%;
  object-fit: cover;
}

.review-proof .avatar-stack img:first-child {
  margin-left: 0;
}

.review-proof p {
  margin: 0;
  color: rgba(240, 240, 245, 0.45);
  font-size: 12px;
}

.review-proof strong {
  color: rgba(240, 240, 245, 0.82);
  font-weight: 700;
}

.hero-report-shell {
  position: relative;
  padding: 22px 0 18px;
}

.hero-report-shell::before {
  position: absolute;
  inset: 12% 8% 3%;
  border: 1px solid rgba(255, 59, 48, 0.14);
  background: rgba(255, 59, 48, 0.045);
  content: "";
  filter: blur(36px);
  pointer-events: none;
}

.report-browser {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(15, 15, 24, 0.94);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.42),
    0 0 55px rgba(255, 59, 48, 0.08);
}

.report-browser-bar {
  display: grid;
  min-height: 39px;
  grid-template-columns: 70px minmax(0, 1fr) 18px;
  align-items: center;
  border-bottom: 1px solid var(--review-rule);
  background: rgba(255, 255, 255, 0.025);
  padding: 0 15px;
}

.report-browser-bar > div {
  display: flex;
  gap: 6px;
}

.report-browser-bar > div i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.report-browser-bar > div i:first-child {
  background: rgba(255, 59, 48, 0.78);
}

.report-browser-bar span {
  overflow: hidden;
  color: rgba(240, 240, 245, 0.34);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 9px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-browser-bar svg {
  width: 12px;
  height: 12px;
  color: rgba(240, 240, 245, 0.28);
}

.report-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 28px 15px;
}

.report-preview-head p {
  margin: 0 0 6px;
  color: #ff6a57;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.report-preview-head h2 {
  margin: 0;
  color: #f4f3f5;
  font-size: 20px;
  line-height: 1.3;
}

.report-preview-head > div:first-child > span {
  display: block;
  margin-top: 7px;
  color: rgba(240, 240, 245, 0.34);
  font-size: 10px;
}

.report-score {
  display: grid;
  width: 70px;
  height: 70px;
  flex: none;
  place-content: center;
  border: 1px solid rgba(255, 59, 48, 0.28);
  border-radius: 50%;
  background: rgba(255, 59, 48, 0.075);
  text-align: center;
}

.report-score strong {
  color: #ff6553;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 26px;
  line-height: 1;
}

.report-score span {
  margin-top: 5px;
  color: rgba(240, 240, 245, 0.35);
  font-size: 8px;
}

.report-summary {
  margin: 0 28px 17px;
  border-left: 2px solid rgba(255, 59, 48, 0.64);
  color: rgba(240, 240, 245, 0.62);
  padding-left: 13px;
  font-size: 12px;
  line-height: 1.65;
}

.report-tabs {
  display: flex;
  gap: 24px;
  margin: 0 28px;
  border-bottom: 1px solid var(--review-rule);
}

.report-tabs button {
  position: relative;
  min-height: 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(240, 240, 245, 0.36);
  padding: 0;
  font-size: 11px;
  box-shadow: none;
}

.report-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: transparent;
  content: "";
}

.report-tabs button.is-active {
  color: rgba(240, 240, 245, 0.88);
}

.report-tabs button.is-active::after {
  background: var(--red);
}

.report-tab-panel {
  display: grid;
  gap: 10px;
  padding: 17px 28px 28px;
}

.report-insight,
.report-goal,
.report-quote {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  padding: 13px 15px;
}

.report-insight span,
.report-goal span,
.report-quote span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(240, 240, 245, 0.48);
  font-size: 9px;
  font-weight: 700;
}

.report-insight span svg {
  width: 12px;
  height: 12px;
}

.report-insight.is-good span {
  color: #73cfa7;
}

.report-insight.is-focus span,
.report-quote.is-better span {
  color: #ff7664;
}

.report-insight p,
.report-goal p,
.report-quote p {
  margin: 7px 0 0;
  color: rgba(240, 240, 245, 0.67);
  font-size: 11px;
  line-height: 1.6;
}

.report-goal {
  border-color: rgba(255, 59, 48, 0.18);
  background: rgba(255, 59, 48, 0.055);
}

.review-scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 19px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: rgba(240, 240, 245, 0.28);
  font-size: 9px;
  transform: translateX(-50%);
}

.review-scroll-cue svg {
  width: 14px;
  height: 14px;
}

.review-section {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  padding: 118px 0;
}

.review-section-heading {
  margin-bottom: 55px;
}

.review-section-heading > p,
.section-label,
.review-download-panel > p {
  margin: 0 0 14px;
  color: #ff6553;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.review-section-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #f3f2f4;
  font-size: 46px;
  line-height: 1.25;
}

.review-section-heading > span,
.report-heading > span {
  display: block;
  color: rgba(240, 240, 245, 0.47);
  font-size: 14px;
  line-height: 1.75;
}

.section-heading-centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-heading-centered > span {
  margin-top: 15px;
}

.why-section {
  background: #0a0a12;
}

.why-section .section-label {
  margin-bottom: 42px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--review-rule);
  border-bottom: 1px solid var(--review-rule);
}

.why-grid article {
  min-height: 300px;
  border-right: 1px solid var(--review-rule);
  padding: 34px 38px 38px 0;
}

.why-grid article + article {
  padding-left: 38px;
}

.why-grid article:last-child {
  border-right: 0;
  padding-right: 0;
}

.why-grid article > span {
  color: rgba(255, 80, 67, 0.55);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
}

.why-grid h3 {
  max-width: 300px;
  margin: 52px 0 0;
  color: #efedf1;
  font-size: 29px;
  line-height: 1.35;
}

.why-grid p {
  margin: 20px 0 0;
  color: rgba(240, 240, 245, 0.45);
  font-size: 14px;
  line-height: 1.85;
}

.workflow-section {
  background: #080810;
}

.workflow-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--review-rule);
  border-bottom: 1px solid var(--review-rule);
  padding: 40px 0;
}

.workflow-track > article {
  display: grid;
  min-width: 92px;
  flex: 1;
  justify-items: center;
  text-align: center;
}

.workflow-track > article > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 59, 48, 0.2);
  border-radius: 50%;
  background: rgba(255, 59, 48, 0.065);
  color: #ff6b59;
}

.workflow-track > article svg {
  width: 20px;
  height: 20px;
}

.workflow-track > article p {
  margin: 15px 0 0;
  color: rgba(240, 240, 245, 0.84);
  font-size: 14px;
  font-weight: 650;
}

.workflow-track > article small {
  margin-top: 4px;
  color: rgba(240, 240, 245, 0.32);
  font-size: 10px;
}

.workflow-track > svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: rgba(240, 240, 245, 0.18);
}

.capability-section {
  background: #0a0a12;
}

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

.capability-grid article {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--review-rule);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
  padding: 32px;
}

.capability-grid article::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 90px;
  height: 2px;
  background: var(--red);
  content: "";
  opacity: 0.52;
}

.capability-meta {
  display: flex;
  min-height: 88px;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 9px;
}

.capability-meta > span {
  margin-right: auto;
  color: rgba(255, 87, 72, 0.55);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
}

.capability-meta strong {
  color: rgba(240, 240, 245, 0.92);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 50px;
  font-weight: 560;
  line-height: 0.95;
}

.capability-meta small {
  max-width: 68px;
  margin-top: 6px;
  color: rgba(240, 240, 245, 0.32);
  font-size: 9px;
  line-height: 1.4;
}

.capability-grid h3 {
  margin: 35px 0 0;
  color: #efedf1;
  font-size: 27px;
}

.capability-grid p {
  max-width: 500px;
  margin: 16px 0 0;
  color: rgba(240, 240, 245, 0.45);
  font-size: 14px;
  line-height: 1.85;
}

.review-site .case-section {
  background: #080810;
}

.review-case-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--review-rule);
}

.review-case-tabs .case-tab {
  min-height: 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(240, 240, 245, 0.35);
  padding: 0 26px;
  box-shadow: none;
}

.review-case-tabs .case-tab:first-child {
  padding-left: 0;
}

.review-case-tabs .case-tab.is-active {
  position: relative;
  color: #f2f0f3;
}

.review-case-tabs .case-tab.is-active::after {
  position: absolute;
  right: 26px;
  bottom: -1px;
  left: 26px;
  height: 2px;
  background: var(--red);
  content: "";
}

.review-case-tabs .case-tab:first-child.is-active::after {
  left: 0;
}

.review-case-display {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 64px;
}

.review-case-display .case-media {
  height: 440px;
  border: 1px solid var(--review-rule);
  border-radius: 8px;
}

.review-case-display .case-media::after {
  background: linear-gradient(to top, rgba(7, 7, 15, 0.45), transparent 68%);
}

.review-case-display .case-media img {
  opacity: 0.78;
  filter: saturate(0.72) contrast(1.08);
}

.review-case-display .case-copy h3 {
  color: #f1eff2;
  font-size: 38px;
}

.review-case-display .case-copy > p {
  color: rgba(240, 240, 245, 0.47);
}

.review-case-display .case-copy li {
  color: rgba(240, 240, 245, 0.62);
}

.review-case-display .case-copy li::before {
  width: 5px;
  height: 5px;
}

.report-example-section {
  background: #0a0a12;
}

.report-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.report-heading > div > p {
  margin: 0 0 14px;
  color: #ff6553;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.report-heading > span {
  max-width: 360px;
  padding-bottom: 6px;
}

.full-report {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #0f0f18;
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.28);
}

.full-report > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-bottom: 1px solid var(--review-rule);
  padding: 31px 36px;
}

.full-report > header p {
  margin: 0 0 7px;
  color: #ff6553;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
}

.full-report > header h3 {
  margin: 0;
  color: rgba(240, 240, 245, 0.92);
  font-size: 20px;
}

.full-report > header > div:first-child > span {
  display: block;
  margin-top: 8px;
  color: rgba(240, 240, 245, 0.31);
  font-size: 10px;
}

.full-report-scores {
  display: flex;
  flex: none;
  gap: 30px;
}

.full-report-scores strong {
  display: grid;
  gap: 7px;
  color: #ff6755;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 28px;
  font-weight: 600;
}

.full-report-scores small {
  color: rgba(240, 240, 245, 0.31);
  font-size: 8px;
  font-weight: 500;
}

.full-report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(330px, 0.83fr);
}

.full-report h4 {
  margin: 0 0 23px;
  color: rgba(240, 240, 245, 0.72);
  font-size: 12px;
}

.moment-list {
  border-right: 1px solid var(--review-rule);
  padding: 32px 36px 37px;
}

.moment-list > article {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  padding: 18px 0;
}

.moment-list > article > span {
  color: #71c8a2;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
}

.moment-list > article.is-risk > span {
  color: #ff6957;
}

.moment-list strong {
  color: rgba(240, 240, 245, 0.76);
  font-size: 12px;
}

.moment-list p {
  margin: 7px 0 0;
  color: rgba(240, 240, 245, 0.39);
  font-size: 11px;
  line-height: 1.65;
}

.report-side {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 32px;
}

.report-side > div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  padding-bottom: 22px;
}

.report-side > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.audience-analysis p {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  margin: 10px 0 0;
  color: rgba(240, 240, 245, 0.48);
  font-size: 10px;
  line-height: 1.55;
}

.audience-analysis p span {
  color: rgba(240, 240, 245, 0.3);
}

.expression-advice p {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  font-size: 10px;
  line-height: 1.55;
}

.expression-advice del {
  color: rgba(255, 122, 106, 0.56);
}

.expression-advice ins {
  color: rgba(118, 213, 170, 0.7);
  text-decoration: none;
}

.next-goals p {
  display: flex;
  gap: 8px;
  margin: 10px 0 0;
  color: rgba(240, 240, 245, 0.52);
  font-size: 10px;
  line-height: 1.55;
}

.next-goals svg {
  width: 13px;
  height: 13px;
  flex: none;
  color: #ff6553;
}

.privacy-section {
  background: #080810;
}

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

.privacy-grid article {
  min-height: 305px;
  border: 1px solid var(--review-rule);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
  padding: 31px;
}

.privacy-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 59, 48, 0.2);
  border-radius: 50%;
  color: #ff6654;
}

.privacy-grid article > span svg {
  width: 18px;
  height: 18px;
}

.privacy-grid article > strong {
  display: block;
  margin-top: 50px;
  color: #ff6b58;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
}

.privacy-grid h3 {
  margin: 9px 0 0;
  color: rgba(240, 240, 245, 0.86);
  font-size: 20px;
}

.privacy-grid p {
  margin: 16px 0 0;
  color: rgba(240, 240, 245, 0.43);
  font-size: 13px;
  line-height: 1.8;
}

.review-site .pricing-section {
  background: #0a0a12;
}

.review-site .pricing-shell {
  max-width: 1080px;
}

.review-site .pricing-grid {
  gap: 14px;
}

.review-site .pricing-card {
  min-height: 515px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
  padding: 29px;
}

.review-site .pricing-card.is-featured {
  border-color: rgba(255, 59, 48, 0.42);
  background: rgba(255, 59, 48, 0.065);
}

.review-site .popular-label {
  top: -18px;
  min-width: 116px;
  min-height: 36px;
  padding-inline: 20px;
  font-size: 12px;
}

.review-site .price {
  margin-top: 32px;
  font-size: 42px;
}

.review-site .pricing-card ul {
  gap: 13px;
}

.faq-section {
  background: #080810;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(500px, 1.3fr);
  gap: 80px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--review-rule);
}

.faq-list article {
  border-bottom: 1px solid var(--review-rule);
}

.faq-list button {
  width: 100%;
  min-height: 72px;
  justify-content: space-between;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(240, 240, 245, 0.78);
  padding: 18px 0;
  text-align: left;
  white-space: normal;
  box-shadow: none;
}

.faq-list button span {
  line-height: 1.55;
}

.faq-list button svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: rgba(240, 240, 245, 0.34);
  transition: transform 220ms ease;
}

.faq-list article > p {
  overflow: hidden;
  max-height: 0;
  margin: 0;
  color: rgba(240, 240, 245, 0.43);
  font-size: 13px;
  line-height: 1.8;
  opacity: 0;
  transition:
    max-height 260ms ease,
    opacity 180ms ease,
    padding 260ms ease;
}

.faq-list article.is-open > p {
  max-height: 180px;
  padding: 0 38px 22px 0;
  opacity: 1;
}

.faq-list article.is-open button svg {
  transform: rotate(45deg);
}

.review-download-section {
  border-bottom: 1px solid var(--review-rule);
  background: #0a0a12;
  padding: 86px 0;
}

.review-download-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 59, 48, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(255, 59, 48, 0.12), transparent 48%),
    #101018;
  padding: 72px 52px;
  text-align: center;
}

.review-download-panel::before,
.review-download-panel::after {
  position: absolute;
  width: 150px;
  height: 1px;
  background: rgba(255, 59, 48, 0.45);
  content: "";
}

.review-download-panel::before {
  top: 28px;
  left: 0;
}

.review-download-panel::after {
  right: 0;
  bottom: 28px;
}

.review-download-panel > * {
  position: relative;
  z-index: 2;
}

.review-download-panel h2 {
  max-width: 780px;
  margin: 0 auto;
  color: #f2f0f3;
  font-size: 46px;
  line-height: 1.3;
}

.review-download-panel > span {
  display: block;
  max-width: 650px;
  margin: 18px auto 0;
  color: rgba(240, 240, 245, 0.46);
  font-size: 14px;
  line-height: 1.75;
}

.review-download-panel .download-actions {
  margin-top: 32px;
}

.review-download-panel > small {
  display: block;
  margin-top: 21px;
  color: rgba(240, 240, 245, 0.28);
  font-size: 10px;
}

.review-site .site-footer {
  background: #07070f;
}

.review-site .footer-main,
.review-site .footer-bottom {
  width: min(var(--review-width), calc(100% - 56px));
}

@media (hover: hover) {
  .review-site .public-nav a:hover,
  .review-site .nav-login:hover,
  .review-site .footer-main nav a:hover,
  .review-site .footer-bottom a:hover {
    color: #fff;
  }

  .capability-grid article:hover,
  .privacy-grid article:hover {
    border-color: rgba(255, 59, 48, 0.27);
    background: rgba(255, 59, 48, 0.032);
    transform: translateY(-3px);
  }

  .report-tabs button:hover,
  .review-case-tabs .case-tab:hover,
  .faq-list button:hover {
    color: #fff;
  }
}

@media (max-width: 1080px) {
  .review-site .section-shell,
  .review-site .nav-shell,
  .review-site .footer-main,
  .review-site .footer-bottom {
    width: min(100% - 40px, var(--review-width));
  }

  .review-site .public-nav {
    gap: 20px;
  }

  .review-site .nav-actions {
    margin-left: 24px;
  }

  .review-hero-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(450px, 1.05fr);
    gap: 28px;
  }

  .review-hero h1 {
    font-size: 46px;
  }

  .workflow-track {
    gap: 8px;
  }

  .workflow-track > article {
    min-width: 80px;
  }

  .review-case-display {
    gap: 42px;
  }

  .full-report-scores {
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .review-site .section-shell,
  .review-site .nav-shell,
  .review-site .footer-main,
  .review-site .footer-bottom {
    width: min(100% - 32px, var(--review-width));
  }

  .review-site .nav-actions {
    display: none;
  }

  .review-site .mobile-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .review-site .public-nav {
    position: absolute;
    top: 61px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--review-rule);
    border-radius: 8px;
    background: rgba(11, 11, 18, 0.98);
    padding: 10px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
  }

  .review-site .public-nav.is-open {
    display: grid;
  }

  .review-site .public-nav a {
    min-height: 43px;
    padding: 12px;
  }

  .review-site .public-nav .mobile-only {
    display: block;
    color: #ff6c5a;
  }

  .review-site .review-hero {
    min-height: auto;
    padding: 116px 0 88px;
  }

  .review-hero-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .review-hero-copy {
    max-width: 680px;
  }

  .review-hero h1 {
    max-width: 670px;
    font-size: 54px;
  }

  .hero-report-shell {
    width: min(100%, 650px);
    justify-self: center;
  }

  .review-scroll-cue {
    display: none;
  }

  .review-section {
    padding: 92px 0;
  }

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

  .why-grid article,
  .why-grid article + article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--review-rule);
    padding: 28px 0 32px;
  }

  .why-grid article:last-child {
    border-bottom: 0;
  }

  .why-grid h3 {
    max-width: none;
    margin-top: 25px;
  }

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

  .workflow-track > svg {
    display: none;
  }

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

  .capability-grid article {
    min-height: 285px;
  }

  .review-case-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .review-case-tabs::-webkit-scrollbar {
    display: none;
  }

  .review-case-tabs .case-tab {
    width: auto;
    flex: none;
  }

  .review-case-display {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .review-case-display .case-media {
    height: min(54vw, 440px);
  }

  .report-heading {
    display: grid;
    gap: 20px;
  }

  .report-heading > span {
    max-width: 560px;
  }

  .full-report > header {
    align-items: flex-start;
  }

  .full-report-grid {
    grid-template-columns: 1fr;
  }

  .moment-list {
    border-right: 0;
    border-bottom: 1px solid var(--review-rule);
  }

  .privacy-grid,
  .review-site .pricing-grid {
    grid-template-columns: 1fr;
  }

  .privacy-grid article {
    min-height: 260px;
  }

  .review-site .pricing-card {
    min-height: 0;
  }

  .review-site .pricing-card ul {
    min-height: 190px;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .review-site .footer-main {
    grid-template-columns: minmax(220px, 1.6fr) repeat(3, minmax(110px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .review-site .section-shell,
  .review-site .nav-shell,
  .review-site .footer-main,
  .review-site .footer-bottom {
    width: calc(100% - 28px);
  }

  .review-site .nav-shell {
    min-height: 62px;
  }

  .review-site .public-nav {
    top: 56px;
  }

  .review-site .review-hero {
    padding: 96px 0 70px;
  }

  .review-eyebrow {
    margin-bottom: 21px;
    font-size: 9px;
  }

  .review-hero h1 {
    font-size: 39px;
    line-height: 1.2;
  }

  .review-hero-lede {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.75;
  }

  .review-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .review-hero-actions .button {
    width: 100%;
  }

  .review-proof {
    margin-top: 25px;
  }

  .hero-report-shell {
    padding: 0;
  }

  .report-preview-head {
    padding: 20px 18px 14px;
  }

  .report-preview-head h2 {
    font-size: 16px;
  }

  .report-score {
    width: 60px;
    height: 60px;
  }

  .report-score strong {
    font-size: 22px;
  }

  .report-summary {
    margin: 0 18px 14px;
    font-size: 11px;
  }

  .report-tabs {
    margin-inline: 18px;
  }

  .report-tab-panel {
    padding: 15px 18px 20px;
  }

  .review-section {
    padding: 74px 0;
  }

  .review-section-heading {
    margin-bottom: 38px;
  }

  .review-section-heading h2,
  .review-download-panel h2 {
    font-size: 34px;
  }

  .why-section .section-label {
    margin-bottom: 28px;
  }

  .why-grid h3 {
    font-size: 25px;
  }

  .workflow-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 12px;
  }

  .capability-grid article {
    min-height: 0;
    padding: 24px;
  }

  .capability-meta {
    min-height: 70px;
  }

  .capability-meta strong {
    font-size: 42px;
  }

  .capability-grid h3 {
    margin-top: 27px;
    font-size: 24px;
  }

  .review-case-tabs {
    margin-right: -14px;
    margin-bottom: 30px;
  }

  .review-case-tabs .case-tab {
    padding-inline: 18px;
  }

  .review-case-tabs .case-tab.is-active::after {
    right: 18px;
    left: 18px;
  }

  .review-case-display .case-media {
    height: 245px;
  }

  .review-case-display .case-copy h3 {
    font-size: 30px;
  }

  .review-case-display .case-copy .button {
    width: 100%;
  }

  .full-report > header {
    display: grid;
    gap: 25px;
    padding: 25px 20px;
  }

  .full-report-scores {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .full-report-scores strong {
    font-size: 23px;
  }

  .moment-list,
  .report-side {
    padding: 25px 20px;
  }

  .moment-list > article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .privacy-grid article {
    min-height: 0;
    padding: 25px;
  }

  .privacy-grid article > strong {
    margin-top: 34px;
  }

  .review-site .pricing-card {
    padding: 25px;
  }

  .review-site .pricing-card ul {
    min-height: 0;
  }

  .faq-list button {
    min-height: 66px;
    font-size: 14px;
  }

  .review-download-section {
    padding: 60px 0;
  }

  .review-download-panel {
    padding: 52px 20px;
  }

  .review-download-panel::before,
  .review-download-panel::after {
    width: 70px;
  }

  .review-download-panel .download-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .review-download-panel .download-actions > * {
    width: 100%;
  }

  .review-site .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
  }

  .review-site .footer-intro {
    grid-column: 1 / -1;
  }

  .review-site .footer-bottom {
    align-items: flex-start;
  }

  .review-site .footer-bottom div {
    flex-wrap: wrap;
  }
}

@media (max-width: 390px) {
  .review-hero h1 {
    font-size: 35px;
  }

  .report-browser-bar {
    grid-template-columns: 50px minmax(0, 1fr) 16px;
  }

  .report-preview-head {
    gap: 12px;
  }

  .report-preview-head h2 {
    font-size: 15px;
  }

  .why-grid h3,
  .capability-grid h3 {
    overflow-wrap: anywhere;
  }

  .full-report-scores small {
    max-width: 62px;
  }

  .review-site .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .capability-grid article,
  .privacy-grid article,
  .faq-list article > p {
    transition: none !important;
  }
}

/* Theme switch */
.review-site .theme-toggle {
  width: 38px;
  min-height: 38px;
  flex: none;
  margin-left: 24px;
  border-color: var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  padding: 0;
  box-shadow: none;
}

.theme-toggle svg {
  width: 17px;
  height: 17px;
}

.theme-icon-moon {
  display: block;
}

.theme-icon-sun {
  display: none;
}

html[data-theme="dark"] .theme-icon-moon {
  display: none;
}

html[data-theme="dark"] .theme-icon-sun {
  display: block;
}

/* Light theme follows the current Figma direction. */
html[data-theme="light"] {
  color-scheme: light;
  --page: #f7faf9;
  --page-soft: #f1f6f5;
  --surface: #ffffff;
  --surface-strong: #edf4f3;
  --surface-faint: rgba(28, 72, 84, 0.025);
  --ink: #183f4b;
  --muted: rgba(28, 67, 79, 0.54);
  --muted-strong: rgba(28, 67, 79, 0.72);
  --line: rgba(28, 72, 84, 0.11);
  --line-strong: rgba(28, 72, 84, 0.2);
  --red: #1d5667;
  --coral: #2b7180;
  --orange: #4f8e99;
  --peach: #77aab1;
  --focus: rgba(32, 97, 112, 0.22);
}

html[data-theme="light"] .review-site {
  --page: #f7faf9;
  --page-soft: #f1f6f5;
  --surface: #ffffff;
  --surface-strong: #edf4f3;
  --surface-faint: rgba(28, 72, 84, 0.025);
  --ink: #183f4b;
  --muted: rgba(28, 67, 79, 0.54);
  --muted-strong: rgba(28, 67, 79, 0.72);
  --line: rgba(28, 72, 84, 0.11);
  --line-strong: rgba(28, 72, 84, 0.2);
  --red: #1d5667;
  --coral: #2b7180;
  --orange: #4f8e99;
  --peach: #77aab1;
  --focus: rgba(32, 97, 112, 0.22);
  --review-panel: #ffffff;
  --review-panel-strong: #f3f7f7;
  --review-rule: rgba(30, 74, 86, 0.115);
  --review-red-soft: rgba(33, 94, 108, 0.075);
  background:
    linear-gradient(rgba(30, 74, 86, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 74, 86, 0.045) 1px, transparent 1px),
    #f7faf9;
  background-size: 74px 74px;
  color: #183f4b;
}

html[data-theme="light"] .review-site .site-header,
html[data-theme="light"] .review-site .site-header.is-scrolled {
  border-bottom-color: rgba(31, 75, 86, 0.08);
  background: rgba(250, 252, 251, 0.9);
  box-shadow: 0 8px 30px rgba(35, 73, 82, 0.025);
}

html[data-theme="light"] .review-site .brand-mark {
  background: #1d5667;
  box-shadow: 0 7px 20px rgba(29, 86, 103, 0.2);
}

html[data-theme="light"] .review-site .brand-name {
  color: #173e4a;
}

html[data-theme="light"] .review-site .public-nav a,
html[data-theme="light"] .review-site .nav-login {
  color: rgba(28, 66, 78, 0.62);
}

html[data-theme="light"] .review-site .button,
html[data-theme="light"] .review-site button:not(.button-secondary):not(.ghost):not(.theme-toggle):not(.mobile-nav-toggle):not(.case-tab):not(.faq-list button):not(.report-tabs button):not(.case-dots button):not(.login-backdrop):not(.modal-close) {
  background: #1d5667;
  color: #fff;
  box-shadow: 0 8px 24px rgba(29, 86, 103, 0.18);
}

html[data-theme="light"] .review-site .button-secondary,
html[data-theme="light"] .review-site button.button-secondary {
  border-color: rgba(30, 76, 88, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(25, 65, 77, 0.72);
  box-shadow: none;
}

html[data-theme="light"] .review-site .theme-toggle,
html[data-theme="light"] .review-site .mobile-nav-toggle {
  border-color: rgba(30, 76, 88, 0.13);
  background: rgba(255, 255, 255, 0.82);
  color: #315e69;
  box-shadow: 0 5px 16px rgba(35, 73, 82, 0.06);
}

html[data-theme="light"] .review-site .review-hero {
  border-bottom-color: rgba(30, 74, 86, 0.09);
}

html[data-theme="light"] .review-site .review-grid-bg {
  background:
    linear-gradient(rgba(30, 74, 86, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 74, 86, 0.05) 1px, transparent 1px),
    linear-gradient(120deg, rgba(66, 132, 143, 0.05), transparent 38%),
    #f9fbfa;
  background-size:
    74px 74px,
    74px 74px,
    100% 100%,
    100% 100%;
}

html[data-theme="light"] .review-site .review-eyebrow {
  border-color: rgba(36, 94, 107, 0.15);
  background: rgba(37, 96, 109, 0.05);
  color: #2a6877;
}

html[data-theme="light"] .review-site .review-eyebrow span {
  background: #1f5d6d;
  box-shadow: 0 0 10px rgba(31, 93, 109, 0.35);
}

html[data-theme="light"] .review-site .review-hero h1 {
  color: #173e4a;
}

html[data-theme="light"] .review-site .review-hero h1 span {
  background: linear-gradient(115deg, #1f5260 2%, #43818e 88%);
  background-clip: text;
  -webkit-background-clip: text;
}

html[data-theme="light"] .review-site .review-hero-lede {
  color: rgba(28, 66, 78, 0.62);
}

html[data-theme="light"] .review-site .review-proof .avatar-stack img {
  border-color: #f8fbfa;
}

html[data-theme="light"] .review-site .review-proof p {
  color: rgba(28, 66, 78, 0.52);
}

html[data-theme="light"] .review-site .review-proof strong {
  color: #224f5b;
}

html[data-theme="light"] .review-site .hero-report-shell::before {
  border-color: rgba(42, 96, 108, 0.08);
  background: rgba(44, 104, 117, 0.045);
}

html[data-theme="light"] .review-site .report-browser {
  border-color: rgba(35, 77, 88, 0.13);
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 28px 65px rgba(35, 70, 80, 0.13),
    0 0 0 1px rgba(255, 255, 255, 0.7);
}

html[data-theme="light"] .review-site .report-browser-bar {
  border-bottom-color: rgba(30, 74, 86, 0.09);
  background: #f5f8f8;
}

html[data-theme="light"] .review-site .report-browser-bar > div i {
  background: #b7d6ce;
}

html[data-theme="light"] .review-site .report-browser-bar > div i:first-child {
  background: #f2a6a0;
}

html[data-theme="light"] .review-site .report-browser-bar > div i:nth-child(2) {
  background: #f1d99e;
}

html[data-theme="light"] .review-site .report-browser-bar > div i:nth-child(3) {
  background: #a9d8bf;
}

html[data-theme="light"] .review-site .report-browser-bar span,
html[data-theme="light"] .review-site .report-browser-bar svg {
  color: rgba(30, 70, 82, 0.32);
}

html[data-theme="light"] .review-site .report-preview-head p,
html[data-theme="light"] .review-site .report-heading > div > p,
html[data-theme="light"] .review-site .review-section-heading > p,
html[data-theme="light"] .review-site .section-label,
html[data-theme="light"] .review-site .review-download-panel > p {
  color: #3e7b87;
}

html[data-theme="light"] .review-site .report-preview-head h2,
html[data-theme="light"] .review-site .review-section-heading h2,
html[data-theme="light"] .review-site .why-grid h3,
html[data-theme="light"] .review-site .capability-grid h3,
html[data-theme="light"] .review-site .review-case-display .case-copy h3,
html[data-theme="light"] .review-site .review-download-panel h2 {
  color: #183f4b;
}

html[data-theme="light"] .review-site .report-preview-head > div:first-child > span {
  color: rgba(30, 69, 81, 0.4);
}

html[data-theme="light"] .review-site .report-score {
  border-color: #2e6978;
  background: #fff;
}

html[data-theme="light"] .review-site .report-score strong {
  color: #215a69;
}

html[data-theme="light"] .review-site .report-score span {
  color: rgba(30, 69, 81, 0.45);
}

html[data-theme="light"] .review-site .report-summary {
  border-left-color: #3c7c88;
  color: rgba(28, 65, 77, 0.65);
}

html[data-theme="light"] .review-site .report-tabs {
  border-bottom-color: rgba(30, 74, 86, 0.1);
}

html[data-theme="light"] .review-site .report-tabs button {
  color: rgba(28, 65, 77, 0.42);
}

html[data-theme="light"] .review-site .report-tabs button.is-active {
  color: #214e59;
}

html[data-theme="light"] .review-site .report-tabs button.is-active::after {
  background: #245d6b;
}

html[data-theme="light"] .review-site .report-insight,
html[data-theme="light"] .review-site .report-goal,
html[data-theme="light"] .review-site .report-quote {
  border-color: rgba(30, 74, 86, 0.09);
  background: #f7faf9;
}

html[data-theme="light"] .review-site .report-insight.is-good {
  border-color: rgba(63, 169, 125, 0.18);
  background: #edf9f4;
}

html[data-theme="light"] .review-site .report-insight.is-focus {
  border-color: rgba(209, 165, 47, 0.22);
  background: #fff9eb;
}

html[data-theme="light"] .review-site .report-goal {
  border-color: rgba(65, 128, 144, 0.14);
  background: #f0f6f7;
}

html[data-theme="light"] .review-site .report-insight span,
html[data-theme="light"] .review-site .report-goal span,
html[data-theme="light"] .review-site .report-quote span {
  color: rgba(29, 70, 81, 0.52);
}

html[data-theme="light"] .review-site .report-insight.is-good span {
  color: #24825d;
}

html[data-theme="light"] .review-site .report-insight.is-focus span {
  color: #b98110;
}

html[data-theme="light"] .review-site .report-insight p,
html[data-theme="light"] .review-site .report-goal p,
html[data-theme="light"] .review-site .report-quote p {
  color: rgba(28, 65, 77, 0.68);
}

html[data-theme="light"] .review-site .review-scroll-cue {
  color: rgba(28, 66, 78, 0.36);
}

html[data-theme="light"] .review-site .review-section {
  border-bottom-color: rgba(30, 74, 86, 0.08);
}

html[data-theme="light"] .review-site .why-section,
html[data-theme="light"] .review-site .capability-section,
html[data-theme="light"] .review-site .report-example-section,
html[data-theme="light"] .review-site .pricing-section,
html[data-theme="light"] .review-site .review-download-section {
  background: #f7faf9;
}

html[data-theme="light"] .review-site .workflow-section,
html[data-theme="light"] .review-site .case-section,
html[data-theme="light"] .review-site .privacy-section,
html[data-theme="light"] .review-site .faq-section {
  background: #ffffff;
}

html[data-theme="light"] .review-site .why-grid,
html[data-theme="light"] .review-site .why-grid article,
html[data-theme="light"] .review-site .workflow-track,
html[data-theme="light"] .review-site .review-case-tabs {
  border-color: rgba(30, 74, 86, 0.11);
}

html[data-theme="light"] .review-site .why-grid article > span,
html[data-theme="light"] .review-site .capability-meta > span {
  color: rgba(38, 102, 116, 0.62);
}

html[data-theme="light"] .review-site .why-grid p,
html[data-theme="light"] .review-site .capability-grid p,
html[data-theme="light"] .review-site .review-section-heading > span,
html[data-theme="light"] .review-site .report-heading > span,
html[data-theme="light"] .review-site .review-case-display .case-copy > p,
html[data-theme="light"] .review-site .privacy-grid p,
html[data-theme="light"] .review-site .review-download-panel > span {
  color: rgba(28, 65, 77, 0.54);
}

html[data-theme="light"] .review-site .workflow-track > article > span {
  border-color: rgba(34, 94, 107, 0.16);
  background: #edf5f5;
  color: #286574;
}

html[data-theme="light"] .review-site .workflow-track > article p {
  color: #214a55;
}

html[data-theme="light"] .review-site .workflow-track > article small,
html[data-theme="light"] .review-site .workflow-track > svg {
  color: rgba(28, 65, 77, 0.38);
}

html[data-theme="light"] .review-site .capability-grid article,
html[data-theme="light"] .review-site .privacy-grid article,
html[data-theme="light"] .review-site .pricing-card {
  border-color: rgba(30, 74, 86, 0.11);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 40px rgba(34, 72, 82, 0.045);
}

html[data-theme="light"] .review-site .capability-grid article::after {
  background: #2a6877;
}

html[data-theme="light"] .review-site .capability-meta strong {
  color: #214f5b;
}

html[data-theme="light"] .review-site .capability-meta small {
  color: rgba(28, 65, 77, 0.38);
}

html[data-theme="light"] .review-site .review-case-tabs .case-tab {
  color: rgba(28, 65, 77, 0.42);
}

html[data-theme="light"] .review-site .review-case-tabs .case-tab.is-active {
  color: #1c4955;
}

html[data-theme="light"] .review-site .review-case-tabs .case-tab.is-active::after,
html[data-theme="light"] .review-site .case-dots button.is-active::after {
  background: #245f6d;
}

html[data-theme="light"] .review-site .review-case-display .case-media {
  border-color: rgba(30, 74, 86, 0.12);
  background: #dfe9e7;
  box-shadow: 0 20px 46px rgba(34, 72, 82, 0.1);
}

html[data-theme="light"] .review-site .review-case-display .case-media::after {
  background: linear-gradient(to top, rgba(17, 54, 64, 0.26), transparent 62%);
}

html[data-theme="light"] .review-site .review-case-display .case-media img {
  opacity: 0.9;
  filter: saturate(0.82) contrast(1.02);
}

html[data-theme="light"] .review-site .review-case-display .case-copy li {
  color: rgba(28, 65, 77, 0.68);
}

html[data-theme="light"] .review-site .review-case-display .case-copy li::before {
  background: #2f7280;
}

html[data-theme="light"] .review-site .full-report {
  border-color: rgba(30, 74, 86, 0.13);
  background: #ffffff;
  box-shadow: 0 28px 65px rgba(34, 72, 82, 0.09);
}

html[data-theme="light"] .review-site .full-report > header,
html[data-theme="light"] .review-site .moment-list,
html[data-theme="light"] .review-site .report-side > div,
html[data-theme="light"] .review-site .moment-list > article {
  border-color: rgba(30, 74, 86, 0.09);
}

html[data-theme="light"] .review-site .full-report > header p,
html[data-theme="light"] .review-site .moment-list > article.is-risk > span {
  color: #b6712d;
}

html[data-theme="light"] .review-site .full-report > header h3,
html[data-theme="light"] .review-site .full-report h4,
html[data-theme="light"] .review-site .moment-list strong {
  color: #214955;
}

html[data-theme="light"] .review-site .full-report > header > div:first-child > span,
html[data-theme="light"] .review-site .full-report-scores small,
html[data-theme="light"] .review-site .audience-analysis p span {
  color: rgba(28, 65, 77, 0.38);
}

html[data-theme="light"] .review-site .full-report-scores strong,
html[data-theme="light"] .review-site .moment-list > article > span {
  color: #2b6876;
}

html[data-theme="light"] .review-site .moment-list p,
html[data-theme="light"] .review-site .audience-analysis p,
html[data-theme="light"] .review-site .next-goals p {
  color: rgba(28, 65, 77, 0.56);
}

html[data-theme="light"] .review-site .expression-advice del {
  color: rgba(168, 84, 73, 0.65);
}

html[data-theme="light"] .review-site .expression-advice ins {
  color: rgba(31, 126, 88, 0.82);
}

html[data-theme="light"] .review-site .next-goals svg {
  color: #2e6f7d;
}

html[data-theme="light"] .review-site .privacy-grid article > span {
  border-color: rgba(34, 94, 107, 0.16);
  background: #edf5f5;
  color: #286574;
}

html[data-theme="light"] .review-site .privacy-grid article > strong {
  color: #357685;
}

html[data-theme="light"] .review-site .privacy-grid h3 {
  color: #214955;
}

html[data-theme="light"] .review-site .pricing-card.is-featured {
  border-color: rgba(36, 95, 109, 0.38);
  background: #edf6f6;
  box-shadow: 0 18px 46px rgba(34, 82, 94, 0.1);
}

html[data-theme="light"] .review-site .popular-label {
  background: #1d5667;
  box-shadow: 0 8px 20px rgba(29, 86, 103, 0.2);
}

html[data-theme="light"] .review-site .pricing-card h3,
html[data-theme="light"] .review-site .price {
  color: #183f4b;
}

html[data-theme="light"] .review-site .pricing-card > div > p,
html[data-theme="light"] .review-site .price small,
html[data-theme="light"] .review-site .pricing-card li {
  color: rgba(28, 65, 77, 0.56);
}

html[data-theme="light"] .review-site .pricing-card li svg {
  color: #2b6b79;
}

html[data-theme="light"] .review-site .faq-list {
  border-color: rgba(30, 74, 86, 0.11);
}

html[data-theme="light"] .review-site .faq-list article {
  border-color: rgba(30, 74, 86, 0.11);
}

html[data-theme="light"] .review-site .faq-list button {
  color: #214955;
}

html[data-theme="light"] .review-site .faq-list button svg {
  color: rgba(28, 65, 77, 0.46);
}

html[data-theme="light"] .review-site .faq-list article > p {
  color: rgba(28, 65, 77, 0.56);
}

html[data-theme="light"] .review-site .review-download-section {
  border-bottom-color: rgba(30, 74, 86, 0.08);
}

html[data-theme="light"] .review-site .review-download-panel {
  border-color: rgba(33, 89, 102, 0.17);
  background:
    linear-gradient(110deg, rgba(49, 118, 131, 0.08), transparent 48%),
    #ffffff;
  box-shadow: 0 24px 58px rgba(34, 72, 82, 0.07);
}

html[data-theme="light"] .review-site .review-download-panel::before,
html[data-theme="light"] .review-site .review-download-panel::after {
  background: rgba(38, 101, 115, 0.32);
}

html[data-theme="light"] .review-site .review-download-panel > small {
  color: rgba(28, 65, 77, 0.38);
}

html[data-theme="light"] .review-site .site-footer {
  border-top-color: rgba(30, 74, 86, 0.09);
  background: #f3f7f6;
}

html[data-theme="light"] .review-site .footer-main h3 {
  color: #214955;
}

html[data-theme="light"] .review-site .footer-intro > p,
html[data-theme="light"] .review-site .footer-main nav a {
  color: rgba(28, 65, 77, 0.54);
}

html[data-theme="light"] .review-site .footer-badges span {
  border-color: rgba(30, 74, 86, 0.11);
  background: rgba(255, 255, 255, 0.58);
  color: rgba(28, 65, 77, 0.66);
}

html[data-theme="light"] .review-site .footer-bottom {
  border-top-color: rgba(30, 74, 86, 0.09);
}

html[data-theme="light"] .review-site .footer-bottom p,
html[data-theme="light"] .review-site .footer-bottom a {
  color: rgba(28, 65, 77, 0.4);
}

html[data-theme="light"] .review-site .login-backdrop {
  background: rgba(20, 45, 52, 0.24);
}

html[data-theme="light"] .review-site .session-card {
  border-color: rgba(30, 74, 86, 0.16);
  background: #ffffff;
  box-shadow: 0 32px 90px rgba(31, 69, 79, 0.2);
}

html[data-theme="light"] .review-site .modal-close,
html[data-theme="light"] .review-site .modal-theme-toggle {
  border-color: rgba(30, 74, 86, 0.14);
  background: #f3f7f6;
  color: rgba(28, 65, 77, 0.7);
}

html[data-theme="light"] .review-site .form-heading h2 {
  color: #183f4b;
}

html[data-theme="light"] .review-site .form-heading > p {
  color: #2b7180;
}

html[data-theme="light"] .review-site .form-heading small,
html[data-theme="light"] .review-site .form-hint,
html[data-theme="light"] .review-site .login-form label {
  color: rgba(28, 65, 77, 0.6);
}

html[data-theme="light"] .review-site .login-form input,
html[data-theme="light"] .dashboard-shell input,
html[data-theme="light"] .dashboard-shell select,
html[data-theme="light"] .dashboard-shell textarea {
  border-color: rgba(30, 74, 86, 0.18);
  background: #f6f9f8;
  color: #183f4b;
}

html[data-theme="light"] .review-site .login-form input::placeholder,
html[data-theme="light"] .dashboard-shell input::placeholder,
html[data-theme="light"] .dashboard-shell textarea::placeholder {
  color: rgba(28, 65, 77, 0.34);
}

html[data-theme="light"] .review-site .login-form input:focus,
html[data-theme="light"] .dashboard-shell input:focus,
html[data-theme="light"] .dashboard-shell select:focus,
html[data-theme="light"] .dashboard-shell textarea:focus {
  border-color: rgba(43, 113, 128, 0.72);
  background: #ffffff;
}

html[data-theme="light"] .dashboard-shell {
  background: #f4f8f7;
  color: var(--ink);
}

html[data-theme="light"] .dashboard-header {
  border-bottom-color: rgba(30, 74, 86, 0.1);
  background: rgba(250, 252, 251, 0.92);
  box-shadow: 0 8px 30px rgba(35, 73, 82, 0.035);
}

html[data-theme="light"] .dashboard-shell .brand-mark {
  background: #1d5667;
  box-shadow: 0 7px 20px rgba(29, 86, 103, 0.2);
}

html[data-theme="light"] .dashboard-shell .brand-name,
html[data-theme="light"] .dashboard-shell .dashboard-intro h1,
html[data-theme="light"] .dashboard-shell .panel-title h2,
html[data-theme="light"] .dashboard-shell .record-item h3,
html[data-theme="light"] .dashboard-shell .summary-box h4,
html[data-theme="light"] .dashboard-shell pre {
  color: #183f4b;
}

html[data-theme="light"] .dashboard-shell .theme-toggle,
html[data-theme="light"] .dashboard-shell button.ghost {
  border-color: rgba(30, 74, 86, 0.14);
  background: #ffffff;
  color: rgba(28, 65, 77, 0.72);
}

html[data-theme="light"] .dashboard-shell .panel,
html[data-theme="light"] .dashboard-shell .file-box,
html[data-theme="light"] .dashboard-shell .summary-box,
html[data-theme="light"] .dashboard-shell .record-item {
  border-color: rgba(30, 74, 86, 0.12);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(34, 72, 82, 0.035);
}

html[data-theme="light"] .dashboard-shell .file-box {
  border-color: rgba(30, 74, 86, 0.2);
  background: #f8fbfa;
}

html[data-theme="light"] .dashboard-shell .file-box.dragover {
  border-color: #2b7180;
  background: rgba(43, 113, 128, 0.08);
}

html[data-theme="light"] .dashboard-shell .progress-bar {
  background: rgba(30, 74, 86, 0.1);
}

html[data-theme="light"] .dashboard-shell .empty {
  border-color: rgba(30, 74, 86, 0.16);
}

html[data-theme="light"] .dashboard-shell .status {
  background: rgba(30, 74, 86, 0.07);
}

html[data-theme="light"] .dashboard-shell audio {
  color-scheme: light;
}

html[data-theme="light"] .toast {
  border-color: rgba(30, 74, 86, 0.16);
  background: #ffffff;
  color: #183f4b;
  box-shadow: 0 18px 50px rgba(34, 72, 82, 0.16);
}

@media (hover: hover) {
  html[data-theme="light"] .review-site .theme-toggle:hover,
  html[data-theme="light"] .review-site .mobile-nav-toggle:hover {
    border-color: rgba(31, 88, 101, 0.28);
    background: #fff;
    color: #173f4b;
  }

  html[data-theme="light"] .review-site .capability-grid article:hover,
  html[data-theme="light"] .review-site .privacy-grid article:hover {
    border-color: rgba(34, 94, 107, 0.23);
    background: #fff;
  }

  html[data-theme="light"] .dashboard-shell .theme-toggle:hover,
  html[data-theme="light"] .dashboard-shell button.ghost:hover {
    border-color: rgba(31, 88, 101, 0.28);
    background: #f7faf9;
    color: #173f4b;
    box-shadow: none;
  }
}

@media (max-width: 860px) {
  .review-site .theme-toggle {
    order: 2;
    margin-left: auto;
  }

  .review-site .mobile-nav-toggle {
    order: 3;
    margin-left: 10px;
  }

  html[data-theme="light"] .review-site .public-nav {
    border-color: rgba(30, 74, 86, 0.12);
    background: rgba(250, 252, 251, 0.98);
    box-shadow: 0 22px 50px rgba(34, 72, 82, 0.12);
  }

  html[data-theme="light"] .review-site .public-nav .mobile-only {
    color: #1f5e6d;
  }
}

@media (max-width: 920px) {
  .review-site .nav-actions {
    display: none;
  }

  .review-site .mobile-nav-toggle {
    display: inline-flex;
    order: 3;
    margin-left: 10px;
  }

  .review-site .theme-toggle {
    order: 2;
    margin-left: auto;
  }

  .review-site .public-nav {
    position: absolute;
    top: 61px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--review-rule);
    border-radius: 8px;
    background: rgba(11, 11, 18, 0.98);
    padding: 10px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
  }

  .review-site .public-nav.is-open {
    display: grid;
  }

  .review-site .public-nav a {
    min-height: 43px;
    padding: 12px;
  }

  .review-site .public-nav .mobile-only {
    display: block;
    color: #ff6c5a;
  }

  .review-hero-layout {
    grid-template-columns: 1fr;
  }

  .review-hero-copy {
    max-width: 680px;
  }

  .hero-report-shell {
    width: min(100%, 650px);
    justify-self: center;
  }

  .review-scroll-cue {
    display: none;
  }

  html[data-theme="light"] .review-site .public-nav {
    border-color: rgba(30, 74, 86, 0.12);
    background: rgba(250, 252, 251, 0.98);
    box-shadow: 0 22px 50px rgba(34, 72, 82, 0.12);
  }

  html[data-theme="light"] .review-site .public-nav .mobile-only {
    color: #1f5e6d;
  }
}

@media (max-width: 640px) {
  .dashboard-header .brand-caption {
    display: none;
  }

  .dashboard-actions {
    gap: 8px;
  }

  .dashboard-actions .profile-panel {
    gap: 0;
  }

  .dashboard-actions .profile-panel button {
    padding-inline: 12px;
  }
}

@media (min-width: 861px) and (max-width: 920px) {
  .review-site .review-hero {
    min-height: auto;
    padding: 108px 0 78px;
  }

  .review-hero-layout {
    gap: 50px;
  }
}
