:root {
  --bg: #ffffff;
  --ink: #0b0f13;
  --graphite: #151b21;
  --graphite-2: #1f2933;
  --muted: #5b6673;
  --line: #d9e0e6;
  --soft: #f3f7f5;
  --soft-2: #eef4f8;
  --green: #00c26f;
  --green-2: #b8ffd9;
  --blue: #2d72ff;
  --radius: 8px;
  --shadow: 0 24px 70px rgb(15 23 30 / 14%);
  --max: 1160px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: var(--green-2);
  color: var(--ink);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 18px clamp(20px, 4vw, 48px);
  background: rgb(255 255 255 / 86%);
  border-bottom: 1px solid rgb(217 224 230 / 64%);
  backdrop-filter: blur(18px);
}

.site-header[data-scrolled] {
  box-shadow: 0 12px 34px rgb(15 23 30 / 7%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 760;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #06100b;
  background: linear-gradient(135deg, var(--green), #75f7a4);
  border-radius: 7px;
  font-weight: 850;
  box-shadow: 0 12px 30px rgb(0 194 111 / 28%);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.main-nav a,
.footer-links a,
.footer-links button {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover,
.footer-links a:hover,
.footer-links button:hover {
  color: var(--ink);
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.language-switcher a {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 30px;
  padding: 0 8px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 820;
}

.language-switcher a[aria-current="page"] {
  color: #06100b;
  background: var(--green-2);
}

.nav-login,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 760;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-login {
  color: var(--muted);
  border: 1px solid var(--line);
  background: #fff;
}

.nav-login:hover {
  color: var(--ink);
  border-color: #aebbc5;
  transform: translateY(-1px);
}

.nav-cta {
  border: 1px solid var(--ink);
}

.nav-cta:hover {
  color: #fff;
  background: var(--ink);
  transform: translateY(-1px);
}

.section-band,
.section {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  scroll-margin-top: 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(40px, 6vw, 82px);
  min-height: min(780px, calc(100vh - 126px));
  padding: clamp(42px, 6vw, 68px) 0 42px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.3vw, 68px);
  line-height: 0.98;
  font-weight: 830;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.16;
}

.hero-lede,
.section-intro p,
.workflow-copy p,
.business-panel p,
.pricing-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 780;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button[aria-busy="true"] {
  opacity: 0.78;
  pointer-events: none;
}

.button-primary {
  color: #06100b;
  background: var(--green);
  box-shadow: 0 18px 42px rgb(0 194 111 / 24%);
}

.button-primary:hover {
  box-shadow: 0 22px 48px rgb(0 194 111 / 34%);
}

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

.button-secondary:hover {
  border-color: #aab7c2;
  box-shadow: 0 15px 36px rgb(15 23 30 / 9%);
}

.full-width {
  width: 100%;
}

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

.hero-facts div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-facts dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-size: 16px;
  font-weight: 760;
}

.product-stage {
  position: relative;
  min-height: 540px;
}

.product-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  box-shadow: 0 20px 55px rgb(15 23 30 / 10%);
}

.product-stage .product-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
}

.product-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.mac-frame {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 74%;
  overflow: hidden;
  border: 1px solid #2f3c45;
  border-radius: 18px;
  background:
    radial-gradient(circle at 72% 0%, rgb(0 194 111 / 18%), transparent 36%),
    linear-gradient(145deg, #111820, #0a0f14 52%, #18212a);
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 16px;
  color: #9fb0bd;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff5f57;
}

.window-bar span:nth-child(2) {
  background: #febc2e;
}

.window-bar span:nth-child(3) {
  background: #28c840;
}

.window-bar p {
  margin: 0 0 0 10px;
  font-size: 13px;
  font-weight: 700;
}

.voice-panel {
  padding: clamp(18px, 3vw, 30px);
}

.recorder-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.record-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  box-shadow: 0 0 0 8px rgb(0 194 111 / 12%);
}

.record-button span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #07100b;
}

.record-button.is-active {
  background: #ff5f57;
  box-shadow: 0 0 0 8px rgb(255 95 87 / 15%);
}

.recorder-row strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.recorder-row p {
  margin: 0;
  color: #95a7b3;
  font-size: 14px;
}

.recorder-row output {
  color: var(--green-2);
  font-size: 16px;
  font-weight: 780;
}

