:root {
  --ink: #172026;
  --muted: #68737d;
  --line: #dfe6eb;
  --paper: #ffffff;
  --soft: #f3f7f8;
  --charcoal: #101820;
  --teal: #0f9f8f;
  --amber: #c98116;
  --blue: #2f6fed;
  --green-soft: #e7f6f3;
  --amber-soft: #fff2df;
  --blue-soft: #ebf2ff;
  --shadow: 0 18px 55px rgba(17, 32, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  height: auto;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  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(16px);
}

.brand,
.main-nav,
.primary-menu {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--charcoal);
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.main-nav,
.primary-menu {
  gap: 22px;
  color: #46515a;
  font-size: 14px;
}

.primary-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-cta,
.primary-menu li:last-child a {
  padding: 9px 14px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 8px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(38px, 7vw, 86px) clamp(18px, 4vw, 56px) 36px;
  background:
    linear-gradient(115deg, rgba(243, 247, 248, 0.94), rgba(255, 255, 255, 0.84)),
    linear-gradient(90deg, #f7fafb, #fff);
}

.hero h1,
.section h2,
.cta h2,
.content-page h1 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 5.4vw, 72px);
}

.hero-subtitle {
  max-width: 660px;
  margin: 22px 0 0;
  color: #4f5d66;
  font-size: clamp(17px, 2vw, 20px);
}

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

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

.button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--charcoal);
  border-radius: 8px;
  font-weight: 800;
}

.button.primary,
.wp-block-button__link {
  color: #fff;
  background: var(--charcoal);
}

.button.secondary {
  color: var(--charcoal);
  background: #fff;
}

.hero-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 9px 11px;
  color: #4a5660;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
}

.hero-stats strong {
  color: var(--ink);
}

.hero-media img {
  width: 100%;
  display: block;
  border: 1px solid rgba(23, 32, 38, 0.15);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(56px, 7vw, 94px) clamp(18px, 4vw, 56px);
}

.band {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2,
.split h2,
.support h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.section-heading p,
.split p,
.support p,
.cta p {
  color: var(--muted);
  font-size: 17px;
}

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

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

.product-card,
.price-card {
  min-width: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-card.featured {
  border-color: rgba(15, 159, 143, 0.45);
  box-shadow: 0 14px 35px rgba(15, 159, 143, 0.12);
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.product-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  font-weight: 900;
}

.product-icon.amber {
  background: var(--amber);
}

.product-icon.blue {
  background: var(--blue);
}

.badge {
  padding: 5px 9px;
  color: #087c71;
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.badge.muted {
  color: #7b5316;
  background: var(--amber-soft);
}

.badge.pro {
  color: #1f55bd;
  background: var(--blue-soft);
}

.product-card h3,
.price-card h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

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

.product-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding-left: 18px;
}

.text-link {
  color: #087c71;
  font-weight: 800;
}

.split,
.support {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.proof-list,
.post-grid {
  display: grid;
  gap: 14px;
}

.proof-list div {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-list span {
  color: var(--muted);
}

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

.post-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.post-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.post-card p {
  color: var(--muted);
}

.price-card.highlighted {
  color: #fff;
  background: var(--charcoal);
  border-color: var(--charcoal);
}

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

.price {
  margin: 12px 0;
  color: var(--ink) !important;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.highlighted .price {
  color: #fff !important;
}

.price span {
  font-size: 14px;
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: var(--soft);
}

tr:last-child td {
  border-bottom: 0;
}

.support {
  background: var(--charcoal);
  color: #fff;
}

.support p {
  color: rgba(255, 255, 255, 0.72);
}

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

.support-grid span,
.support-grid a {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 800;
}

.cta {
  padding: clamp(54px, 7vw, 90px) clamp(18px, 4vw, 56px);
  color: #fff;
  background: #0f3d3a;
}

.cta h2 {
  max-width: 840px;
  font-size: clamp(32px, 4.4vw, 54px);
}

.cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.content-page {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) 0;
}

.content-page h1 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 54px);
}

.entry-content {
  color: #3f4d56;
  font-size: 17px;
}

.site-footer {
  padding: 0 clamp(18px, 4vw, 56px) 24px;
  color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at 20% 0%, rgba(15, 159, 143, 0.22), transparent 34%),
    var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(340px, 1.2fr) minmax(230px, 0.75fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
  padding: clamp(38px, 6vw, 70px) 0 0;
}

.footer-brand {
  max-width: 430px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.footer-logo img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.footer-brand p,
.footer-column p,
.footer-bottom p {
  margin: 14px 0 0;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-badges span {
  padding: 7px 10px;
  color: #dff8f4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.footer-plugin-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.footer-plugin-panel h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-plugin-link {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 10px;
  border-radius: 8px;
}

.footer-plugin-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.footer-plugin-link strong,
.footer-plugin-link em {
  display: block;
}

.footer-plugin-link strong {
  color: #fff;
  font-size: 14px;
}

.footer-plugin-link em {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-style: normal;
}

.footer-icon {
  display: grid;
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  max-height: 42px;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
}

.site-footer .footer-icon > svg,
.site-footer .footer-contact-button > svg {
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  min-width: 22px;
  max-width: 22px;
  min-height: 22px;
  max-height: 22px;
  fill: currentColor;
  overflow: hidden;
}

.site-footer .footer-icon > svg path,
.site-footer .footer-contact-button > svg path {
  fill: currentColor;
}

.footer-icon.teal {
  color: #dff8f4;
  background: rgba(15, 159, 143, 0.22);
}

.footer-icon.amber {
  color: #fff0d8;
  background: rgba(201, 129, 22, 0.26);
}

.footer-icon.blue {
  color: #e4edff;
  background: rgba(47, 111, 237, 0.24);
}

.footer-icon.slate {
  color: #edf1f5;
  background: rgba(255, 255, 255, 0.14);
}

.footer-side {
  display: grid;
  gap: 18px;
}

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

.footer-column h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-column a:hover {
  color: #fff;
}

.footer-contact-card {
  padding: 18px;
  background: #fff;
  border-radius: 8px;
  color: var(--ink);
}

.footer-contact-card h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.footer-contact-card p {
  margin: 10px 0 16px;
  color: #5f6c75;
  font-size: 14px;
}

.footer-contact-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
  max-width: 680px;
}

@media (max-width: 920px) {
  .hero,
  .split,
  .support {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-grid,
  .pricing-grid,
  .pricing-grid.four,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav,
  .primary-menu {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .main-nav a,
  .primary-menu a {
    padding: 8px 0;
  }

  .nav-cta,
  .primary-menu li:last-child a {
    padding: 8px 12px !important;
  }

  .hero h1 {
    font-size: 36px;
  }

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

  .site-footer {
    padding-top: 36px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
