:root {
  color-scheme: light;
  --ink: #11161c;
  --muted: #5c6672;
  --soft: #eef1f4;
  --line: #d8dee6;
  --paper: #f6f7f9;
  --white: #ffffff;
  --blue: #0d63ce;
  --blue-strong: #094aa0;
  --green: #0b7563;
  --warm: #b15b34;
  --shadow: 0 22px 70px rgba(17, 22, 28, 0.16);
  --soft-shadow: 0 12px 36px rgba(17, 22, 28, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  gap: clamp(14px, 3vw, 36px);
  min-height: 68px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(17, 22, 28, 0.1);
  background: rgba(246, 247, 249, 0.86);
  backdrop-filter: blur(18px);
}

.brand,
.navlinks,
.language-picker {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(17, 22, 28, 0.18);
}

.navlinks {
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.navlinks a:hover {
  color: var(--ink);
}

.language-picker {
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.language-picker select {
  height: 36px;
  padding: 0 32px 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(560px, 72svh, 760px);
  overflow: hidden;
  padding: clamp(28px, 6vw, 76px);
  background: #17202a;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 12, 0.82), rgba(4, 8, 12, 0.5) 42%, rgba(4, 8, 12, 0.08)),
    linear-gradient(0deg, rgba(4, 8, 12, 0.72), rgba(4, 8, 12, 0.08) 56%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: white;
  padding-bottom: clamp(20px, 6vh, 72px);
  text-shadow: 0 2px 18px rgba(4, 8, 12, 0.42);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #f2b28e;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 6.5rem, 110px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(34px, 3.875rem, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.14;
  letter-spacing: 0;
}

.lede {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.4375rem, 23px);
  line-height: 1.48;
}

.lede.compact {
  color: var(--muted);
}

.muted,
.section-note,
.status-line,
.price-card p:not(.plan-name),
.steps p,
.faq-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.wide {
  max-width: 620px;
}

.hero-actions,
.pricing-grid,
.checkout-panel,
.steps,
.code-row,
.license-meta,
.faq-grid {
  display: grid;
  gap: 14px;
}

.hero-actions {
  grid-template-columns: repeat(2, max-content);
  margin-top: 30px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 0;
  padding: 0 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 28px rgba(13, 99, 206, 0.24);
}

.primary:hover {
  background: var(--blue-strong);
}

.download-button {
  box-shadow: 0 16px 36px rgba(13, 99, 206, 0.32);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.success-page .secondary,
.license-box .secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.full {
  width: 100%;
}

.hero-meta {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 760;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, #ffffff 0%, #f7f9fb 56%, #eef5f1 100%);
}

.download-copy h2 {
  max-width: 820px;
  margin-bottom: 14px;
}

.download-copy p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.download-panel {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(13, 99, 206, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(17, 22, 28, 0.12);
}

.download-panel img {
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(17, 22, 28, 0.2);
}

.download-panel strong,
.download-panel span {
  display: block;
}

.download-panel strong {
  font-size: 22px;
  line-height: 1.1;
}

.download-panel span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.4;
}

.download-panel .button {
  grid-column: 1 / -1;
  min-height: 52px;
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
}

.demo-copy h2 {
  max-width: 680px;
}

.demo-copy p:last-child {
  margin-bottom: 0;
}

.demo-media {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.demo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 28, 0.14);
  border-radius: 8px;
  background: #101820;
  box-shadow: 0 26px 80px rgba(17, 22, 28, 0.18);
}

.demo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #101820;
  object-fit: cover;
}

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

.demo-points div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.demo-points span {
  display: block;
  margin-bottom: 8px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
}

.demo-points strong {
  display: block;
  margin-bottom: 6px;
}

.demo-points p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.product-section {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
}

.product-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(20px, 5vw, 56px);
  margin-bottom: clamp(26px, 5vw, 42px);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: stretch;
}

.product-preview {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  margin: 0;
}

.product-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(17, 22, 28, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(17, 22, 28, 0.16);
}

.product-preview figcaption {
  max-width: 720px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.feature-list article {
  min-width: 0;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(17, 22, 28, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(17, 22, 28, 0.06);
}

.feature-list span {
  display: block;
  margin-bottom: 14px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
}

.feature-list h3 {
  margin-bottom: 8px;
  font-size: clamp(20px, 1.625rem, 26px);
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.pricing-section {
  background: var(--paper);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(20px, 5vw, 56px);
  margin-bottom: 28px;
}

.section-note {
  max-width: 420px;
  margin-bottom: 10px;
}

.checkout-panel {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  align-items: end;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: #fbfcfd;
}

input:focus,
select:focus,
.button:focus-visible {
  outline: 3px solid rgba(13, 99, 206, 0.18);
  outline-offset: 2px;
}

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

.price-card {
  display: grid;
  gap: 16px;
  min-height: 360px;
  align-content: start;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.price-card.featured {
  border-color: rgba(11, 117, 99, 0.44);
  box-shadow: 0 24px 70px rgba(11, 117, 99, 0.16);
}

.plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan-name {
  margin: 0;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}

.plan-topline span {
  flex: none;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--green);
  background: rgba(11, 117, 99, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.price-card h3 {
  margin-bottom: 0;
  font-size: clamp(42px, 3.75rem, 60px);
  line-height: 0.96;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 2px 0 8px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.price-card li {
  position: relative;
  padding-left: 20px;
  line-height: 1.52;
}

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

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

.status-line {
  min-height: 24px;
  margin: 16px 0 0;
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 86px);
  background: var(--white);
}

.steps {
  gap: 0;
  border-top: 1px solid var(--line);
}

.steps div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.steps span {
  color: var(--warm);
  font-weight: 900;
}

.faq-section {
  background: #f9fafb;
}

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

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 22, 28, 0.05);
}

.faq-grid h3 {
  font-size: 20px;
}

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

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

.resource-grid a {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  box-shadow: 0 8px 24px rgba(17, 22, 28, 0.05);
}

.resource-grid strong {
  font-size: 18px;
}

.resource-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.article-page {
  background: #ffffff;
}

.article-hero,
.article-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.article-hero {
  padding-top: clamp(64px, 9vw, 116px);
  padding-bottom: clamp(38px, 7vw, 78px);
}

.article-hero h1 {
  max-width: 860px;
  color: var(--ink);
  font-size: clamp(44px, 5.125rem, 82px);
  line-height: 0.96;
}

.article-hero .lede {
  color: var(--muted);
  text-shadow: none;
}

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

.article-actions .secondary {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(30px, 6vw, 76px);
  padding-bottom: clamp(64px, 10vw, 120px);
}

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

.article-body h2 {
  margin-top: 44px;
  font-size: clamp(28px, 2.75rem, 44px);
}

.article-body h3 {
  margin-top: 30px;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.aside-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
  box-shadow: 0 10px 28px rgba(17, 22, 28, 0.06);
}

.aside-panel img {
  display: block;
  width: 74px;
  height: 74px;
  margin-bottom: 14px;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(17, 22, 28, 0.18);
}

.aside-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--ink);
  background: #f8fafb;
}

.comparison-table td {
  color: var(--muted);
  line-height: 1.55;
}

.problem-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(540px, 70svh, 760px);
  overflow: hidden;
  padding: clamp(28px, 6vw, 76px);
  background: #101820;
}

.problem-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.problem-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 12, 0.86), rgba(4, 8, 12, 0.56) 44%, rgba(4, 8, 12, 0.18)),
    linear-gradient(0deg, rgba(4, 8, 12, 0.74), rgba(4, 8, 12, 0.12) 58%);
}