.waveform {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: end;
  gap: 8px;
  height: 86px;
  margin: 24px 0;
}

.waveform span {
  display: block;
  height: var(--h);
  min-height: 18px;
  border-radius: 99px 99px 3px 3px;
  background: linear-gradient(180deg, var(--green), #2874ff);
  opacity: 0.92;
  transform-origin: bottom;
  animation: pulse 1.6s ease-in-out infinite;
  animation-delay: calc(var(--h) * -0.012);
}

.transcript-card,
.output-card {
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 12px;
  color: #eaf1f4;
  background: rgb(255 255 255 / 6%);
}

.transcript-card {
  margin-bottom: 12px;
}

.output-card {
  color: #07100b;
  background: #d8ffe9;
  border-color: rgb(0 194 111 / 36%);
}

.transcript-card p:last-child,
.output-card p:last-child {
  margin-bottom: 0;
  line-height: 1.48;
}

.raw-label {
  margin-bottom: 8px;
  color: #78909e;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.output-card .raw-label {
  color: #217549;
}

.privacy-path {
  position: absolute;
  right: 22px;
  bottom: -27px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 18px 50px rgb(15 23 30 / 16%);
  font-size: 13px;
  font-weight: 780;
  white-space: nowrap;
}

.privacy-path svg {
  width: 34px;
  height: 14px;
  fill: none;
  stroke: #7b8994;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-path strong {
  color: #087948;
}

.section {
  padding: clamp(76px, 11vw, 128px) 0;
}

.section-label {
  margin-bottom: 12px;
  color: #087948;
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.privacy-proof {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--soft));
}

.proof-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: #062113;
  background: var(--green-2);
  border-radius: 7px;
}

.proof-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-proof p,
.steps p,
.business-list span,
.price-card p,
.price-card li,
.faq-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.56;
}

.assurance-section {
  width: 100%;
  max-width: none;
  padding: clamp(64px, 9vw, 104px) 0;
  background: #111820;
}

.assurance-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 78px);
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  color: #fff;
}

.assurance-copy {
  max-width: 640px;
}

.assurance-copy .section-label {
  color: var(--green-2);
}

.assurance-copy p {
  color: #c3d0d8;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.58;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  align-content: start;
}

.assurance-point {
  min-width: 0;
  padding-top: 16px;
  border-top: 1px solid rgb(255 255 255 / 16%);
}

.assurance-point strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
}

.assurance-point span {
  color: #aebdc7;
  line-height: 1.5;
}

.assurance-note {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 0;
  padding-top: 18px;
  color: var(--green-2);
  border-top: 1px solid rgb(184 255 217 / 26%);
  font-weight: 720;
  line-height: 1.5;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: start;
}

.workflow-copy {
  position: sticky;
  top: 110px;
}

.steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #087948;
  border: 1px solid #91eec1;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 820;
}

.steps h3,
.steps p {
  grid-column: 2;
}

.examples-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
  padding-top: clamp(72px, 10vw, 116px);
  padding-bottom: clamp(76px, 10vw, 120px);
}

.examples-copy {
  position: sticky;
  top: 110px;
}

.examples-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.examples-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 26px;
}

.examples-flow span:not(.flow-arrow) {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: #075735;
  border: 1px solid #91eec1;
  border-radius: var(--radius);
  background: var(--green-soft, #effff6);
  font-size: 12px;
  font-weight: 820;
}

.flow-arrow {
  position: relative;
  width: 28px;
  height: 1px;
  background: #9cafbc;
}

.flow-arrow::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 1px solid #9cafbc;
  border-right: 1px solid #9cafbc;
  transform: rotate(45deg);
}

.examples-proof {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgb(15 23 30 / 6%);
}

.examples-proof .brand-proof-title {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.35;
}

.brand-logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 1px solid rgb(217 224 230 / 86%);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 18px rgb(15 23 30 / 7%);
}

.brand-logo img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

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

.proof-metric {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgb(217 224 230 / 78%);
  border-radius: var(--radius);
  background: #f6f9fb;
}

.proof-metric strong,
.proof-metric span {
  display: block;
}

.proof-metric strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.proof-metric span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  line-height: 1.28;
}

.examples-proof .brand-note {
  margin: 0;
  color: #72808d;
  font-size: 11px;
  line-height: 1.42;
}

