:root {
  color-scheme: light;
  --ink: #141b24;
  --muted: #5f6b7a;
  --line: #e2e8ef;
  --paper: #f8faf9;
  --white: #ffffff;
  --green: #178a57;
  --green-dark: #0c5f3b;
  --blue: #245fbb;
  --gold: #b7862b;
  --mint: #edf8f2;
  --sky: #eef5fb;
  --charcoal: #17222e;
  --shadow: 0 22px 70px rgba(24, 33, 44, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand img,
.footer-brand img {
  border-radius: 8px;
}

.site-header nav,
footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.site-header nav a,
footer nav a {
  text-decoration: none;
}

.site-header nav a:hover,
footer nav a:hover {
  color: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  padding: clamp(88px, 10vw, 150px) clamp(20px, 5vw, 70px) clamp(56px, 7vw, 86px);
  overflow: hidden;
  background: #10261f;
}

.trust-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.82fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  min-height: 72vh;
  padding: clamp(76px, 8vw, 118px) clamp(20px, 5vw, 70px) clamp(58px, 7vw, 88px);
  background:
    radial-gradient(circle at 90% 12%, rgba(36, 95, 187, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8faf9);
  border-bottom: 1px solid var(--line);
}

.trust-hero-copy {
  max-width: 780px;
}

.trust-hero > *,
.plugin-showcase > *,
.plugin-hero > * {
  min-width: 0;
}

.trust-hero h1 {
  max-width: 740px;
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 1.01;
  text-wrap: balance;
}

.trust-hero .hero-copy {
  max-width: 680px;
  color: var(--muted);
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.hero-signals span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero-signals span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
}

.admin-preview {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-preview.product-preview {
  display: block;
  min-height: auto;
  width: 100%;
  max-width: 100%;
  padding: clamp(18px, 3vw, 26px);
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px 16px;
  background: var(--charcoal);
}

.preview-sidebar span {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.16);
}

.preview-sidebar .active {
  background: var(--green);
}

.preview-main {
  padding: clamp(22px, 3vw, 32px);
}

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

.preview-top strong {
  font-size: 20px;
}

.preview-top span {
  color: var(--muted);
  font-weight: 750;
}

.preview-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.preview-toolbar span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8fbf9;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.preview-product-table {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.preview-row {
  display: grid;
  grid-template-columns: minmax(120px, 1.2fr) minmax(64px, 0.6fr) minmax(64px, 0.6fr) minmax(54px, 0.4fr);
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.preview-row:last-child {
  border-bottom: 0;
}

.preview-row.head {
  min-height: 42px;
  background: #eef7f2;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-row strong {
  font-size: 15px;
}

.preview-row span,
.preview-row b {
  color: var(--muted);
  font-size: 14px;
}

.preview-row b {
  display: inline-flex;
  width: fit-content;
  min-width: 32px;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 99px;
  background: var(--mint);
  color: var(--green-dark);
}

.preview-note {
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  background: #15251f;
  color: #d7f6e3;
  font-size: 14px;
  font-weight: 750;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.preview-cards div,
.preview-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fcfdfc;
}

.preview-cards div {
  min-height: 92px;
  padding: 15px;
}

.preview-cards b,
.preview-cards span,
.preview-table b,
.preview-table span,
.preview-table i {
  display: block;
  border-radius: 99px;
}

.preview-cards b {
  width: 24px;
  height: 24px;
  margin-bottom: 14px;
  background: var(--green);
}

.preview-cards span {
  height: 8px;
  margin-top: 8px;
  background: #dfe6ec;
}

.preview-cards span:last-child {
  width: 68%;
}

.preview-table {
  display: grid;
  gap: 0;
  margin-top: 18px;
  padding: 10px 18px;
}

.preview-table div {
  display: grid;
  grid-template-columns: 12px minmax(110px, 1fr) minmax(70px, 0.45fr);
  gap: 16px;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
}

.preview-table div:last-child {
  border-bottom: 0;
}

.preview-table b {
  width: 10px;
  height: 10px;
  background: var(--green);
}

.preview-table span,
.preview-table i {
  height: 8px;
  background: #dde5ec;
}

.trust-panel {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.trust-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.trust-panel-header img {
  border-radius: 8px;
}

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

.trust-panel-header strong {
  font-size: 22px;
}

.trust-panel-header span {
  color: var(--muted);
  font-weight: 650;
}

.trust-panel dl {
  margin: 0;
}

.trust-panel dl div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.trust-panel dl div:last-child {
  border-bottom: 0;
}

.trust-panel dt {
  color: var(--muted);
  font-weight: 800;
}

.trust-panel dd {
  margin: 0;
  font-weight: 750;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-strip span {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: var(--white);
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-weight: 850;
  text-align: center;
}

.proof-strip span:last-child {
  border-right: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 28, 22, 0.94), rgba(9, 28, 22, 0.68) 46%, rgba(9, 28, 22, 0.22)),
    url("/assets/cleanwp-tools-marketplace-banner-1544x500.png") center / cover no-repeat;
  transform: scale(1.04);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #97e2b4;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 10px 0 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  width: min(660px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.1vw, 24px);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(23, 138, 87, 0.18);
}

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

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

.intro-band,
.pricing-band,
.support-band {
  padding: clamp(42px, 7vw, 84px) clamp(20px, 5vw, 70px);
}

.intro-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.split,
.support-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.intro-grid p,
.section-heading p,
.split p,
.support-band p {
  color: var(--muted);
  font-size: 18px;
}

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

.signal-list span {
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mint), #fff);
  font-weight: 800;
}

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

.section-heading {
  width: min(900px, 100%);
  margin-bottom: 34px;
}

.section-heading.compact {
  width: min(760px, 100%);
}

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

.hub-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.category-rail {
  position: sticky;
  top: 82px;
  display: grid;
  gap: 8px;
}

.category-rail a {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.category-rail a:hover {
  color: var(--green-dark);
  border-color: #acd7ba;
  background: var(--mint);
}

.product-groups {
  display: grid;
  gap: 20px;
}

.product-group {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.group-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.group-heading h3 {
  margin: 0;
}

.group-heading p {
  margin: 0;
  color: var(--muted);
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 18px;
}

.compact-grid article,
.compact-grid a {
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.compact-grid a:hover {
  border-color: #91c9a8;
  box-shadow: 0 10px 24px rgba(20, 46, 36, 0.08);
  transform: translateY(-1px);
}

.compact-grid strong,
.compact-grid span {
  display: block;
}

.compact-grid strong {
  margin-bottom: 6px;
  font-size: 17px;
}

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

.product-card,
.price-card,
.status-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(20, 46, 36, 0.06);
}

.product-card {
  min-height: 222px;
  padding: 20px;
}

.product-card.featured {
  background: linear-gradient(180deg, #ffffff, var(--mint));
  border-color: #bddbc7;
}

.product-topline {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-topline strong {
  color: var(--blue);
  font-size: 12px;
  white-space: nowrap;
}

.product-card p,
.price-card p {
  margin: 0;
  color: var(--muted);
}

.pricing-band {
  background: linear-gradient(180deg, var(--sky), #ffffff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.standalone-pricing {
  margin-top: 30px;
  padding-right: 0;
  padding-left: 0;
  border: 0;
  background: transparent;
}

.docs-band {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 70px);
  background: #f4f8fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.article-teaser-grid a {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid #d1dde8;
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(20, 46, 36, 0.05);
}

.article-teaser-grid a:hover {
  border-color: #8bb6da;
}

.article-teaser-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.article-teaser-grid strong {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.18;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: none;
}

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

.price-card {
  min-height: 188px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-card span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.price-card strong {
  display: block;
  margin: 12px 0;
  color: var(--green-dark);
  font-size: 32px;
  line-height: 1;
}

.price-card.bundle {
  background: #15251f;
  color: #fff;
  border-color: #15251f;
}

.price-card.bundle span,
.price-card.bundle p {
  color: rgba(255, 255, 255, 0.78);
}

.price-card.bundle strong {
  color: #97e2b4;
}

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

.price-card p {
  margin-bottom: 22px;
}

.price-card.bundle .button.primary {
  background: #ffffff;
  color: #15251f;
  box-shadow: none;
}

.lead-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(38px, 6vw, 70px) clamp(20px, 5vw, 70px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.lead-band h2 {
  max-width: 780px;
}

.lead-band p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.status-panel {
  padding: 10px 22px;
}

.status-panel div {
  display: grid;
  grid-template-columns: minmax(120px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.status-panel div:last-child {
  border-bottom: 0;
}

.status-panel span {
  color: var(--muted);
  font-weight: 750;
}

.status-panel strong {
  color: var(--ink);
}

.support-band {
  background: #14241f;
  color: #fff;
}

.support-band .eyebrow {
  color: #97e2b4;
}

.support-band p {
  color: rgba(255, 255, 255, 0.78);
}

.support-actions {
  justify-content: start;
  margin-top: 0;
}

.clean-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: clamp(74px, 8vw, 118px) clamp(20px, 5vw, 70px) clamp(58px, 7vw, 88px);
  background: linear-gradient(180deg, #ffffff, #f8faf9);
  border-bottom: 1px solid var(--line);
}

.clean-hero-copy {
  width: min(760px, 100%);
}

.clean-hero > * {
  min-width: 0;
}

.clean-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 0.98;
}

.clean-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.suite-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid #d8e5dc;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 70px rgba(24, 33, 44, 0.09);
}

.suite-card-top {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.suite-card-top img {
  border-radius: 8px;
}

.suite-card-top strong,
.suite-card-top span {
  display: block;
}

.suite-card-top strong {
  font-size: 20px;
}

.suite-card-top span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

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

.suite-metrics div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.suite-metrics span,
.suite-list span,
.home-price-cards span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.suite-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 22px;
}

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

.suite-list a {
  display: grid;
  gap: 4px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
}

.suite-list a:hover,
.featured-tools a:hover,
.mini-guide-list a:hover,
.home-price-cards a:hover {
  border-color: #9acdac;
}

.suite-list strong {
  font-size: 17px;
}

.suite-list span {
  text-transform: none;
  font-size: 14px;
  line-height: 1.35;
}

.confidence-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.confidence-row span {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
  text-align: center;
}

.home-section,
.home-split,
.home-pricing {
  padding: clamp(56px, 8vw, 94px) clamp(20px, 5vw, 70px);
}

.home-heading {
  width: min(760px, 100%);
  margin-bottom: 26px;
}

.home-heading p:not(.eyebrow),
.home-split p,
.home-pricing p {
  color: var(--muted);
  font-size: 18px;
}

.home-heading h2,
.home-split h2,
.home-pricing h2 {
  font-size: clamp(32px, 4.6vw, 56px);
}

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

.featured-tools a,
.mini-guide-list a,
.home-price-cards a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
}

.featured-tools a {
  min-height: 210px;
  padding: 20px;
}

.featured-tools strong {
  display: block;
  margin: 18px 0 10px;
  font-size: 25px;
  line-height: 1.1;
}

.featured-tools p {
  margin: 0;
  color: var(--muted);
}

.home-split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #f5f9fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-split .button {
  margin-top: 14px;
}

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

.mini-guide-list a {
  padding: 18px;
  font-size: 18px;
  font-weight: 850;
}

.home-pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.home-price-cards {
  display: grid;
  gap: 12px;
}

.home-price-cards a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
}

.home-price-cards strong {
  font-size: 24px;
  color: var(--green-dark);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(20px, 5vw, 70px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 96px 20px 72px;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(38px, 6vw, 68px);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 28px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 18px;
}

.legal-page a {
  color: var(--green-dark);
  font-weight: 800;
}

.article-list-page,
.article-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 72px;
}

.article-list-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.article-list-hero h1,
.article-page h1 {
  color: var(--ink);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
}

.article-list-hero p,
.article-page .dek {
  color: var(--muted);
  font-size: 20px;
}

.article-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.article-card {
  min-height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
}

.article-card span,
.article-meta {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.article-card strong {
  display: block;
  margin: 12px 0;
  font-size: 23px;
  line-height: 1.14;
}

.article-card p {
  margin: 0;
  color: var(--muted);
}

.article-page {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

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

.article-content h2 {
  margin-top: 42px;
  font-size: 30px;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 18px;
}

.article-content li {
  margin: 8px 0;
}

.article-aside {
  position: sticky;
  top: 90px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-aside h2 {
  font-size: 22px;
}

.article-aside a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: none;
}

.article-cta {
  margin-top: 40px;
  padding: 22px;
  border: 1px solid #bddbc7;
  border-radius: 8px;
  background: var(--mint);
}

.plugin-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 72px;
}

.plugin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: end;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(36, 95, 187, 0.08), transparent 34%),
    linear-gradient(135deg, #ffffff, #eef8f2);
}

.plugin-hero h1 {
  color: var(--ink);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
}

.plugin-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.plugin-facts {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.plugin-facts div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.plugin-facts div:last-child {
  border-bottom: 0;
}

.plugin-facts span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.plugin-facts strong {
  font-size: 20px;
}

.plugin-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-right: 0;
  padding-left: 0;
}

.plugin-detail-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.plugin-detail-grid h2 {
  margin-top: 0;
  font-size: 26px;
}

.plugin-detail-grid p {
  color: var(--muted);
}

.plugin-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf8;
}

.plugin-screen {
  overflow: hidden;
  border: 1px solid #d7e2db;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(20, 46, 36, 0.08);
}

.screen-head,
.screen-kpis,
.screen-list div {
  display: grid;
  align-items: center;
  gap: 12px;
}

.screen-head {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.screen-head span {
  color: var(--muted);
  font-weight: 750;
}

.screen-kpis {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 14px 20px;
  background: #eef7f2;
}

.screen-kpis span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #fff;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

.screen-list div {
  grid-template-columns: 42px minmax(0, 1fr) auto;
  min-height: 58px;
  padding: 12px 20px;
  border-top: 1px solid var(--line);
}

.screen-list b {
  color: var(--blue);
  font-size: 12px;
}

.screen-list span {
  color: var(--ink);
  font-weight: 750;
}

.screen-list em {
  padding: 4px 9px;
  border-radius: 99px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.plugin-copy-block p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.feature-list li {
  margin: 8px 0;
}

.product-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid #bddbc7;
  border-radius: 8px;
  background: var(--mint);
}

.product-cta-panel h2 {
  max-width: 780px;
  font-size: clamp(26px, 3vw, 42px);
}

.product-cta-panel p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.launch-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.86fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
  padding: clamp(72px, 8vw, 116px) clamp(20px, 5vw, 70px) clamp(54px, 7vw, 86px);
  overflow: hidden;
  background: #071f1a;
  color: #fff;
  border-bottom: 1px solid #0e3b31;
}

.launch-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17, 121, 82, 0.34), transparent 42%),
    linear-gradient(90deg, rgba(9, 34, 29, 0.2), rgba(9, 34, 29, 0.72));
  opacity: 0.95;
}

.launch-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(46vw, 680px);
  height: 58%;
  background: #123d32;
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.42;
}

.launch-hero > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.launch-hero .eyebrow {
  color: #9fe5bd;
}

.launch-hero h1 {
  max-width: 810px;
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 1;
}

.launch-hero-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

.launch-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
}

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

