
body {
  --vd-bg: #eef1ea;
  --vd-text: #13201a;
  background: var(--vd-bg);
  color: var(--vd-text);
}

body::before {
  display: none;
  content: none;
}

.vd-landing {
  --vd-bg: #eef1ea;
  --vd-surface: #ffffff;
  --vd-soft: #f6f8f3;
  --vd-border: #dfe6da;
  --vd-text: #13201a;
  --vd-muted: #5a665e;
  --vd-green: #003b29;
  --vd-dark: #022e20;
  --vd-lime: #c8f560;
  min-height: 100vh;
  overflow-x: clip;
  background: var(--vd-bg);
  color: var(--vd-text);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
}

.vd-landing > .topbar {
  position: sticky;
  top: 0;
  z-index: 50;
}

.vd-landing * {
  letter-spacing: 0;
}

.vd-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.vd-hero {
  position: relative;
  overflow: hidden;
}

.vd-hero-glow {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(123, 196, 31, 0.16), transparent 65%);
  pointer-events: none;
}

.vd-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 78px;
}

.vd-kicker,
.vd-mono-label {
  margin: 0;
  color: #1f7a52;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.vd-kicker.is-lime,
.vd-workflow-panel .vd-kicker,
.vd-final-section .vd-kicker {
  color: var(--vd-lime);
}

.vd-hero-title {
  max-width: 640px;
  margin: 22px 0 0;
  color: #0e1d16;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.02;
}

.vd-hero-title span {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.vd-hero-title span::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 10px;
  border-radius: 2px;
  background: var(--vd-lime);
  content: "";
}

.vd-hero-text,
.vd-section-heading > p:not(.vd-kicker),
.vd-heading-row > p:not(.vd-kicker),
.vd-interface-summary {
  color: #4a564f;
  font-size: 16px;
  line-height: 1.7;
}

.vd-hero-text {
  max-width: 480px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.65;
}

.vd-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 34px;
}

.vd-action-row.is-centered {
  justify-content: center;
}

.vd-btn,
.vd-link-btn,
.vd-dark-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 9px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.vd-btn {
  background: var(--vd-green);
  color: #ffffff;
  padding: 14px 24px;
}

.vd-btn:hover {
  background: #0a4a34;
  color: #ffffff;
  transform: translateY(-1px);
}

.vd-btn svg,
.vd-link-btn svg {
  width: 17px;
  height: 17px;
}

.vd-btn--ring {
  border: 1.5px solid var(--vd-lime);
}

.vd-link-btn {
  color: var(--vd-green);
  padding: 14px 18px;
}

.vd-link-btn:hover {
  color: #0a4a34;
}

.vd-dark-link {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 14px 18px;
}

.vd-provider-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 38px;
}

.vd-provider-strip > span,
.vd-provider-strip strong {
  font-size: 14px;
}

.vd-provider-strip > span {
  color: #8a948d;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.vd-provider-strip strong,
.vd-chip-row button {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #2a352e;
  font-weight: 600;
}

.vd-provider-logo {
  flex: none;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.vd-provider-logo img {
  width: 100%;
  height: 100%;
}

.vd-live-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: 20px;
  background: var(--vd-dark);
  color: #dbe8df;
  box-shadow: 0 40px 80px -45px rgba(2, 46, 32, 0.7);
  animation: vd-floaty 7s ease-in-out infinite;
}

.vd-card-sheen {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 245, 96, 0.07), transparent);
  animation: vd-sheen 5s ease-in-out infinite;
  pointer-events: none;
}

.vd-live-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 12px;
}

.vd-live-tabs span {
  color: #6f8c7d;
}

.vd-live-tabs .is-active {
  margin-bottom: -16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--vd-lime);
  color: #ffffff;
  font-weight: 700;
}

.vd-live-body {
  padding: 22px 22px 8px;
}

.vd-live-card .vd-mono-label {
  color: #6f8c7d;
  font-size: 11px;
}

.vd-source-list {
  margin: 14px 22px 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vd-source-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 9px;
}

.vd-source-row > span {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #0d5238;
}

.vd-source-row strong {
  min-width: 0;
  overflow: hidden;
  color: #cfe0d5;
  font-size: 13px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vd-source-row em {
  display: block;
  flex: 0 0 90px;
  height: 6px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.vd-source-row em i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--vd-lime);
  animation: vd-grow 1.2s both;
}

.vd-source-row.is-muted > span {
  background: #1a3a2d;
}

.vd-source-row.is-muted strong {
  color: #9bb8a7;
}