.problem-hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 840px;
  color: white;
  padding-bottom: clamp(18px, 6vh, 68px);
  text-shadow: 0 2px 18px rgba(4, 8, 12, 0.44);
}

.problem-hero .eyebrow {
  color: #f2b28e;
}

.problem-hero .lede {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
}

.problem-hero .secondary {
  border-color: rgba(255, 255, 255, 0.46);
  color: white;
  background: rgba(255, 255, 255, 0.14);
}

.problem-shell {
  padding-top: clamp(42px, 7vw, 82px);
}

.answer-box,
.keyword-panel,
.article-media,
.intent-grid div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
}

.answer-box {
  padding: clamp(22px, 4vw, 34px);
}

.answer-box h2 {
  margin-top: 0;
}

.answer-box p:last-child {
  margin-bottom: 0;
}

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

.intent-grid div {
  padding: 20px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(17, 22, 28, 0.05);
}

.intent-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
}

.intent-grid h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.intent-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.article-media {
  margin: 34px 0 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 22, 28, 0.1);
}

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

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

.keyword-panel {
  margin-top: 38px;
  padding: 22px;
}

.keyword-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-panel span {
  padding: 8px 10px;
  border: 1px solid rgba(13, 99, 206, 0.18);
  border-radius: 8px;
  color: var(--blue-strong);
  background: rgba(13, 99, 206, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.article-faq {
  margin-top: 12px;
}

.aside-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.aside-links a:hover {
  color: var(--ink);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.success-shell {
  max-width: 900px;
  margin: 0 auto;
}

.success-page {
  min-height: 100svh;
  background:
    linear-gradient(180deg, #ffffff, #f3f5f8);
}

.license-box {
  margin-top: 28px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.code-row {
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
}

code {
  display: block;
  overflow-wrap: anywhere;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  font-size: clamp(18px, 1.75rem, 28px);
  font-weight: 900;
  letter-spacing: 0;
}

.license-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0 0;
}

.license-meta div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 6px 0 0;
  font-weight: 900;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: max-content 1fr;
  }

  .language-picker {
    justify-self: end;
  }

  .navlinks {
    display: none;
  }

  .download-section,
  .demo-section,
  .product-layout,
  .resource-grid,
  .article-shell,
  .faq-grid,
  .intent-grid {
    grid-template-columns: 1fr;
  }

  .product-head {
    display: block;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .comparison-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .topbar {
    min-height: 64px;
    gap: 10px;
  }

  .brand span {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-picker span {
    display: none;
  }

  .hero {
    min-height: 68svh;
    padding: 24px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 8, 12, 0.9), rgba(4, 8, 12, 0.64) 62%, rgba(4, 8, 12, 0.28)),
      linear-gradient(0deg, rgba(4, 8, 12, 0.86), rgba(4, 8, 12, 0.44) 72%, rgba(4, 8, 12, 0.18));
  }

  .hero-copy {
    width: 100%;
    max-width: 390px;
    padding-bottom: 8px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-actions,
  .checkout-panel,
  .pricing-grid,
  .code-row,
  .license-meta {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
  }

  .download-section {
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .download-panel {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 18px;
  }

  .download-panel img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
  }

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

  .section {
    padding-top: 54px;
    padding-bottom: 60px;
  }

  .section-head {
    display: block;
  }

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

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

  .checkout-panel {
    padding: 16px;
  }

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

  .plan-topline {
    align-items: start;
  }

  .footer {
    display: grid;
  }

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

  .article-actions .button {
    width: 100%;
    white-space: normal;
  }

  .problem-hero {
    min-height: 760px;
    padding: 24px 20px;
  }

  .problem-hero-copy {
    max-width: none;
  }

  .problem-hero h1 {
    font-size: 46px;
    line-height: 0.98;
  }

  .answer-box h2 {
    font-size: 30px;
  }

  .answer-box,
  .keyword-panel,
  .intent-grid div {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* AnyDoor-inspired dark tool-site refresh */
:root {
  color-scheme: dark;
  --ink: #f5f5f7;
  --muted: #a1a1aa;
  --soft: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.11);
  --paper: #050507;
  --white: rgba(28, 28, 32, 0.86);
  --blue: #0a84ff;
  --blue-strong: #5e9bff;
  --green: #30d158;
  --warm: #ff9f0a;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  --soft-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  --font-mono: ui-monospace, "SF Mono", Menlo, monospace;
}

html,
body {
  background: var(--paper);
}

body {
  background:
    linear-gradient(180deg, #050507 0%, #0e0e12 46%, #050507 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Helvetica Neue", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.34;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  min-height: 68px;
  border-bottom: 0.5px solid var(--line);
  background: rgba(5, 5, 7, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.18), 0 10px 28px rgba(10, 132, 255, 0.28);
}

.brand span,
.navlinks a:hover {
  color: var(--ink);
}

.navlinks,
.language-picker,
.muted,
.section-note,
.status-line,
.price-card p:not(.plan-name),
.steps p,
.faq-grid p,
.lede.compact,
.resource-grid span,
.product-preview figcaption,
.download-copy p,
.demo-copy p {
  color: var(--muted);
}

.language-picker select,
input {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 0.5px solid var(--line);
}

.hero {
  min-height: clamp(640px, 78svh, 820px);
  padding-top: 110px;
  background: #050507;
}

.hero-image {
  opacity: 0.38;
  filter: saturate(1.08) contrast(1.1);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.95), rgba(5, 5, 7, 0.64) 46%, rgba(5, 5, 7, 0.14)),
    linear-gradient(0deg, rgba(5, 5, 7, 0.82), rgba(5, 5, 7, 0.04) 56%);
}

.hero-copy {
  max-width: 820px;
  text-shadow: none;
}

.eyebrow,
.hero .eyebrow {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  background: linear-gradient(180deg, #fff 28%, #8b8b94 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  color: var(--ink);
}

.button {
  min-height: 45px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary,
.primary {
  color: #050507;
  background: #fff;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.16);
}

.button.secondary,
.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 0.5px solid var(--line);
}

.download-section,
.section,
.split-section,
.resource-section,
.footer {
  width: min(1180px, calc(100% - 56px));
  margin-left: auto;
  margin-right: auto;
}

.download-panel,
.product-preview,
.feature-list article,
.checkout-panel,
.price-card,
.steps div,
.faq-grid article,
.resource-grid a,
.demo-frame,
.demo-points div,
.answer-box,
.keyword-panel,
.intent-grid div,
.article-card,
.problem-card {
  background: linear-gradient(180deg, rgba(38, 38, 42, 0.92), rgba(18, 18, 22, 0.9));
  border: 0.5px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.04) inset, 0 24px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(28px) saturate(160%);
}

.download-section,
.demo-section,
.product-section,
.pricing-section,
.split-section,
.faq-section,
.resource-section {
  background: transparent;
}

.product-preview {
  overflow: hidden;
}

.product-preview img,
.demo-frame video {
  border-radius: 8px;
  border: 0.5px solid var(--line);
}

.feature-list article span,
.steps span,
.demo-points span,
.resource-grid strong::before {
  color: var(--green);
  font-family: var(--font-mono);
}

.price-card.featured {
  background: rgba(10, 132, 255, 0.18);
  border-color: rgba(94, 155, 255, 0.5);
}

.plan-topline span,
.license-meta span,
.hero-meta {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.07);
  border: 0.5px solid var(--line);
}

.footer {
  border-top: 0.5px solid var(--line);
  color: var(--muted);
}

@media (max-width: 860px) {
  .topbar {
    position: sticky;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .navlinks {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .download-section,
  .section,
  .split-section,
  .resource-section,
  .footer {
    width: min(100% - 28px, 1180px);
  }
}

/* Dr.Buho-inspired light product page refresh */
body.product-home {
  --ink: #17181c;
  --muted: #68717d;
  --soft: #f2f5f8;
  --line: #dfe5ec;
  --paper: #f7f9fb;
  --white: #ffffff;
  --blue: #1769ff;
  --blue-strong: #0a4fc5;
  --green: #0f8a70;
  --warm: #b86028;
  --shadow: 0 30px 90px rgba(24, 31, 42, 0.14);
  --soft-shadow: 0 16px 44px rgba(24, 31, 42, 0.08);
  min-height: 100svh;
  background: #ffffff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Helvetica Neue", system-ui, sans-serif;
  overflow-x: hidden;
}

body.product-home::after {
  display: none;
}

.product-home .topbar {
  position: sticky;
  inset: auto;
  min-height: 72px;
  border-bottom: 1px solid rgba(23, 24, 28, 0.08);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px) saturate(180%);
}

.product-home .brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 24, 28, 0.12);
}

.product-home .brand span,
.product-home .navlinks a:hover {
  color: var(--ink);
}

.product-home .navlinks,
.product-home .language-picker,
.product-home .muted,
.product-home .section-note,
.product-home .status-line,
.product-home .price-card p:not(.plan-name),
.product-home .steps p,
.product-home .faq-grid p,
.product-home .lede.compact,
.product-home .resource-grid span,
.product-home .product-preview figcaption,
.product-home .download-copy p,
.product-home .demo-copy p {
  color: var(--muted);
}

.product-home .language-picker select,
.product-home input {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.product-home .hero {
  min-height: clamp(540px, 68svh, 720px);
  padding: clamp(42px, 4vw, 58px) clamp(20px, 5vw, 72px) clamp(24px, 4vw, 48px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 38%, rgba(255, 255, 255, 0.5) 66%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
}

.product-home .product-hero {
  display: block;
}

.product-home .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0;
  color: var(--ink);
  text-shadow: none;
}

.product-home .product-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.product-home .product-kicker img {
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(23, 24, 28, 0.16);
}

.product-home .eyebrow,
.product-home .hero .eyebrow {
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.product-home h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--ink);
  background: none;
  font-size: clamp(44px, 5.2vw, 70px);
  line-height: 0.98;
  text-wrap: balance;
}

.product-home h2 {
  color: var(--ink);
}

.product-home .hero .lede {
  max-width: 610px;
  color: #46505b;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.product-home .hero-actions {
  margin-top: 34px;
}

.product-home .button {
  min-height: 48px;
  border-radius: 8px;
  font-weight: 850;
}

.product-home .button.primary,
.product-home .primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(23, 105, 255, 0.26);
}

