:root {
  --paper: #f6f7f4;
  --surface: #ffffff;
  --ink: #1b211d;
  --muted: #657067;
  --line: #dfe5dd;
  --soft-line: #edf0eb;
  --lime: #c9f35f;
  --lime-ink: #2f4918;
  --coral: #ef7458;
  --mint: #dff5ea;
  --shadow: 0 16px 40px rgba(34, 49, 38, 0.08);
  --wrap: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 229, 221, 0.88);
  background: rgba(246, 247, 244, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--wrap);
  min-height: 72px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 13px;
  line-height: 1;
}

.brand-name {
  font-size: 18px;
}

.brand-name small {
  margin-left: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #4f5a51;
  font-size: 14px;
  font-weight: 650;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button-primary {
  background: var(--lime);
}

.button-primary:hover {
  background: #d5fa7c;
}

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

.button-dark:hover {
  box-shadow: 3px 3px 0 var(--coral);
}

.menu-toggle {
  display: none;
  width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font-size: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 17px;
  color: #59713a;
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(470px, 0.88fr);
  width: var(--wrap);
  min-height: 650px;
  margin: 0 auto;
  align-items: center;
  gap: 72px;
}

.hero-copy {
  padding: 88px 0;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 em {
  color: #5c7e30;
  font-style: normal;
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #536057;
  font-size: 13px;
  font-weight: 650;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-ink);
  content: "";
}

.product-preview {
  position: relative;
  min-height: 475px;
  padding: 18px;
  border: 1px solid #cad3c5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--soft-line);
  color: #59645b;
  font-size: 12px;
  font-weight: 750;
}

.preview-topbar b {
  color: var(--ink);
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--lime-ink);
}

.status-dot::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(201, 243, 95, 0.35);
  content: "";
}

.source-stage {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  padding: 18px 0;
}

.source-card {
  display: flex;
  min-height: 154px;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border-radius: 6px;
  color: #fff;
  background: #495943;
}

.source-card strong {
  font-size: 12px;
}

.source-card span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
}

.stage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stage-copy small {
  margin-bottom: 5px;
  color: #768179;
  font-size: 11px;
  font-weight: 700;
}

.stage-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.28;
}

.stage-copy p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f9faf8;
  color: #4c594f;
  font-size: 10px;
  font-weight: 700;
}

.preview-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #778178;
  font-size: 11px;
  font-weight: 750;
}

.preview-divider::before,
.preview-divider::after {
  height: 1px;
  flex: 1;
  background: var(--soft-line);
  content: "";
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 16px;
}

.output-video {
  min-height: 160px;
  padding: 10px;
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  background: #fbfcfa;
}

.output-visual {
  position: relative;
  height: 101px;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 4px;
  background: #94bca8;
}

.output-video:nth-child(2) .output-visual {
  background: #df977d;
}

.output-video:nth-child(3) .output-visual {
  background: #d7c56c;
}

.output-visual::after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 35px;
  height: 21px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  content: "";
}

.output-video b {
  display: block;
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.output-video span {
  color: #7d887f;
  font-size: 10px;
}

.preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid var(--soft-line);
  color: #657066;
  font-size: 11px;
}

.progress-track {
  width: 118px;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8ece6;
}

.progress-track i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}

.section {
  padding: 92px 0;
}

.section-white {
  background: var(--surface);
}

.section-wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.45fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head h2,
.detail-hero h1 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-item {
  min-height: 238px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.feature-index {
  display: block;
  margin-bottom: 50px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 850;
}

.feature-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

.feature-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-item a {
  display: inline-block;
  margin-top: 17px;
  font-size: 13px;
  font-weight: 800;
}

.feature-item a:hover {
  color: #5a7a2d;
}

.workflow {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  align-items: start;
}

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

.workflow-sticky p {
  color: var(--muted);
}

.workflow-list {
  border-top: 1px solid var(--line);
}

.workflow-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) minmax(190px, 0.7fr);
  gap: 25px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-row .step {
  color: #6f7f71;
  font-size: 13px;
  font-weight: 800;
}