.examples-stage {
  min-width: 0;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgb(0 194 111 / 8%), transparent 34%),
    linear-gradient(180deg, #fff, #f6f9fb);
  box-shadow: 0 24px 70px rgb(15 23 30 / 10%);
}

.examples-stage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.examples-stage-head span {
  color: var(--ink);
  font-size: 22px;
  font-weight: 850;
}

.examples-stage-head strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  color: #075735;
  border: 1px solid #91eec1;
  border-radius: var(--radius);
  background: #effff6;
  font-size: 12px;
  font-weight: 840;
}

.app-demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.app-demo {
  --accent: var(--green);
  --tint: #f6fbf7;
  position: relative;
  display: grid;
  gap: 12px;
  min-width: 0;
  min-height: 254px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgb(15 23 30 / 6%);
  animation: demoFloat 9s ease-in-out infinite;
  animation-delay: calc(var(--i) * -1.2s);
}

.app-demo:nth-child(1) {
  --accent: #2d72ff;
  --tint: #f2f6ff;
}

.app-demo:nth-child(2) {
  --accent: #00a870;
  --tint: #effff7;
}

.app-demo:nth-child(3) {
  --accent: #111820;
  --tint: #f4f6f8;
}

.app-demo:nth-child(4) {
  --accent: #ffb224;
  --tint: #fff8e8;
}

.app-demo:nth-child(5) {
  --accent: #e45d45;
  --tint: #fff4f2;
}

.app-demo:nth-child(6) {
  --accent: #7c5cff;
  --tint: #f5f2ff;
}

.app-demo::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: demoProgress 7s linear infinite;
  animation-delay: calc(var(--i) * 0.35s);
}

.app-demo-top {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.app-logo-stack {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 52px;
}

.app-logo-stack .brand-logo {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: var(--radius);
  box-shadow: 0 9px 18px rgb(15 23 30 / 10%);
}

.app-logo-stack .brand-logo + .brand-logo {
  margin-left: -8px;
}

.app-logo-stack .brand-logo img {
  width: 18px;
  height: 18px;
}

.app-orb {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 35% 30%, rgb(255 255 255 / 80%), transparent 34%),
    var(--accent);
  box-shadow: 0 10px 22px rgb(15 23 30 / 14%);
}

.app-demo-top strong,
.app-demo-top small {
  display: block;
  overflow-wrap: anywhere;
}

.app-demo-top strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.app-demo-top small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.app-demo-canvas {
  display: grid;
  gap: 10px;
  min-height: 226px;
  padding: 12px;
  border: 1px solid rgb(217 224 230 / 74%);
  border-radius: var(--radius);
  background: var(--tint);
}

.voice-bubble {
  position: relative;
  min-height: 42px;
  padding: 9px 10px 9px 30px;
  margin: 0;
  color: var(--muted);
  border: 1px dashed color-mix(in srgb, var(--accent) 48%, #ffffff);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 78%);
  font-size: 12px;
  line-height: 1.35;
}

.voice-bubble::before {
  position: absolute;
  top: 14px;
  left: 12px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 28%, transparent);
  animation: recordingPulse 1.8s ease-out infinite;
}