.product-home .button.primary:hover,
.product-home .primary:hover {
  background: var(--blue-strong);
}

.product-home .button.secondary,
.product-home .secondary {
  color: var(--ink);
  border: 1px solid rgba(23, 24, 28, 0.14);
  background: rgba(255, 255, 255, 0.74);
}

.product-home .hero-meta {
  margin-top: 18px;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 0;
  font-size: 14px;
}

.product-home .hero-showcase {
  position: absolute;
  right: clamp(-180px, -10vw, -90px);
  bottom: clamp(20px, 6vw, 70px);
  z-index: 1;
  width: min(50vw, 740px);
  min-width: 500px;
}

.product-home .hero-showcase > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(23, 24, 28, 0.12);
  border-radius: 22px;
  box-shadow: 0 34px 110px rgba(23, 24, 28, 0.22);
}

.product-home .showcase-card {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 176px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 24, 28, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(23, 24, 28, 0.14);
  backdrop-filter: blur(18px) saturate(150%);
}

.product-home .showcase-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-home .showcase-card strong {
  color: var(--ink);
  font-size: 15px;
}

.product-home .showcase-card-top {
  top: 26px;
  left: -26px;
}

.product-home .showcase-card-bottom {
  right: clamp(130px, 12vw, 190px);
  bottom: -22px;
}