.workflow-row h3 {
  margin-bottom: 4px;
  font-size: 20px;
}

.workflow-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.workflow-note {
  align-self: center;
  color: #53664a;
  font-size: 13px;
  font-weight: 750;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.solution-item {
  min-height: 258px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f9faf8;
}

.solution-item:nth-child(2) {
  background: #eef5e7;
}

.solution-item:nth-child(3) {
  background: #fff3ed;
}

.solution-item small {
  color: #64735b;
  font-size: 12px;
  font-weight: 800;
}

.solution-item h3 {
  margin: 12px 0 10px;
  font-size: 25px;
  line-height: 1.22;
}

.solution-item p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.solution-item a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.city-link {
  display: flex;
  min-height: 96px;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.city-link strong {
  font-size: 16px;
}

.city-link span {
  color: var(--muted);
  font-size: 12px;
}

.city-link:hover {
  border-color: #b7d670;
  background: #fbfff2;
}

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

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

.faq-list summary {
  position: relative;
  padding: 20px 42px 20px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 760;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  color: #66873a;
  content: "+";
  font-size: 27px;
  font-weight: 350;
  transform: translateY(-54%);
}

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

.faq-list details p {
  max-width: 770px;
  margin-bottom: 20px;
  color: var(--muted);
}

.trial-band {
  padding: 74px 0;
  background: var(--ink);
  color: #fff;
}

.trial-band-inner {
  display: flex;
  width: var(--wrap);
  margin: 0 auto;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
}

.trial-band h2 {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.15;
}

.trial-band p {
  max-width: 640px;
  margin-bottom: 0;
  color: #c6d0c7;
}

.trial-band .button-primary {
  flex: 0 0 auto;
}

.site-footer {
  padding: 58px 0 24px;
  background: #111712;
  color: #c2cbc1;
}

.footer-wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(245px, 1.25fr) repeat(3, minmax(140px, 0.75fr));
  gap: 42px;
  padding-bottom: 48px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
}

.footer-brand-lockup .brand-mark {
  color: var(--ink);
}

.footer-brand-lockup .brand-name {
  font-size: 19px;
}

.footer-brand p {
  max-width: 290px;
  margin: 20px 0 21px;
  color: #aebbb0;
  font-size: 13px;
  line-height: 1.75;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.footer-cta span {
  transition: transform 160ms ease;
}

.footer-cta:hover span {
  transform: translateX(3px);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.footer-column a,
.footer-bottom-links a {
  color: #aebbb0;
  font-size: 12px;
}

.footer-column a:hover,
.footer-bottom-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(194, 203, 193, 0.2);
}

.footer-bottom p {
  margin: 0;
  color: #d5ddd4;
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 16px;
}

.detail-hero {
  padding: 82px 0 62px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.detail-wrap {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb span {
  color: #9ca59d;
}

.detail-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
}

.detail-lede {
  max-width: 760px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.detail-section:nth-of-type(even) {
  background: var(--surface);
}

.detail-section h2 {
  margin-bottom: 20px;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.2;
}

.detail-section > p {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.content-block {
  min-height: 194px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.content-block h3 {
  margin-bottom: 9px;
  font-size: 18px;
}

.content-block p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.update-card {
  display: flex;
  min-height: 265px;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfcfa;
}

.update-card:nth-child(3n + 2) {
  background: #f2f7ea;
}

.update-card:nth-child(3n + 3) {
  background: #fff4ed;
}

.update-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;
  color: #6a766d;
  font-size: 12px;
  font-weight: 800;
}

.update-card-top span {
  padding: 4px 8px;
  border: 1px solid rgba(78, 97, 75, 0.22);
  border-radius: 999px;
  color: #53664a;
  font-size: 11px;
}

.update-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.28;
}

.update-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.update-card a {
  margin-top: auto;
  color: #4d6b2e;
  font-size: 13px;
  font-weight: 850;
}

.update-card a b {
  margin-left: 4px;
}

.update-policy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 48px;
  align-items: end;
  padding: 32px;
  border: 1px solid #d5ddd0;
  border-radius: 8px;
  background: #f1f4ef;
}

.update-policy h2 {
  max-width: 650px;
  margin-bottom: 13px;
}

.update-policy p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.update-policy-list {
  display: grid;
  gap: 8px;
}

.update-policy-list span {
  padding: 11px 12px;
  border: 1px solid #d4dccf;
  border-radius: 5px;
  background: #fff;
  color: #4d5d4f;
  font-size: 13px;
  font-weight: 800;
}

.resource-grid-featured {
  grid-column: span 2;
  background: #e9f2db !important;
}

.resource-grid-featured h3 {
  max-width: 570px;
  font-size: 29px;
}

.callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  margin-top: 32px;
  padding: 26px;
  border: 1px solid #cde095;
  border-radius: 7px;
  background: #f4fae9;
}

.callout h3 {
  margin-bottom: 7px;
  font-size: 20px;
}

.callout p {
  margin-bottom: 0;
  color: #5e6b5f;
  font-size: 14px;
}

.detail-visual-section {
  padding-top: 78px;
  padding-bottom: 78px;
  background: #f3f4f1;
}

.detail-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.detail-media-grid-reverse {
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.05fr);
}

.detail-media-main {
  position: relative;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dce1dc;
}

.detail-media-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-media-main::after {
  position: absolute;
  inset: 0;
  background: rgba(20, 29, 23, 0.16);
  content: "";
}

.detail-media-main figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.detail-media-main b,
.detail-media-main span {
  display: block;
}

.detail-media-main b {
  font-size: 15px;
}

.detail-media-main span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}