.vd-source-row.is-muted em i {
  background: #5e7a6a;
}

.vd-live-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 13px 22px;
  background: rgba(200, 245, 96, 0.08);
  color: var(--vd-lime);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.vd-section-heading {
  max-width: 640px;
}

.vd-section-heading h2,
.vd-final-section h2 {
  margin: 14px 0 0;
  color: var(--vd-text);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.08;
}

.vd-section-heading > p:not(.vd-kicker) {
  margin: 16px 0 0;
}

.vd-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.vd-section-heading.vd-heading-row {
  max-width: none;
}

.vd-section-heading.vd-heading-row > div {
  flex: 1 1 auto;
  min-width: 0;
}

.vd-heading-row .vd-section-heading {
  flex: 1 1 auto;
  max-width: none;
}

.vd-heading-row > p {
  max-width: 370px;
  margin: 0;
  font-size: 15px;
}

.vd-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  border-radius: 16px;
  background: rgba(0, 59, 41, 0.1);
}

.vd-result-card {
  min-height: 210px;
  background: var(--vd-soft);
  padding: 30px 28px;
}

.vd-result-card span {
  color: #8a948d;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 13px;
}

.vd-result-card h3,
.vd-benefit-card h3,
.vd-start-card h3,
.vd-audience-grid h3,
.vd-review-list blockquote {
  margin: 16px 0 0;
  font-size: 19px;
  font-weight: 700;
}

.vd-result-card p,
.vd-benefit-card p,
.vd-start-card > p,
.vd-audience-grid p,
.vd-review-list p {
  margin: 11px 0 0;
  color: var(--vd-muted);
  font-size: 14px;
  line-height: 1.7;
}

.vd-benefit-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 16px;
  margin-top: 36px;
}

.vd-feature-card,
.vd-benefit-card,
.vd-start-card,
.vd-audience-grid article,
.vd-showcase-shell,
.vd-pricing-controls,
.vd-review-list article,
.vd-faq-list article,
.vd-blog-card {
  border: 1px solid var(--vd-border);
  background: #ffffff;
}

.vd-feature-card {
  display: flex;
  flex-direction: column;
  grid-row: span 2;
  min-height: 300px;
  border-radius: 18px;
  background: var(--vd-dark);
  color: #ffffff;
  padding: 30px;
}

.vd-feature-card h3 {
  margin: 22px 0 0;
  font-size: 22px;
  font-weight: 700;
}

.vd-feature-card p {
  margin: 12px 0 0;
  color: #a7c3b3;
  font-size: 14px;
  line-height: 1.7;
}

.vd-icon-box {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #eef4e7;
  color: var(--vd-green);
}

.vd-icon-box.is-lime {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(200, 245, 96, 0.14);
  color: var(--vd-lime);
}

.vd-icon-box svg {
  width: 22px;
  height: 22px;
}

.vd-mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  margin-top: auto;
  padding-top: 26px;
}

.vd-mini-bars span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(200, 245, 96, 0.45);
}

.vd-mini-bars span:nth-child(5) {
  background: var(--vd-lime);
}

.vd-benefit-card {
  border-radius: 18px;
  padding: 26px;
}

.vd-start-grid,
.vd-pricing-grid,
.vd-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.vd-start-card {
  border-radius: 20px;
  padding: 32px;
}

.vd-start-card.is-dark {
  position: relative;
  overflow: hidden;
  border-color: var(--vd-dark);
  background: var(--vd-dark);
  color: #ffffff;
}

.vd-start-card.is-dark .vd-mono-label,
.vd-start-card.is-dark li svg {
  color: var(--vd-lime);
}

.vd-start-card.is-dark > p,
.vd-start-card.is-dark li {
  color: #dbe8df;
}

.vd-start-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.vd-start-card li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: #3a463f;
  font-size: 14px;
  line-height: 1.55;
}

.vd-start-card li svg {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: #1f7a52;
}

.vd-start-card .vd-btn {
  margin-top: 26px;
}

.vd-workflow-wrap {
  padding: 60px 0;
}

.vd-workflow-panel {
  overflow: hidden;
  position: relative;
  border-radius: 26px;
  background: var(--vd-dark);
  color: #ffffff;
  padding: 48px 44px 54px;
}

.vd-workflow-panel .vd-section-heading h2,
.vd-workflow-panel .vd-section-heading p:not(.vd-kicker) {
  color: #ffffff;
}

.vd-workflow-panel .vd-section-heading p:not(.vd-kicker) {
  color: #a7c3b3;
}