.product-home .trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--line);
}

.product-home .trust-strip div {
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  background: #fff;
}

.product-home .trust-strip strong,
.product-home .trust-strip span {
  display: block;
}

.product-home .trust-strip strong {
  margin-bottom: 7px;
  font-size: 17px;
}

.product-home .trust-strip span {
  color: var(--muted);
  line-height: 1.48;
}

.product-home .download-section,
.product-home .section,
.product-home .split-section,
.product-home .resource-section,
.product-home .footer {
  width: auto;
  margin-left: 0;
  margin-right: 0;
}

.product-home .download-section {
  background: #f7f9fb;
}

.product-home .download-panel,
.product-home .feature-list article,
.product-home .checkout-panel,
.product-home .price-card,
.product-home .steps div,
.product-home .faq-grid article,
.product-home .resource-grid a,
.product-home .demo-frame,
.product-home .demo-points div,
.product-home .story-card {
  border: 1px solid rgba(23, 24, 28, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  backdrop-filter: none;
}

.product-home .product-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.product-home .product-preview {
  overflow: visible;
  background: none;
  border: 0;
  box-shadow: none;
}

.product-home .product-preview img,
.product-home .demo-frame video {
  border: 1px solid rgba(23, 24, 28, 0.12);
  border-radius: 18px;
}

.product-home .feature-list article span,
.product-home .steps span,
.product-home .demo-points span,
.product-home .story-card > span {
  color: var(--green);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

.product-home .story-section {
  background: #fff;
}

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

.product-home .story-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
}

.product-home .story-card.large {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  align-content: space-between;
  gap: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.product-home .story-card.large h2 {
  max-width: 560px;
  font-size: clamp(34px, 4vw, 56px);
}

.product-home .story-card.large p:last-child,
.product-home .story-card p {
  color: var(--muted);
  line-height: 1.58;
}

.product-home .story-card.large img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(23, 24, 28, 0.12);
  border-radius: 16px;
  box-shadow: 0 26px 70px rgba(23, 24, 28, 0.14);
}

.product-home .story-card > span {
  display: block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 900;
}

.product-home .story-card h3 {
  font-size: clamp(22px, 2vw, 28px);
}

.product-home .pricing-section {
  background: #f7f9fb;
}

.product-home .price-card.featured {
  border-color: rgba(15, 138, 112, 0.3);
  background: #f5fffb;
  box-shadow: 0 24px 60px rgba(15, 138, 112, 0.12);
}

.product-home .plan-topline span,
.product-home .license-meta span {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  color: var(--green);
  border: 1px solid rgba(15, 138, 112, 0.18);
  background: rgba(15, 138, 112, 0.08);
}

.product-home .split-section,
.product-home .faq-section,
.product-home .resource-section {
  background: #fff;
}

.product-home .footer {
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}

@media (max-width: 1080px) {
  .product-home .hero {
    min-height: auto;
    padding-top: 92px;
  }

  .product-home .hero-copy {
    max-width: 720px;
  }

  .product-home .hero-showcase {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    margin-top: 38px;
  }

  .product-home .showcase-card-top {
    left: 18px;
  }

  .product-home .showcase-card-bottom {
    right: 18px;
  }

  .product-home .trust-strip,
  .product-home .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-home .story-card.large {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .product-home *,
  .product-home *::before,
  .product-home *::after {
    min-width: 0;
  }

  .product-home .topbar,
  .product-home .hero,
  .product-home main,
  .product-home .footer {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .product-home .topbar {
    grid-template-columns: max-content 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-home .language-picker {
    display: none;
  }

  .product-home .navlinks {
    display: none;
  }

  .product-home .hero {
    padding: 48px 20px 34px;
  }

  .product-home h1 {
    max-width: 100%;
    font-size: clamp(35px, 9vw, 39px);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .product-home .hero .lede {
    max-width: 100%;
    font-size: 17px;
  }

  .product-home .hero-copy {
    width: calc(100vw - 40px);
    max-width: 350px;
    min-width: 0;
  }

  .product-home .hero-actions {
    max-width: 350px;
  }

  .product-home .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .product-home .hero-showcase > img {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
  }

  .product-home .showcase-card {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
  }

  .product-home .trust-strip,
  .product-home .story-grid {
    grid-template-columns: 1fr;
  }

  .product-home .story-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .product-home .download-panel,
  .product-home .feature-list article,
  .product-home .checkout-panel,
  .product-home .price-card,
  .product-home .faq-grid article,
  .product-home .resource-grid a,
  .product-home .story-card {
    border-radius: 12px;
  }
}

/* Product homepage v2 */
body.product-home {
  --ink: #13161b;
  --muted: #66707c;
  --subtle: #8b949f;
  --line: #e2e7ed;
  --panel: #f5f7fa;
  --blue: #0969da;
  --blue-hover: #0759bb;
  --teal: #087f68;
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.product-home *,
.product-home *::before,
.product-home *::after {
  box-sizing: border-box;
}

.product-home a {
  color: inherit;
}

.product-home .topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 10px max(24px, calc((100% - 1240px) / 2));
  border-bottom: 1px solid rgba(19, 22, 27, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(160%);
}

.product-home .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.product-home .brand img,
.product-home .footer-brand img {
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(19, 22, 27, 0.14);
}

.product-home .navlinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #4f5863;
  font-size: 14px;
  font-weight: 700;
}

.product-home .navlinks a,
.product-home .footer-links a,
.product-home .text-link {
  text-decoration: none;
}

.product-home .navlinks a:hover,
.product-home .footer-links a:hover,
.product-home .text-link:hover {
  color: var(--blue);
}

.product-home .nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.product-home .locale-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.product-home .locale-switch a {
  min-width: 42px;
  padding: 7px 9px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.product-home .locale-switch a.active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 2px 8px rgba(19, 22, 27, 0.08);
}

.product-home .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.product-home .button:hover {
  transform: translateY(-1px);
}

.product-home .button:focus-visible,
.product-home a:focus-visible,
.product-home summary:focus-visible,
.product-home input:focus-visible {
  outline: 3px solid rgba(9, 105, 218, 0.24);
  outline-offset: 2px;
}

.product-home .button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(9, 105, 218, 0.22);
}

.product-home .button.primary:hover {
  background: var(--blue-hover);
}

.product-home .button.secondary {
  color: var(--ink);
  border-color: #cfd6de;
  background: #fff;
  box-shadow: none;
}

.product-home .button.secondary:hover {
  border-color: #aeb8c3;
  background: #f8fafc;
}

.product-home .button.compact {
  min-height: 38px;
  padding: 0 15px;
  font-size: 13px;
}

.product-home .button.full {
  width: 100%;
}

.product-home .product-hero {
  display: grid;
  justify-items: center;
  width: 100%;
  min-height: 760px;
  padding: 74px 24px 46px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f4f7fa 100%);
  text-align: center;
}

.product-home .hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(860px, 100%);
  max-width: none;
  padding: 0;
  color: var(--ink);
}

.product-home .product-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #59636e;
  font-size: 14px;
  font-weight: 800;
}

.product-home .product-kicker img {
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(19, 22, 27, 0.16);
}

.product-home h1,
.product-home h2,
.product-home h3,
.product-home p {
  letter-spacing: 0;
}

.product-home h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  background: none;
  font-size: 64px;
  line-height: 1.04;
  text-wrap: balance;
}