.detail-media-copy {
  padding: 8px 0;
}

.detail-media-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.1vw, 43px);
  line-height: 1.16;
}

.detail-media-copy p:not(.eyebrow) {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 16px;
}

.detail-media-points {
  display: grid;
  gap: 10px;
  border-top: 1px solid #cfd7cd;
  padding-top: 17px;
}

.detail-media-points span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #425044;
  font-size: 13px;
  font-weight: 800;
}

.detail-media-points span::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.feature-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f9faf8;
}

.feature-callout h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.feature-callout p {
  margin-bottom: 0;
  color: var(--muted);
}

.mini-flow {
  display: grid;
  gap: 7px;
}

.mini-flow span {
  display: block;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: #536057;
  font-size: 12px;
  font-weight: 750;
}

.mini-flow span:nth-child(2) {
  margin-left: 22px;
  background: var(--mint);
}

.mini-flow span:nth-child(3) {
  margin-left: 44px;
  background: var(--lime);
  color: var(--ink);
}

.trial-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 20px;
  background: var(--paper);
}

.trial-panel {
  width: min(560px, 100%);
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.trial-panel h1 {
  margin-bottom: 12px;
  font-size: 38px;
}

.trial-panel p {
  color: var(--muted);
}

.field {
  display: grid;
  gap: 7px;
  margin: 19px 0;
}

.field label {
  font-size: 13px;
  font-weight: 750;
}

.field input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #ced6ce;
  border-radius: 5px;
  outline: none;
}

.field input:focus {
  border-color: #8caf48;
  box-shadow: 0 0 0 3px rgba(201, 243, 95, 0.28);
}

.form-note {
  min-height: 23px;
  margin: 14px 0 0;
  color: #52712d !important;
  font-size: 13px;
}

.form-note[hidden] {
  display: none;
}