.product-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.main-window {
  position: relative;
  z-index: 2;
}

.side-window {
  position: absolute;
  z-index: 3;
  width: min(310px, 48%);
}

.leak-window {
  right: -6px;
  bottom: 46px;
}

.health-window {
  left: -22px;
  bottom: 0;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid #e1e8ef;
  background: #f7faf9;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
}

.window-bar span:nth-child(1) {
  background: #ef6351;
}

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

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

.window-bar strong {
  margin-left: 8px;
  font-size: 13px;
}

.window-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px;
}

.window-toolbar b {
  font-size: 19px;
}

.window-toolbar em {
  padding: 6px 10px;
  border-radius: 999px;
  background: #eaf6ef;
  color: var(--green-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.grid-preview {
  display: grid;
  grid-template-columns: minmax(150px, 1.4fr) minmax(74px, 0.65fr) minmax(74px, 0.65fr) minmax(68px, 0.5fr);
  margin: 0 20px 18px;
  overflow: hidden;
  border: 1px solid #dbe5ee;
  border-radius: 10px;
  background: #fff;
}

.grid-preview > div {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-right: 1px solid #e8eef4;
  border-bottom: 1px solid #e8eef4;
  color: #253242;
  font-size: 14px;
  font-weight: 750;
}

.grid-preview > div:nth-child(4n) {
  border-right: 0;
}

.grid-preview > div:nth-last-child(-n+4) {
  border-bottom: 0;
}

.grid-preview .grid-head {
  min-height: 40px;
  background: #eff7f2;
  color: #0c5f3b;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.pill.good {
  background: #e7f8ef;
  color: #107548;
}

.pill.warn {
  background: #fff4d8;
  color: #835d00;
}

.pill.low {
  background: #ffe9e8;
  color: #a4312a;
}

.window-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0 20px 20px;
}

.window-footer span {
  padding: 7px 10px;
  border-radius: 7px;
  background: #f1f5f9;
  color: #516172;
  font-size: 12px;
  font-weight: 850;
}

.audit-list {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.audit-list div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid #e6edf4;
  border-radius: 9px;
  background: #fcfdfd;
}

.audit-list b {
  font-size: 13px;
}

.audit-list span {
  color: #a4312a;
  font-size: 12px;
  font-weight: 900;
}

.health-meter {
  display: grid;
  place-items: center;
  padding: 22px 16px 12px;
}

.health-meter strong {
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  border: 12px solid #2ca565;
  border-left-color: #dcece4;
  border-radius: 999px;
  font-size: 28px;
}

.health-meter span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.health-bars {
  display: grid;
  gap: 8px;
  padding: 0 18px 18px;
}

.health-bars span {
  height: 9px;
  border-radius: 99px;
  background: #dfe7ee;
}

.health-bars span:nth-child(1) {
  width: 88%;
}

.health-bars span:nth-child(2) {
  width: 72%;
}

.health-bars span:nth-child(3) {
  width: 54%;
}

.launch-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid #dde8e2;
  background: #fff;
}