.product-home .hero-promise {
  margin: 12px 0 0;
  color: var(--blue);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.22;
}

.product-home .hero-copy .lede {
  max-width: 760px;
  margin: 22px 0 0;
  color: #4f5965;
  font-size: 20px;
  line-height: 1.6;
}

.product-home .hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.product-home .hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 18px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: none;
  font-size: 13px;
}

.product-home .hero-meta span {
  display: inline-flex;
  align-items: center;
}

.product-home .hero-meta span + span::before {
  content: "";
  width: 3px;
  height: 3px;
  margin: 0 10px;
  border-radius: 50%;
  background: #a6afb9;
}

.product-home .hero-showcase {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  min-width: 0;
  margin: 48px auto -150px;
}

.product-home .hero-showcase > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(19, 22, 27, 0.14);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(19, 22, 27, 0.22);
}

.product-home .hero-showcase figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.product-home .hero-showcase figcaption span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(16, 28, 34, 0.72);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 800;
}

.product-home .trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 182px max(24px, calc((100% - 1240px) / 2)) 32px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.product-home .trust-strip div {
  min-width: 0;
  padding: 10px 26px;
  border-left: 1px solid var(--line);
  background: transparent;
}

.product-home .trust-strip div:first-child {
  padding-left: 0;
  border-left: 0;
}