@media (max-width: 980px) {
  .hero-inner,
  .section-head,
  .workflow,
  .feature-callout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    gap: 0;
  }

  .hero-copy {
    padding: 78px 0 42px;
  }

  .product-preview {
    margin-bottom: 68px;
  }

  .section-head {
    gap: 14px;
  }

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

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

  .update-policy {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .workflow-sticky {
    position: static;
  }

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

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

@media (max-width: 760px) {
  :root {
    --wrap: min(1180px, calc(100% - 32px));
  }

  .nav-wrap {
    min-height: 64px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 16px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 11px 0;
  }

  .nav-actions .button:first-child {
    display: none;
  }

  .hero-copy {
    padding-top: 58px;
  }

  h1 {
    font-size: 41px;
  }

  .hero-lede,
  .detail-lede {
    font-size: 16px;
  }

  .product-preview {
    min-height: auto;
    padding: 13px;
  }

  .source-stage {
    grid-template-columns: 92px 1fr;
  }

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

  .output-video {
    display: grid;
    min-height: 75px;
    grid-template-columns: 78px 1fr;
    column-gap: 10px;
    align-items: center;
  }

  .output-visual {
    height: 55px;
    margin-bottom: 0;
  }

  .output-video b,
  .output-video span {
    grid-column: 2;
  }

  .section {
    padding: 66px 0;
  }

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

  .feature-item {
    min-height: 190px;
  }

  .feature-index {
    margin-bottom: 27px;
  }

  .workflow-row {
    grid-template-columns: 45px 1fr;
    gap: 14px;
  }

  .workflow-note {
    grid-column: 2;
  }

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

  .trial-band-inner,
  .callout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trial-panel {
    padding: 30px 23px;
  }

  .detail-media-grid,
  .detail-media-grid-reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .detail-media-grid-reverse .detail-media-copy {
    order: 2;
  }

  .detail-media-main {
    min-height: 260px;
  }

  .detail-media-main figcaption {
    display: block;
  }

  .detail-media-main span {
    margin-top: 3px;
    text-align: left;
  }

  .footer-top {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
  }

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

  .footer-brand p {
    max-width: 560px;
  }

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

@media (max-width: 560px) {
  .site-footer {
    padding-top: 44px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 31px 20px;
    padding-bottom: 36px;
  }

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

  .footer-column h2 {
    margin-bottom: 7px;
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
  }

  .footer-bottom-links {
    justify-content: start;
    gap: 10px 14px;
  }
}

/* Homepage v2: image-led acquisition surface */
.home-v2 {
  background: #f3f4f1;
}

.home-v2 .home-header {
  background: rgba(255, 255, 255, 0.94);
}

.home-v2 .nav-links a {
  color: #354039;
}

.hero-v2 {
  position: relative;
  display: grid;
  height: clamp(540px, calc(100svh - 130px), 720px);
  min-height: 540px;
  overflow: hidden;
  place-items: center;
  color: #fff;
  background: #27332b;
}

.hero-v2-image,
.trial-v2 > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-v2-image {
  object-position: center;
  filter: saturate(0.75) contrast(1.03);
}

.hero-v2-shade,
.trial-v2-shade {
  position: absolute;
  inset: 0;
  background: rgba(18, 27, 21, 0.66);
}

.hero-v2-inner {
  position: relative;
  z-index: 1;
  width: var(--wrap);
  padding: 62px 0 74px;
}

.hero-kicker {
  margin: 0 0 20px;
  color: #d6e5c9;
  font-size: 13px;
  font-weight: 800;
}

.hero-v2 h1 {
  max-width: 850px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(42px, 5.25vw, 76px);
  line-height: 1.06;
}

.hero-v2-lede {
  max-width: 630px;
  margin-bottom: 30px;
  color: #eef3eb;
  font-size: 19px;
  line-height: 1.7;
}

.hero-ghost-button {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.hero-ghost-button:hover {
  box-shadow: 3px 3px 0 var(--lime);
}

.hero-v2-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 41px;
}

.hero-v2-notes span {
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 99px;
  color: #f5f8f2;
  font-size: 12px;
  font-weight: 700;
}

.hero-scroll-cue {
  position: absolute;
  z-index: 1;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 23px;
  color: #e9f0e5;
  font-size: 12px;
  font-weight: 700;
}

.proof-band {
  background: var(--lime);
}

.proof-band-inner {
  display: flex;
  width: var(--wrap);
  min-height: 96px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.proof-band p {
  max-width: 740px;
  margin: 0;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.55;
}

.proof-band a {
  flex: 0 0 auto;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.proof-band a span {
  margin-left: 6px;
}

.region-teaser {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.region-teaser-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.region-teaser-label {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex: 0 0 auto;
}

.region-teaser-label span {
  color: #63803a;
  font-size: 12px;
  font-weight: 850;
}

.region-teaser-label b {
  font-size: 14px;
}

.region-teaser-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
}

.region-teaser-links a {
  padding: 6px 10px;
  border: 1px solid #d8e0d5;
  border-radius: 99px;
  color: #4f5d51;
  font-size: 12px;
  font-weight: 750;
}

.region-teaser-links a:hover {
  border-color: #b6d476;
  background: #f2f9e4;
  color: var(--ink);
}

.region-teaser-links .region-teaser-more {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.home-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(280px, 0.45fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}

.home-heading h2,
.scenario-head h2,
.capability-copy h2,
.faq-intro h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(33px, 3.7vw, 54px);
  line-height: 1.14;
}

.home-heading > p,
.scenario-head > p,
.capability-copy > p,
.faq-intro > p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.home-heading-tight {
  margin-bottom: 25px;
}

.home-product {
  padding: 106px 0 116px;
  background: #fff;
}

.studio-shell {
  display: grid;
  min-height: 620px;
  grid-template-columns: 210px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #cfd7cd;
  border-radius: 8px;
  background: #f8faf7;
  box-shadow: 0 20px 54px rgba(31, 43, 35, 0.12);
}

.studio-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 14px;
  border-right: 1px solid #dfe5dd;
  background: #eef1ec;
}

.studio-logo {
  margin: 0 6px 30px;
  font-size: 13px;
  font-weight: 850;
}

.studio-logo span {
  display: inline-grid;
  width: 19px;
  height: 19px;
  margin-right: 6px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--lime);
  font-size: 10px;
}

.studio-sidebar p {
  margin: 13px 7px 4px;
  color: #879187;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.studio-sidebar a {
  padding: 8px 9px;
  border-radius: 4px;
  color: #566258;
  font-size: 12px;
  font-weight: 700;
}

.studio-sidebar .studio-nav-active {
  color: var(--ink);
  background: #fff;
}

.studio-main {
  min-width: 0;
  padding: 26px 28px 24px;
  background: #fff;
}

.studio-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 23px;
}

.studio-topline small {
  display: block;
  margin-bottom: 4px;
  color: #7b867d;
  font-size: 11px;
  font-weight: 700;
}

.studio-topline strong {
  display: block;
  font-size: 20px;
  line-height: 1.3;
}

.studio-status {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid #c8d5b8;
  border-radius: 99px;
  background: #f3fae8;
  color: #597132;
  font-size: 11px;
  font-weight: 800;
}

.studio-content {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(230px, 0.72fr);
  gap: 16px;
}

.studio-canvas {
  position: relative;
  min-height: 272px;
  overflow: hidden;
  border-radius: 6px;
  background: #d7ded8;
}

.studio-canvas::after {
  position: absolute;
  inset: 0;
  background: rgba(19, 29, 23, 0.22);
  content: "";
}

.studio-canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.canvas-tag,
.canvas-caption {
  position: absolute;
  z-index: 1;
}

.canvas-tag {
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(22, 32, 25, 0.78);
  color: #fff;
  font-size: 10px;
  font-weight: 750;
}

.canvas-caption {
  right: 17px;
  bottom: 16px;
  left: 17px;
  color: #fff;
}

.canvas-caption b {
  display: block;
  margin-bottom: 3px;
  font-size: 21px;
}

.canvas-caption span {
  font-size: 11px;
  font-weight: 700;
}

.studio-config {
  padding: 15px;
  border: 1px solid #e2e7e0;
  border-radius: 6px;
  background: #fafbf9;
}

.studio-config > p {
  margin-bottom: 11px;
  font-size: 12px;
  font-weight: 850;
}

.rule-row {
  display: grid;
  gap: 3px;
  padding: 8px 0;
  border-top: 1px solid #e7ebe5;
}

.rule-row span {
  color: #859087;
  font-size: 10px;
  font-weight: 700;
}

.rule-row b {
  font-size: 11px;
  line-height: 1.4;
}

.studio-create {
  width: 100%;
  min-height: 36px;
  margin-top: 11px;
  padding: 8px;
  font-size: 11px;
}

.studio-output-title {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 24px 0 10px;
}

.studio-output-title span {
  font-size: 13px;
  font-weight: 850;
}

.studio-output-title small {
  color: #7b867d;
  font-size: 11px;
}

.studio-output-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.studio-output-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 9px;
  border: 1px solid #e0e5de;
  border-radius: 5px;
  background: #fafbf9;
}