.launch-strip span {
  min-height: 88px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 16px;
  border-right: 1px solid #dde8e2;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.launch-strip span:last-child {
  border-right: 0;
}

.launch-strip strong {
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
}

.showcase-section,
.workflow-section,
.pricing-preview {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 70px);
}

.showcase-heading {
  width: min(900px, 100%);
  margin-bottom: 30px;
}

.showcase-heading h2,
.workflow-section h2,
.pricing-preview h2 {
  font-size: clamp(34px, 4.6vw, 60px);
}

.showcase-heading p:not(.eyebrow),
.workflow-section p,
.pricing-preview p {
  color: var(--muted);
  font-size: 18px;
}

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

.visual-tool-card {
  position: relative;
  min-height: 252px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  overflow: hidden;
  border: 1px solid #dce7df;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(15, 43, 34, 0.06);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.visual-tool-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 130px;
  height: 130px;
  border: 28px solid rgba(23, 138, 87, 0.08);
  border-radius: 999px;
}

.visual-tool-card:hover {
  transform: translateY(-3px);
  border-color: #9ccfad;
  box-shadow: 0 22px 48px rgba(15, 43, 34, 0.1);
}

.visual-tool-card.featured-card {
  background: #f3fbf6;
  border-color: #a9d8ba;
}