.product-home .trust-strip strong,
.product-home .trust-strip span {
  display: block;
}

.product-home .trust-strip strong {
  margin-bottom: 7px;
  font-size: 16px;
}

.product-home .trust-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.product-home .eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.product-home .answer-band,
.product-home .feature-showcase,
.product-home .demo-section,
.product-home .download-band,
.product-home .pricing-section,
.product-home .activation-section,
.product-home .faq-section,
.product-home .resource-section {
  width: 100%;
  margin: 0;
  padding-left: max(24px, calc((100% - 1240px) / 2));
  padding-right: max(24px, calc((100% - 1240px) / 2));
}

.product-home .answer-band {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 64px;
  padding-top: 96px;
  padding-bottom: 104px;
  background: #fff;
}

.product-home .answer-band h2,
.product-home .section-intro h2,
.product-home .demo-copy h2,
.product-home .download-band h2,
.product-home .activation-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.1;
  text-wrap: balance;
}

.product-home .answer-band p:not(.eyebrow),
.product-home .section-intro > p:last-child,
.product-home .demo-copy > p,
.product-home .activation-section > div > p:last-child {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.product-home .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.product-home .feature-showcase {
  padding-top: 104px;
  padding-bottom: 112px;
  background: var(--panel);
}

.product-home .section-intro {
  max-width: 820px;
}

.product-home .section-intro.centered {
  margin: 0 auto;
  text-align: center;
}

.product-home .section-intro.centered > p:last-child {
  margin-left: auto;
  margin-right: auto;
}

.product-home .feature-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
  margin-top: 58px;
}

.product-home .product-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(19, 22, 27, 0.14);
  border-radius: 18px;
  background: #203238;
  box-shadow: 0 30px 70px rgba(19, 22, 27, 0.18);
}

.product-home .product-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 0;
  border-radius: 0;
}

.product-home .feature-index {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-home .feature-index li {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 26px 0;
  border-top: 1px solid #d8dee6;
}

.product-home .feature-index li:last-child {
  border-bottom: 1px solid #d8dee6;
}

.product-home .feature-index li > span {
  grid-row: span 2;
  color: var(--teal);
  font: 800 12px ui-monospace, "SF Mono", Menlo, monospace;
}

.product-home .feature-index h3,
.product-home .capability-row h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.product-home .feature-index p,
.product-home .capability-row p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.product-home .capability-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 78px;
  border-top: 1px solid #d8dee6;
  border-bottom: 1px solid #d8dee6;
}

.product-home .capability-row article {
  min-width: 0;
  padding: 28px 26px 30px;
  border-left: 1px solid #d8dee6;
}

.product-home .capability-row article:first-child {
  padding-left: 0;
  border-left: 0;
}

.product-home .capability-row strong {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.product-home .demo-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 112px;
  background: #fff;
}

.product-home .demo-steps,
.product-home .activation-flow {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.product-home .demo-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

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

.product-home .demo-steps span,
.product-home .activation-flow > li > span {
  color: var(--teal);
  font: 800 12px ui-monospace, "SF Mono", Menlo, monospace;
}

.product-home .demo-steps strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.product-home .demo-steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.product-home .demo-frame {
  overflow: hidden;
  border: 1px solid rgba(19, 22, 27, 0.14);
  border-radius: 18px;
  background: #10181c;
  box-shadow: 0 30px 72px rgba(19, 22, 27, 0.2);
}

.product-home .demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0;
  background: #10181c;
}