.typed-label {
  margin: 0;
  color: color-mix(in srgb, var(--accent) 70%, var(--ink));
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.typed-output {
  min-height: 72px;
  margin: 0;
  overflow: visible;
  color: var(--ink);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.48;
}

.typed-output span {
  display: block;
  animation: typedReveal 7s steps(44, end) infinite;
  animation-delay: calc(var(--i) * 0.35s);
}

.typed-output span::after {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  vertical-align: -2px;
  content: "";
  background: var(--accent);
  animation: caretBlink 900ms steps(2) infinite;
}

.gain-line {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 10px;
  color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, #ffffff);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 72%);
  font-size: 12px;
  line-height: 1.35;
}

.gain-line strong {
  color: color-mix(in srgb, var(--accent) 70%, var(--ink));
  font-size: 10px;
  font-weight: 880;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gain-line span {
  color: #36434f;
  overflow-wrap: anywhere;
}

.business-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgb(0 194 111 / 14%) 1px, transparent 1px),
    linear-gradient(180deg, var(--graphite), #0d1217);
  background-size:
    72px 72px,
    auto;
}

.business-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.business-panel > * {
  min-width: 0;
}

.business-panel .section-label {
  color: var(--green-2);
}

.business-panel p {
  color: #aebdc8;
  overflow-wrap: anywhere;
}

.business-panel h2,
.business-list strong,
.business-list span {
  overflow-wrap: anywhere;
}

.business-list {
  display: grid;
  gap: 0;
  min-width: 0;
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.business-list div {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.business-list strong {
  font-size: 18px;
}

.business-list span {
  color: #aebdc8;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  padding-top: clamp(72px, 10vw, 112px);
  padding-bottom: clamp(72px, 10vw, 112px);
}

.download-copy {
  position: sticky;
  top: 110px;
}

.download-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.release-highlights {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.release-highlights li {
  position: relative;
  min-width: 0;
  padding-left: 24px;
  color: #36434f;
  font-size: 15px;
  font-weight: 660;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.release-highlights li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgb(0 194 111 / 13%);
}

.release-history {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgb(15 23 30 / 6%);
}

.release-history > strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 880;
  text-transform: uppercase;
}

.release-history ol {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.release-history li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-width: 0;
}

.release-history span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  color: #075735;
  border: 1px solid #91eec1;
  border-radius: var(--radius);
  background: #effff6;
  font-size: 12px;
  font-weight: 880;
}

.release-history p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.release-live {
  min-height: 22px;
  margin-top: 18px;
  color: #087948;
  font-size: 14px !important;
  font-weight: 760;
}

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

.download-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  min-height: 314px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.download-card[data-release-state="available"] {
  border-color: #91eec1;
  box-shadow: 0 18px 40px rgb(0 194 111 / 10%);
}

.download-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.download-card-head span {
  color: var(--ink);
  font-size: 19px;
  font-weight: 860;
}

.download-card-head strong {
  flex: 0 0 auto;
  padding: 6px 9px;
  color: #5f4500;
  border: 1px solid #ead792;
  border-radius: 999px;
  background: #fff7cf;
  font-size: 12px;
}

.download-card[data-release-state="available"] .download-card-head strong {
  color: #075735;
  border-color: #91eec1;
  background: var(--green-soft);
}

.download-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.release-meta {
  display: grid;
  gap: 9px;
  margin: 0;
}

.release-meta div {
  display: grid;
  grid-template-columns: minmax(90px, 0.45fr) minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

.release-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.release-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.release-notes {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  font-size: 14px;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  padding-top: clamp(72px, 10vw, 112px);
  padding-bottom: clamp(72px, 10vw, 112px);
}

.lead-copy {
  position: sticky;
  top: 110px;
}

.lead-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--soft));
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #28333c;
  font-size: 13px;
  font-weight: 760;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
}

.lead-form textarea {
  min-height: 136px;
  resize: vertical;
}

.lead-message,
.lead-privacy,
.lead-status,
.lead-form button {
  grid-column: 1 / -1;
}

.lead-privacy,
.lead-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.lead-status:not(:empty) {
  color: #087948;
  font-weight: 760;
}

.lead-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.company-section {
  padding-bottom: clamp(70px, 9vw, 108px);
}

.company-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  padding: clamp(34px, 5vw, 54px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-panel > * {
  min-width: 0;
}

.company-panel p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.company-panel h2,
.company-panel .section-label {
  overflow-wrap: anywhere;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 6px;
  color: #087948;
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

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

.company-trust div {
  min-width: 0;
  min-height: 148px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--soft));
}

.company-trust strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  overflow-wrap: anywhere;
}