.studio-output-list img {
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.studio-output-list b,
.studio-output-list span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.studio-output-list b {
  margin-bottom: 2px;
  font-size: 11px;
}

.studio-output-list span {
  color: #7d887f;
  font-size: 9px;
}

.studio-output-list em {
  grid-column: 2;
  color: #607a36;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.home-workflow {
  padding: 103px 0;
  background: #f3f4f1;
}

.workflow-v2 {
  border-top: 1px solid #ced6cc;
}

.workflow-v2 article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(200px, 0.42fr);
  gap: 26px;
  padding: 29px 0;
  border-bottom: 1px solid #ced6cc;
  align-items: center;
}

.workflow-v2 article > span {
  color: #66843d;
  font-size: 14px;
  font-weight: 850;
}

.workflow-v2 h3 {
  margin-bottom: 5px;
  font-size: 23px;
}

.workflow-v2 p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.workflow-v2 em {
  color: #53664a;
  font-size: 13px;
  font-style: normal;
  font-weight: 750;
}

.scenario-gallery {
  padding: 108px 0 115px;
  background: #171f19;
  color: #fff;
}

.scenario-head {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(260px, 0.38fr);
  gap: 40px;
  margin-bottom: 42px;
  align-items: end;
}

.scenario-head .eyebrow {
  color: #c9e69e;
}