.vd-workflow-visual {
  position: relative;
  margin-top: 48px;
}

.vd-workflow-track {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 56px;
}

.vd-workflow-track::before,
.vd-workflow-track::after {
  position: absolute;
  top: 27px;
  right: 6%;
  left: 6%;
  height: 2px;
  content: "";
}

.vd-workflow-track::before {
  background: rgba(255, 255, 255, 0.14);
}

.vd-workflow-track::after {
  background: linear-gradient(90deg, transparent, var(--vd-lime), transparent);
}

.vd-workflow-track span {
  position: absolute;
  z-index: 3;
  top: 21px;
  left: 6%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--vd-lime);
  box-shadow: 0 0 16px 3px rgba(200, 245, 96, 0.6);
  animation: vd-travel 6s ease-in-out infinite;
}

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

.vd-workflow-grid article {
  text-align: center;
}

.vd-workflow-grid article > div {
  display: flex;
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 1px solid rgba(200, 245, 96, 0.25);
  border-radius: 16px;
  background: #06402c;
  color: var(--vd-lime);
}

.vd-workflow-grid article.is-final > div {
  border-color: var(--vd-lime);
  background: var(--vd-lime);
  color: #06281b;
}

.vd-workflow-grid svg {
  width: 24px;
  height: 24px;
}

.vd-workflow-grid span {
  display: block;
  margin-top: 14px;
  color: var(--vd-lime);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.vd-workflow-grid h3 {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 600;
}

.vd-workflow-grid p {
  margin: 8px 0 0;
  color: #8fae9c;
  font-size: 12.5px;
  line-height: 1.6;
}

.vd-faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.vd-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vd-faq-list article {
  overflow: hidden;
  border-radius: 16px;
}

.vd-faq-list button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: none;
  color: var(--vd-text);
  cursor: pointer;
  font: inherit;
  padding: 20px 24px;
  text-align: left;
}

.vd-faq-list button span {
  font-size: 16px;
  font-weight: 600;
}

.vd-faq-list button strong {
  color: #1f7a52;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 20px;
}

.vd-faq-list article > p {
  margin: 0;
  color: var(--vd-muted);
  font-size: 14px;
  line-height: 1.75;
  padding: 0 24px 22px;
}

.vd-final-section {
  padding-bottom: 60px;
}

.vd-final-section > div {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: var(--vd-green);
  color: #ffffff;
  padding: 60px 48px;
  text-align: center;
}

.vd-final-section > div::before {
  position: absolute;
  top: -100px;
  left: 50%;
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(123, 196, 31, 0.2), transparent 65%);
  content: "";
  transform: translateX(-50%);
}

.vd-final-section > div > * {
  position: relative;
}

.vd-final-section h2 {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  color: #ffffff;
  font-size: 42px;
}

.vd-final-section p:not(.vd-kicker) {
  max-width: 520px;
  margin: 18px auto 0;
  color: #bfe0cf;
  font-size: 16px;
  line-height: 1.7;
}

.vd-hero-text.vd-hero-note {
  margin: 16px 0 0;
  color: var(--vd-muted);
  font-size: 13px;
  line-height: 1.6;
}

.vd-ga-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.vd-ga-hero-chip {
  border: 1px solid var(--vd-border);
  border-radius: 20px;
  background: var(--vd-surface);
  color: var(--vd-muted);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
}

.vd-ga-report-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vd-ga-report-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
}

.vd-ga-report-score > div {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.vd-ga-report-score strong {
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
}

.vd-ga-report-score small {
  color: #a7c3b3;
  font-size: 16px;
}

.vd-ga-verdict {
  border-radius: 20px;
  background: rgba(200, 245, 96, 0.14);
  color: var(--vd-lime);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
  text-transform: uppercase;
}

.vd-ga-report-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vd-ga-report-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cfe0d5;
  font-size: 13px;
  line-height: 1.6;
}

.vd-ga-status-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 999px;
}

.vd-ga-status-dot.is-pass {
  background: var(--vd-lime);
}

.vd-ga-status-dot.is-warn {
  background: #efd08d;
}

.vd-ga-status-dot.is-fail {
  background: #c0563a;
}

.vd-ga-report-card .vd-source-row strong {
  flex: 1 1 auto;
  line-height: 1.4;
  white-space: normal;
}

.vd-ga-report-row em {
  flex: 0 0 126px;
  background: rgba(255, 255, 255, 0.14);
}

.vd-ga-about-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.4fr) minmax(0, 1.6fr);
  gap: 30px;
  align-items: start;
  margin-top: 34px;
}