.company-trust span {
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.comparison-section {
  padding-top: clamp(84px, 12vw, 140px);
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.92fr 1fr 1fr;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 0 22px;
  border-top: 1px solid var(--line);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-head {
  min-height: 54px;
  color: var(--muted);
  background: var(--soft-2);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.comparison-row span {
  color: var(--muted);
}

.comparison-row span:first-child {
  color: var(--ink);
  font-weight: 760;
}

.comparison-row strong {
  color: #087948;
}

.pricing-section {
  display: grid;
  gap: 18px;
  align-items: start;
  padding-top: 54px;
}

.pricing-copy {
  max-width: 780px;
}

.pricing-copy h2 {
  max-width: 760px;
  font-size: clamp(32px, 4vw, 50px);
}

.pricing-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  min-width: 0;
}

.price-card,
.edition-card {
  display: grid;
  align-content: start;
  min-width: 0;
  border-radius: var(--radius);
}

.price-card {
  gap: 0;
  padding: 18px;
  color: #fff;
  background: linear-gradient(145deg, #111820, #071015);
  box-shadow: var(--shadow);
}

.price-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.price-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  color: #06100b;
  background: var(--green-2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 820;
}

.price-badges span + span {
  color: #d8e5ec;
  background: rgb(255 255 255 / 10%);
}

.price-topline {
  display: grid;
  gap: 8px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.price-topline span {
  color: var(--green-2);
  font-size: 13px;
  font-weight: 820;
}

.price-topline strong {
  font-size: 38px;
  line-height: 0.95;
}

.price-card p,
.price-card li {
  color: #bfccd4;
  font-size: 13px;
  line-height: 1.4;
}

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

.price-meta div {
  min-width: 0;
  padding: 8px;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 6%);
}

.price-meta dt {
  margin-bottom: 4px;
  color: #8ba0ac;
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.price-meta dd {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.price-card ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 16px 0 18px;
  list-style: none;
}

.price-note {
  margin: 12px 0 0;
  color: #95a7b3;
  font-size: 13px;
  line-height: 1.45;
}

.price-note a {
  color: var(--green-2);
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.price-card li {
  position: relative;
  padding-left: 18px;
}

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

.edition-card {
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--soft));
}

.edition-card-head {
  display: grid;
  gap: 4px;
}

.edition-card-head span {
  color: #087948;
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.edition-card-head strong {
  font-size: 19px;
}

.edition-card-head em {
  width: fit-content;
  padding: 4px 7px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
}

.edition-price {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.edition-price strong {
  font-size: 24px;
  line-height: 1;
}

.edition-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.edition-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.edition-card ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  color: var(--graphite);
  font-size: 13px;
  list-style: none;
}

.edition-card li {
  position: relative;
  padding-left: 18px;
  line-height: 1.4;
}

.edition-card li::before {
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.pricing-matrix {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.pricing-matrix-title {
  padding: 12px 14px;
  color: var(--ink);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 820;
}

.pricing-matrix-row {
  display: grid;
  grid-template-columns: 0.75fr repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 9px 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.pricing-matrix-title + .pricing-matrix-row {
  border-top: 0;
}

.pricing-matrix-head {
  min-height: 38px;
  color: var(--muted);
  background: #f9fbfa;
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.pricing-matrix-row strong {
  font-weight: 820;
}

.pricing-matrix-row span {
  color: var(--muted);
}

.checkout-section {
  padding-top: 120px;
}

.compact-intro {
  max-width: 820px;
  margin-bottom: 34px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 24px;
  align-items: start;
}

.checkout-plan-card h2 {
  margin: 20px 0 0;
  color: #fff;
  font-size: 18px;
}

.plan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
}

.plan-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #dff9ea;
  border: 1px solid rgb(142 223 184 / 36%);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 780;
}

.checkout-assurance {
  display: grid;
  gap: 12px;
}

.checkout-assurance article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.checkout-assurance svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  color: #087948;
  border-radius: 50%;
  background: #effff6;
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.8;
}

.checkout-assurance strong {
  display: block;
  margin-bottom: 4px;
}

.checkout-assurance p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.faq-section {
  padding-top: 60px;
}

.checkout-result {
  display: grid;
  gap: 14px;
  max-width: 620px;
  padding: 22px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgb(15 23 30 / 8%);
}

.checkout-result[hidden],
.license-reveal[hidden],
.checkout-setup-form[hidden],
[data-account-link][hidden] {
  display: none;
}

.checkout-result h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.license-reveal {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px dashed #73ca9f;
  border-radius: var(--radius);
  background: #f1fff7;
}

.license-reveal span {
  color: #217549;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.license-reveal code {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 15px;
  font-weight: 780;
}

.checkout-setup-form {
  display: grid;
  gap: 12px;
}

.checkout-setup-form label {
  display: grid;
  gap: 7px;
  color: #28333c;
  font-size: 13px;
  font-weight: 760;
}

.checkout-setup-form input {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

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

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

summary::after {
  content: "+";
  color: #087948;
  font-size: 24px;
}

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

details p {
  max-width: 820px;
  padding: 0 20px 22px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(var(--max), calc(100% - 40px));
  padding: 42px 0;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.site-footer .brand {
  margin-bottom: 10px;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-maker {
  color: #087948;
  font-weight: 760;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-links button {
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.consent-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(680px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 70px rgb(15 23 30 / 18%);
}

.consent-banner strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.consent-banner p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.consent-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.consent-links a {
  color: #087948;
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.consent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

@keyframes demoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes demoProgress {
  0% {
    transform: scaleX(0);
  }
  58%,
  82% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

@keyframes recordingPulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 34%, transparent);
  }
  78%,
  100% {
    box-shadow: 0 0 0 10px transparent;
  }
}

@keyframes typedReveal {
  0%,
  10% {
    opacity: 0.56;
    transform: translateY(2px);
  }
  56%,
  84% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0.72;
    transform: translateY(0);
  }
}

@keyframes caretBlink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

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

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero,
  .workflow-section,
  .examples-section,
  .assurance-panel,
  .business-panel,
  .download-section,
  .lead-section,
  .company-panel,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .product-stage {
    max-width: 680px;
    min-height: 600px;
  }

  .workflow-copy {
    position: static;
  }

  .examples-copy {
    position: static;
  }

  .examples-proof {
    max-width: 680px;
  }

  .assurance-copy {
    max-width: 760px;
  }

  .download-copy {
    position: static;
  }

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

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

  .lead-copy {
    position: static;
  }

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

  .pricing-section {
    align-items: start;
  }

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

  .price-card {
    width: min(100%, 520px);
  }

  .pricing-list .price-card {
    width: 100%;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-plan-card {
    width: 100%;
  }

  .company-trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switcher a {
    min-width: 29px;
    padding: 0 6px;
    font-size: 11px;
  }

  .nav-login,
  .nav-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .header-actions {
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 22px;
  }

  .price-meta {
    grid-template-columns: 1fr;
  }

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

  .pricing-matrix-head {
    display: none;
  }

  .pricing-matrix-row {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
  }

  .pricing-matrix-row span::before {
    content: attr(data-label) ": ";
    color: var(--ink);
    font-weight: 760;
  }

  .section.assurance-section {
    width: 100%;
  }

  .assurance-panel {
    width: min(100% - 32px, var(--max));
  }

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

  .section-band,
  .section,
  .site-footer {
    width: min(100% - 32px, var(--max));
    scroll-margin-top: 136px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(38px, 11vw, 46px);
    line-height: 0.99;
  }

  h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .hero-actions {
    margin: 20px 0 18px;
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero-facts dt {
    font-size: 10px;
  }

  .hero-facts dd {
    font-size: 12px;
  }

  .mac-frame {
    display: none;
    border-radius: 14px;
  }

  .product-stage {
    min-height: auto;
  }

  .product-stage .product-photo {
    position: relative;
    width: 100%;
    margin-top: 16px;
  }

  .product-photo {
    border-radius: 14px;
  }

  .recorder-row {
    grid-template-columns: 42px 1fr;
  }

  .recorder-row output {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .privacy-path {
    display: none;
  }

  .steps li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .examples-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .examples-flow {
    gap: 7px;
  }

  .examples-flow span:not(.flow-arrow) {
    min-height: 32px;
    padding: 0 9px;
    font-size: 11px;
  }

  .flow-arrow {
    width: 18px;
  }

  .examples-proof {
    gap: 12px;
    padding: 14px;
  }

  .brand-logo-cloud {
    gap: 7px;
  }

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

  .examples-stage {
    padding: 12px;
  }

  .examples-stage-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .app-demo {
    min-height: 0;
    padding: 14px;
  }

  .app-demo-canvas {
    min-height: 0;
  }

  .typed-output {
    min-height: 58px;
  }

  .comparison-table {
    border: 0;
    border-radius: 0;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 18px 0;
    border-top: 1px solid var(--line);
  }

  .comparison-head {
    display: none;
  }

  .price-topline {
    align-items: start;
    flex-direction: column;
  }

  .price-topline strong {
    font-size: 48px;
  }

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

  .lead-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .download-card {
    min-height: 0;
    padding: 18px;
  }

  .release-meta div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .consent-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .consent-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .header-actions {
    flex-basis: 100%;
    justify-content: space-between;
  }

  .language-switcher {
    min-height: 34px;
  }
}