.scenario-head h2 {
  color: #fff;
}

.scenario-head > p {
  color: #b8c4ba;
  font-size: 14px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 12px;
}

.scenario-featured,
.scenario-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  background: #2a342d;
}

.scenario-featured {
  grid-row: span 2;
}

.scenario-featured::after,
.scenario-card::after {
  position: absolute;
  inset: 0;
  background: rgba(9, 14, 10, 0.34);
  content: "";
}

.scenario-featured img,
.scenario-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scenario-card img {
  position: absolute;
  inset: 0;
}

.scenario-card-light::after {
  background: rgba(15, 22, 17, 0.38);
}

.scenario-content,
.scenario-card > div {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 25px;
  left: 26px;
}

.scenario-content > p,
.scenario-card p {
  margin-bottom: 9px;
  color: #d8efb8;
  font-size: 12px;
  font-weight: 850;
}

.scenario-content h3 {
  max-width: 590px;
  margin-bottom: 11px;
  color: #fff;
  font-size: clamp(25px, 2.65vw, 39px);
  line-height: 1.15;
}

.scenario-content span {
  display: block;
  margin-bottom: 17px;
  color: #e0e7df;
  font-size: 13px;
}

.scenario-featured a,
.scenario-card a {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.scenario-featured a b,
.scenario-card a b {
  margin-left: 5px;
}

.scenario-card h3 {
  max-width: 420px;
  margin-bottom: 13px;
  color: #fff;
  font-size: 23px;
  line-height: 1.2;
}

.capability-section {
  padding: 112px 0;
  background: #fff;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1fr);
  gap: 95px;
  align-items: start;
}

.capability-copy {
  position: sticky;
  top: 112px;
}

.capability-copy h2 {
  margin-bottom: 20px;
}

.capability-copy > p {
  margin-bottom: 27px;
}

.capability-list {
  border-top: 1px solid var(--line);
}

.capability-list a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.capability-list a:hover {
  color: #58762d;
}

.capability-list > a > span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
}

.capability-list b,
.capability-list small {
  display: block;
}

.capability-list b {
  margin-bottom: 5px;
  font-size: 21px;
}