.product-home .download-band {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
  color: #fff;
  background: #16262b;
}

.product-home .download-band > img {
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.product-home .download-band .eyebrow {
  color: #8de2cf;
}

.product-home .download-band h2 {
  color: #fff;
  font-size: 34px;
}

.product-home .download-band p:last-child {
  margin: 10px 0 0;
  color: #b7c4c8;
}

.product-home .download-actions {
  display: grid;
  justify-items: center;
}

.product-home .download-actions .text-link {
  color: #bfeadd;
}

.product-home .pricing-section {
  padding-top: 110px;
  padding-bottom: 110px;
  background: var(--panel);
}

.product-home .checkout-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 16px;
  max-width: 920px;
  margin: 44px auto 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(19, 22, 27, 0.07);
}

.product-home .checkout-panel label {
  display: grid;
  gap: 8px;
  color: #4f5863;
  font-size: 13px;
  font-weight: 800;
}

.product-home .checkout-panel input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #ccd4dd;
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.product-home .machine-option {
  align-self: center;
}

.product-home .machine-option summary {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.product-home .machine-option[open] summary {
  margin-bottom: 10px;
}

.product-home .pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.product-home .price-card {
  display: grid;
  align-content: start;
  min-height: 390px;
  padding: 30px;
  border: 1px solid #d8dee6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(19, 22, 27, 0.07);
}

.product-home .price-card.featured {
  border-color: rgba(9, 105, 218, 0.48);
  background: #fff;
  box-shadow: 0 22px 52px rgba(9, 105, 218, 0.14);
}

.product-home .plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-home .plan-name {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.product-home .plan-topline > span {
  padding: 6px 9px;
  border: 1px solid rgba(8, 127, 104, 0.2);
  border-radius: 7px;
  color: var(--teal);
  background: rgba(8, 127, 104, 0.07);
  font-size: 12px;
  font-weight: 900;
}

.product-home .price {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 28px;
}

.product-home .price strong {
  color: var(--ink);
  font-size: 52px;
  line-height: 1;
}

.product-home .price span {
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
}

.product-home .price-card > p {
  margin: 14px 0 0;
  color: var(--muted);
}

.product-home .price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  color: #4f5863;
  list-style: none;
}

.product-home .price-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--teal);
  font-weight: 900;
}

.product-home .price-card .button {
  align-self: end;
  margin-top: auto;
}

.product-home .status-line {
  min-height: 24px;
  max-width: 920px;
  margin: 14px auto 0;
  color: #b42318;
  text-align: center;
}

.product-home .activation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 104px;
  background: #fff;
}

.product-home .activation-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-home .activation-flow li {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 24px;
  border-left: 1px solid var(--line);
}

.product-home .activation-flow li:first-child {
  border-left: 0;
}

.product-home .activation-flow strong {
  margin-top: 24px;
  color: var(--ink);
  font-size: 17px;
}

.product-home .activation-flow small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.product-home .faq-section {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 80px;
  padding-top: 104px;
  padding-bottom: 104px;
  background: var(--panel);
}

.product-home .faq-list {
  border-top: 1px solid #d5dce4;
}

.product-home .faq-list details {
  border-bottom: 1px solid #d5dce4;
}

.product-home .faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.product-home .faq-list summary::-webkit-details-marker {
  display: none;
}

.product-home .faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 400;
}

.product-home .faq-list details[open] summary::after {
  content: "−";
}