.tool-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.tool-icon.blue { background: #245fbb; }
.tool-icon.gold { background: #b7862b; }
.tool-icon.red { background: #c84e57; }
.tool-icon.green { background: #178a57; }
.tool-icon.navy { background: #17222e; }
.tool-icon.violet { background: #6653b8; }

.visual-tool-card small {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-tool-card strong {
  margin: 8px 0 10px;
  font-size: clamp(22px, 2.2vw, 29px);
  line-height: 1.06;
}

.visual-tool-card p {
  margin: 0;
  color: var(--muted);
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.showcase-actions span {
  color: var(--muted);
  font-weight: 850;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  background: #f4f8fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-section .button {
  margin-top: 14px;
}

.guide-stack {
  display: grid;
  gap: 14px;
}

.guide-stack a {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid #d3e1eb;
  border-radius: 14px;
  background: #fff;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(22, 48, 64, 0.05);
}

.guide-stack strong {
  font-size: 19px;
}

.guide-stack span {
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
}

.guide-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.pricing-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(430px, 0.8fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  background: #fff;
}

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

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

.mini-price {
  position: relative;
  min-height: 246px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid #dce7df;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(15, 43, 34, 0.06);
}

.mini-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-price strong {
  margin: 12px 0;
  color: var(--green-dark);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
}

.mini-price p {
  margin: 0 0 14px;
  font-size: 15px;
}

.mini-price ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}

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

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

.mini-price::after {
  content: "View pricing";
  margin-top: auto;
  padding: 9px 12px;
  border-radius: 8px;
  background: #eaf6ef;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.bundle-mini {
  transform: translateY(-12px);
  background: #10251f;
  border-color: #10251f;
  color: #fff;
  box-shadow: 0 26px 60px rgba(16, 37, 31, 0.22);
}

.bundle-mini small {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f4bf45;
  color: #14241f;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.bundle-mini span,
.bundle-mini p,
.bundle-mini ul {
  color: rgba(255, 255, 255, 0.78);
}

.bundle-mini li::before {
  background: #9fe5bd;
}

.bundle-mini strong {
  color: #9fe5bd;
}

.bundle-mini::after {
  background: #ffffff;
  color: #10251f;
}

@media (max-width: 980px) {
  .product-grid,
  .pricing-grid,
  .article-teaser-grid,
  .article-list-grid,
  .plugin-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-hero,
  .launch-hero,
  .workflow-section,
  .pricing-preview,
  .clean-hero,
  .hub-layout,
  .intro-grid,
  .split,
  .lead-band,
  .plugin-showcase,
  .product-cta-panel,
  .home-split,
  .home-pricing,
  .support-band,
  .article-list-hero,
  .article-page,
  .plugin-hero {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: 500px;
  }

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

  .bundle-mini {
    transform: none;
  }

  .category-rail,
  .article-aside {
    position: static;
  }

  .support-actions {
    margin-top: 4px;
  }
}

@media (max-width: 700px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    width: 100%;
    gap: 12px;
  }

  .trust-hero,
  .admin-preview.product-preview,
  .preview-product-table,
  .hero-actions,
  .hero-signals {
    width: 100% !important;
    max-width: calc(100vw - 40px) !important;
  }

  .trust-hero-copy,
  .trust-hero .hero-copy,
  .trust-hero h1 {
    width: 100% !important;
    max-width: calc(100vw - 64px) !important;
  }

  .trust-hero .hero-copy {
    max-width: 300px !important;
  }

  .trust-hero {
    overflow: hidden;
  }

  .hero-signals span {
    white-space: normal;
  }

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

  .preview-top span {
    display: none;
  }

  .hero {
    min-height: 78vh;
    padding-top: 92px;
  }

  .product-grid,
  .pricing-grid,
  .launch-strip,
  .visual-tool-grid,
  .pricing-preview-grid,
  .signal-list,
  .proof-strip,
  .confidence-row,
  .featured-tools,
  .suite-metrics,
  .compact-grid,
  .article-teaser-grid,
  .article-list-grid,
  .plugin-detail-grid,
  .group-heading {
    grid-template-columns: 1fr;
  }

  .launch-hero {
    padding-top: 54px;
  }

  .launch-hero h1 {
    font-size: 38px;
    line-height: 1;
  }

  .launch-hero-copy p:not(.eyebrow) {
    font-size: 18px;
  }

  .product-stage {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .side-window {
    position: static;
    width: 100%;
  }

  .window-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid-preview {
    grid-template-columns: minmax(130px, 1fr) minmax(62px, 0.5fr);
  }

  .grid-preview > div:nth-child(4n) {
    border-right: 1px solid #e8eef4;
  }

  .grid-preview > div:nth-child(2n) {
    border-right: 0;
  }

  .grid-preview > div:nth-child(3),
  .grid-preview > div:nth-child(4),
  .grid-preview > div:nth-child(7),
  .grid-preview > div:nth-child(8),
  .grid-preview > div:nth-child(11),
  .grid-preview > div:nth-child(12),
  .grid-preview > div:nth-child(15),
  .grid-preview > div:nth-child(16),
  .grid-preview > div:nth-child(19),
  .grid-preview > div:nth-child(20) {
    display: none;
  }

  .launch-strip span {
    border-right: 0;
    border-bottom: 1px solid #dde8e2;
  }

  .launch-strip span:last-child {
    border-bottom: 0;
  }

  .status-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .clean-hero {
    padding-top: 54px;
    overflow: hidden;
  }

  .clean-hero h1 {
    max-width: 315px;
    font-size: 34px;
    line-height: 1.02;
    text-wrap: auto;
  }

  .clean-hero,
  .clean-hero-copy,
  .clean-hero-copy p:not(.eyebrow),
  .suite-card,
  .home-split,
  .home-pricing {
    width: 100%;
  }

  .clean-hero {
    max-width: 100%;
  }

  .clean-hero-copy,
  .clean-hero-copy p:not(.eyebrow),
  .suite-card,
  .home-split,
  .home-pricing {
    max-width: 340px;
  }

  .home-price-cards a {
    grid-template-columns: 1fr;
  }

  .preview-row {
    grid-template-columns: minmax(110px, 1fr) minmax(54px, 0.5fr);
  }

  .preview-row span:nth-child(2),
  .preview-row span:nth-child(3) {
    display: none;
  }
}