.capability-list small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.capability-list em {
  font-size: 23px;
  font-style: normal;
  text-align: right;
}

.resource-section {
  padding: 104px 0;
  background: #f0f2ee;
}

.city-network-section {
  padding: 104px 0 110px;
  background: #fff;
}

.city-network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.city-network-grid a {
  display: flex;
  min-height: 166px;
  flex-direction: column;
  padding: 21px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfcfa;
}

.city-network-grid a:nth-child(3n + 2) {
  background: #f3f8e9;
}

.city-network-grid a:nth-child(3n + 3) {
  background: #fff5ef;
}

.city-network-grid strong {
  margin-bottom: 8px;
  font-size: 22px;
}

.city-network-grid span {
  color: var(--muted);
  font-size: 13px;
}

.city-network-grid b {
  margin-top: auto;
  color: #536d2f;
  font-size: 12px;
}

.city-network-grid a:hover {
  background: #f0f8da;
}

.city-network-note {
  margin: 18px 0 0;
  color: #738078;
  font-size: 12px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ccd5ca;
  border-left: 1px solid #ccd5ca;
}

.resource-grid a {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid #ccd5ca;
  border-bottom: 1px solid #ccd5ca;
  background: #f8faf7;
}

.resource-grid a:nth-child(2) {
  background: #eef6df;
}

.resource-grid a:nth-child(3) {
  background: #fbf0ea;
}

.resource-grid span {
  margin-bottom: 44px;
  color: #62755a;
  font-size: 12px;
  font-weight: 850;
}

.resource-grid h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.2;
}

.resource-grid p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.resource-grid b {
  margin-top: auto;
  font-size: 13px;
}

.faq-v2 {
  padding: 111px 0;
  background: #fff;
}

.faq-v2-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.7fr) minmax(0, 1fr);
  gap: 102px;
}

.faq-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 18px;
}

.faq-intro > p {
  margin-bottom: 25px;
}

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

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

.faq-v2-list summary {
  position: relative;
  padding: 22px 44px 22px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}

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

.faq-v2-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  color: #638239;
  content: "+";
  font-size: 26px;
  font-weight: 350;
  transform: translateY(-52%);
}

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

.faq-v2-list p {
  max-width: 710px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
}

.trial-v2 {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: #343d36;
}

.trial-v2 > img {
  object-position: center;
  filter: saturate(0.65) contrast(1.05);
}

.trial-v2-shade {
  background: rgba(15, 25, 18, 0.7);
}

.trial-v2-inner {
  position: relative;
  z-index: 1;
  width: var(--wrap);
  padding: 104px 0;
}

.trial-v2 .eyebrow {
  color: #d3ebad;
}

.trial-v2 h2 {
  max-width: 790px;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(34px, 4vw, 57px);
  line-height: 1.1;
}

.trial-v2 p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 29px;
  color: #e1e8e0;
  font-size: 17px;
}

.home-footer {
  background: #111812;
}

@media (max-width: 980px) {
  .home-heading,
  .scenario-head,
  .capability-layout,
  .faq-v2-layout {
    grid-template-columns: 1fr;
  }

  .home-heading,
  .scenario-head {
    gap: 16px;
  }

  .home-heading > p,
  .scenario-head > p,
  .capability-copy > p,
  .faq-intro > p {
    max-width: 700px;
  }

  .studio-shell {
    grid-template-columns: 174px minmax(0, 1fr);
  }

  .capability-layout,
  .faq-v2-layout {
    gap: 42px;
  }

  .capability-copy,
  .faq-intro {
    position: static;
  }

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

  .scenario-featured {
    grid-column: span 2;
    grid-row: auto;
    min-height: 390px;
  }
}