.vd-ga-about-card > p:last-child {
  margin: 0;
  color: #dbe8df;
  font-size: 16px;
  line-height: 1.7;
}

.vd-ga-check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  margin-top: 36px;
}

.vd-ga-check-category {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--vd-border);
  border-radius: 18px;
  background: var(--vd-surface);
}

.vd-ga-check-category header {
  padding: 22px;
  border-bottom: 1px solid var(--vd-border);
  background: var(--vd-soft);
}

.vd-ga-check-category h3 {
  margin: 0;
  color: var(--vd-text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}

.vd-ga-check-category header .vd-mono-label {
  display: block;
  margin-top: 10px;
  font-size: 11px;
}

.vd-ga-check-list {
  margin: 0;
  padding: 0 22px;
  list-style: none;
}

.vd-ga-check-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--vd-border);
}

.vd-ga-check-item:last-child {
  border-bottom: 0;
}

.vd-ga-check-item strong {
  display: block;
  color: var(--vd-text);
  font-size: 14px;
  line-height: 1.55;
}

.vd-ga-check-item span {
  display: block;
  margin-top: 8px;
  color: var(--vd-muted);
  font-size: 13px;
  line-height: 1.6;
}

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

.vd-ga-faq-list details {
  overflow: hidden;
  border: 1px solid var(--vd-border);
  border-radius: 16px;
  background: #ffffff;
}

.vd-ga-faq-list summary {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--vd-text);
  cursor: pointer;
  font: inherit;
  padding: 20px 24px;
  text-align: left;
  list-style: none;
}

.vd-ga-faq-list summary::-webkit-details-marker {
  display: none;
}

.vd-ga-faq-list summary span {
  font-size: 16px;
  font-weight: 600;
}

.vd-ga-faq-list summary::after {
  color: #1f7a52;
  content: "+";
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 20px;
}

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

.vd-ga-faq-list details > p {
  margin: 0;
  color: var(--vd-muted);
  font-size: 14px;
  line-height: 1.75;
  padding: 0 24px 22px;
}

@keyframes vd-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes vd-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 245, 96, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(200, 245, 96, 0); }
}

@keyframes vd-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes vd-sheen {
  0% { transform: translateX(-120%); }
  60%, 100% { transform: translateX(260%); }
}

@keyframes vd-floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes vd-travel {
  0% { left: 6%; }
  48% { left: 94%; }
  52% { left: 94%; }
  100% { left: 6%; }
}

@media (prefers-reduced-motion: reduce) {
  .vd-live-card,
  .vd-card-sheen,
  .vd-cursor,
  .vd-source-row em i,
  .vd-workflow-track span {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .vd-hero-grid,
  .vd-pricing-grid,
  .vd-testimonial-grid,
  .vd-faq-grid {
    grid-template-columns: 1fr;
  }

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

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

  .vd-workflow-track {
    display: none;
  }

  .vd-workflow-visual {
    margin-top: 36px;
  }

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

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

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

@media (max-width: 760px) {
  .vd-section {
    width: min(100% - 28px, 1180px);
  }

  .vd-hero-grid,
  .vd-section {
    padding-top: 38px;
    padding-bottom: 46px;
  }

  .vd-hero-title {
    font-size: 42px;
  }

  .vd-hero-text {
    font-size: 16px;
  }

  .vd-action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .vd-action-row .vd-btn,
  .vd-action-row .vd-link-btn,
  .vd-action-row .vd-dark-link {
    width: 100%;
  }

  .vd-heading-row,
  .vd-lightbox-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .vd-result-grid,
  .vd-benefit-grid,
  .vd-start-grid,
  .vd-audience-grid,
  .vd-frequency-grid,
  .vd-summary-metrics {
    grid-template-columns: 1fr;
  }

  .vd-workflow-panel,
  .vd-final-section > div,
  .vd-pricing-controls,
  .vd-pricing-summary,
  .vd-start-card {
    padding: 28px 22px;
  }

  .vd-workflow-grid {
    grid-template-columns: 1fr;
  }

  .vd-source-row em {
    flex: 1 0 70px;
  }

  .vd-final-section h2 {
    font-size: 34px;
  }

  .vd-ga-about-card,
  .vd-ga-check-grid,
  .vd-ga-workflow .vd-workflow-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .vd-hero-title {
    font-size: 36px;
  }

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

  .vd-live-tabs,
  .vd-showcase-tabs {
    gap: 16px;
  }

  .vd-ga-report-score {
    align-items: flex-start;
    flex-direction: column;
  }
}