.product-home .faq-list p {
  margin: -6px 46px 24px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.product-home .resource-section {
  padding-top: 104px;
  padding-bottom: 112px;
  background: #fff;
}

.product-home .resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 54px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.product-home .resource-list a {
  position: relative;
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 24px 42px 24px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.product-home .resource-list a::after {
  content: "→";
  position: absolute;
  top: 25px;
  right: 4px;
  color: var(--blue);
  font-weight: 900;
}

.product-home .resource-list a:hover span {
  color: var(--blue);
}

.product-home .resource-list span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
}

.product-home .resource-list small {
  color: var(--muted);
  font-size: 14px;
}

.product-home .footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 28px;
  width: 100%;
  margin: 0;
  padding: 32px max(24px, calc((100% - 1240px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-size: 13px;
}

.product-home .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-home .footer-brand div {
  display: grid;
  gap: 3px;
}

.product-home .footer-brand strong {
  color: var(--ink);
  font-size: 15px;
}

.product-home .footer-links {
  display: flex;
  gap: 22px;
  color: #4f5863;
  font-weight: 700;
}

.product-home .footer > span:last-child {
  justify-self: end;
}

@media (max-width: 1040px) {
  .product-home .topbar {
    grid-template-columns: 1fr auto;
  }

  .product-home .navlinks {
    display: none;
  }

  .product-home h1 {
    font-size: 54px;
  }

  .product-home .hero-showcase {
    margin-bottom: -110px;
  }

  .product-home .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 142px;
  }

  .product-home .trust-strip div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .product-home .trust-strip div:nth-child(n + 3) {
    margin-top: 22px;
  }

  .product-home .feature-stage,
  .product-home .demo-section,
  .product-home .activation-section,
  .product-home .faq-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-home .capability-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-home .capability-row article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #d8dee6;
  }

  .product-home .capability-row article:nth-child(4) {
    border-top: 1px solid #d8dee6;
  }

  .product-home .download-band {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .product-home .download-band > img {
    width: 76px;
    height: 76px;
  }

  .product-home .download-actions {
    grid-column: 2;
    justify-items: start;
  }

  .product-home .footer {
    grid-template-columns: 1fr auto;
  }

  .product-home .footer > span:last-child {
    display: none;
  }
}

@media (max-width: 720px) {
  .product-home .topbar {
    min-height: 64px;
    padding: 8px 16px;
  }

  .product-home .brand img {
    width: 34px;
    height: 34px;
  }

  .product-home .brand span {
    font-size: 15px;
  }

  .product-home .nav-actions > .button {
    display: none;
  }

  .product-home .locale-switch a {
    min-width: 38px;
    padding: 6px 7px;
  }

  .product-home .product-hero {
    min-height: 0;
    padding: 44px 18px 28px;
  }

  .product-home .product-kicker {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .product-home .product-kicker img {
    width: 48px;
    height: 48px;
  }

  .product-home h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  .product-home .hero-promise {
    margin-top: 10px;
    font-size: 21px;
  }

  .product-home .hero-copy .lede {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.55;
  }

  .product-home .hero-actions {
    display: grid;
    width: 100%;
    margin-top: 24px;
  }

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

  .product-home .hero-meta {
    font-size: 12px;
  }

  .product-home .hero-showcase {
    width: 100%;
    margin: 34px auto -36px;
  }

  .product-home .hero-showcase > img {
    border-radius: 10px;
  }

  .product-home .hero-showcase figcaption {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .product-home .hero-showcase figcaption span {
    color: #4f5965;
    border-color: var(--line);
    background: #fff;
    backdrop-filter: none;
  }

  .product-home .trust-strip {
    grid-template-columns: 1fr;
    padding: 62px 18px 24px;
  }

  .product-home .trust-strip div,
  .product-home .trust-strip div:first-child,
  .product-home .trust-strip div:nth-child(3) {
    margin: 0;
    padding: 17px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-home .trust-strip div:last-child {
    border-bottom: 1px solid var(--line);
  }

  .product-home .answer-band,
  .product-home .feature-showcase,
  .product-home .demo-section,
  .product-home .download-band,
  .product-home .pricing-section,
  .product-home .activation-section,
  .product-home .faq-section,
  .product-home .resource-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-home .answer-band {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .product-home .answer-band h2,
  .product-home .section-intro h2,
  .product-home .demo-copy h2,
  .product-home .activation-section h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .product-home .answer-band p:not(.eyebrow),
  .product-home .section-intro > p:last-child,
  .product-home .demo-copy > p,
  .product-home .activation-section > div > p:last-child {
    font-size: 16px;
  }

  .product-home .feature-showcase,
  .product-home .demo-section,
  .product-home .pricing-section,
  .product-home .activation-section,
  .product-home .faq-section,
  .product-home .resource-section {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .product-home .feature-stage {
    gap: 24px;
    margin-top: 38px;
  }

  .product-home .product-preview,
  .product-home .demo-frame {
    border-radius: 10px;
  }

  .product-home .feature-index li {
    grid-template-columns: 34px 1fr;
    padding: 21px 0;
  }

  .product-home .capability-row {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .product-home .capability-row article,
  .product-home .capability-row article:first-child,
  .product-home .capability-row article:nth-child(3) {
    padding: 22px 0;
    border-top: 1px solid #d8dee6;
    border-left: 0;
  }

  .product-home .capability-row article:first-child {
    border-top: 0;
  }

  .product-home .demo-section {
    gap: 36px;
  }

  .product-home .download-band {
    grid-template-columns: 62px 1fr;
    gap: 16px;
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .product-home .download-band > img {
    width: 62px;
    height: 62px;
    border-radius: 14px;
  }

  .product-home .download-band h2 {
    font-size: 26px;
  }

  .product-home .download-actions {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .product-home .checkout-panel,
  .product-home .pricing-grid {
    grid-template-columns: 1fr;
  }

  .product-home .checkout-panel {
    margin-top: 34px;
    padding: 16px;
  }

  .product-home .price-card {
    min-height: 0;
    padding: 24px;
  }

  .product-home .price strong {
    font-size: 44px;
  }

  .product-home .activation-section,
  .product-home .faq-section {
    gap: 34px;
  }

  .product-home .activation-flow {
    grid-template-columns: 1fr;
  }

  .product-home .activation-flow li,
  .product-home .activation-flow li:first-child {
    min-height: 0;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-home .activation-flow li:first-child {
    border-top: 0;
  }

  .product-home .activation-flow strong {
    margin-top: 12px;
  }

  .product-home .resource-list {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .product-home .footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 18px;
  }

  .product-home .footer-links {
    flex-wrap: wrap;
    gap: 16px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-home *,
  .product-home *::before,
  .product-home *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