@media (max-width: 760px) {
  .home-v2 .nav-actions .button-dark {
    display: none;
  }

  .hero-v2 {
    height: clamp(540px, calc(100svh - 118px), 640px);
    min-height: 540px;
  }

  .hero-v2-inner {
    padding: 55px 0 65px;
  }

  .hero-v2 h1 {
    font-size: 42px;
  }

  .hero-v2-lede {
    max-width: 520px;
    margin-bottom: 24px;
    font-size: 16px;
  }

  .hero-v2-notes {
    gap: 7px;
    margin-top: 27px;
  }

  .hero-v2-notes span {
    font-size: 10px;
  }

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

  .proof-band-inner {
    min-height: 0;
    padding: 22px 0;
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }

  .proof-band p {
    font-size: 15px;
  }

  .region-teaser-inner {
    min-height: 0;
    padding: 18px 0;
    display: block;
  }

  .region-teaser-label {
    display: block;
    margin-bottom: 12px;
  }

  .region-teaser-label b {
    display: block;
    margin-top: 3px;
  }

  .region-teaser-links {
    justify-content: start;
  }

  .home-product,
  .home-workflow,
  .scenario-gallery,
  .capability-section,
  .resource-section,
  .faq-v2 {
    padding: 72px 0;
  }

  .home-heading {
    margin-bottom: 27px;
  }

  .home-heading h2,
  .scenario-head h2,
  .capability-copy h2,
  .faq-intro h2 {
    font-size: 34px;
  }

  .studio-shell {
    display: block;
    min-height: 0;
  }

  .studio-sidebar {
    display: none;
  }

  .studio-main {
    padding: 18px 14px;
  }

  .studio-topline {
    align-items: center;
    margin-bottom: 16px;
  }

  .studio-topline strong {
    font-size: 16px;
  }

  .studio-status {
    font-size: 9px;
  }

  .studio-content {
    grid-template-columns: 1fr;
  }

  .studio-canvas {
    min-height: 235px;
  }

  .studio-config {
    padding: 13px;
  }

  .rule-row {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 7px;
    align-items: center;
  }

  .studio-output-title {
    display: block;
  }

  .studio-output-title small {
    display: block;
    margin-top: 3px;
  }

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

  .studio-output-list article {
    grid-template-columns: 58px minmax(0, 1fr) auto;
  }

  .studio-output-list img {
    width: 58px;
    height: 52px;
    grid-row: span 2;
  }

  .studio-output-list em {
    grid-column: 3;
    grid-row: 1;
  }

  .workflow-v2 article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .workflow-v2 h3 {
    font-size: 20px;
  }

  .workflow-v2 p {
    font-size: 14px;
  }

  .workflow-v2 em {
    grid-column: 2;
    font-size: 12px;
  }

  .scenario-head {
    margin-bottom: 27px;
  }

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

  .scenario-featured {
    grid-column: auto;
    min-height: 420px;
  }

  .scenario-card {
    min-height: 310px;
  }

  .scenario-content,
  .scenario-card > div {
    right: 18px;
    bottom: 19px;
    left: 18px;
  }

  .scenario-content h3 {
    font-size: 28px;
  }

  .scenario-card h3 {
    font-size: 21px;
  }

  .capability-list a {
    grid-template-columns: 34px minmax(0, 1fr) 16px;
    gap: 10px;
  }

  .capability-list b {
    font-size: 18px;
  }

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

  .resource-grid-featured {
    grid-column: auto;
  }

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

  .update-card {
    min-height: 230px;
  }

  .update-policy {
    padding: 23px 18px;
  }

  .city-network-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resource-grid a {
    min-height: 230px;
    padding: 22px;
  }

  .resource-grid span {
    margin-bottom: 29px;
  }

  .resource-grid h3 {
    font-size: 22px;
  }

  .city-network-section {
    padding: 72px 0;
  }

  .city-network-grid a {
    min-height: 146px;
    padding: 17px;
  }

  .city-network-grid strong {
    font-size: 19px;
  }

  .city-network-grid span {
    font-size: 11px;
  }

  .trial-v2 {
    min-height: 460px;
  }

  .trial-v2-inner {
    padding: 75px 0;
  }

  .trial-v2 h2 {
    font-size: 37px;
  }

  .trial-v2 p:not(.eyebrow) {
    font-size: 15px;
  }
}
