* {
  box-sizing: border-box;
}

:root {
  --ink: #10231f;
  --muted: #52605c;
  --paper: #f7fbf8;
  --card: #ffffff;
  --line: #dbe7e2;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --rose: #be3455;
  --gold: #b28732;
  --shadow: 0 22px 55px rgba(16, 35, 31, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(190, 52, 85, 0.08) 44%, rgba(178, 135, 50, 0.12)),
    var(--paper);
}

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

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

h1,
h2,
h3 {
  letter-spacing: 0;
  overflow-wrap: anywhere;
  line-height: 1.08;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

code {
  border-radius: 6px;
  background: rgba(16, 35, 31, 0.07);
  padding: 2px 5px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(219, 231, 226, 0.9);
  background: rgba(247, 251, 248, 0.92);
  backdrop-filter: blur(14px);
}

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

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-mark {
  font-size: 20px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-weight: 700;
  color: #27413b;
}

.nav a {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav a:hover {
  background: rgba(15, 118, 110, 0.09);
}

.nav-cta {
  background: var(--teal);
  color: #ffffff;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 56px 0;
}

.hero-copy {
  max-width: 760px;
}

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

h1 {
  font-size: 70px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 21px;
}

.lede {
  max-width: 680px;
  margin-top: 22px;
  font-size: 19px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.cta-row.center {
  justify-content: center;
}

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

.button.primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 118, 110, 0.25);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-row span {
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 10px;
  color: #26443d;
  font-size: 14px;
  font-weight: 700;
}

.tenant-preview {
  overflow: hidden;
  border: 1px solid rgba(219, 231, 226, 0.95);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.preview-bar {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: #eef7f4;
}

.preview-bar span {
  width: 10px;
  height: 10px;
  border-radius: 8px;
  background: var(--teal);
}

.preview-bar span:nth-child(2) {
  background: var(--gold);
}

.preview-bar span:nth-child(3) {
  background: var(--rose);
}

.preview-body {
  padding: 24px;
}

.preview-label {
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tenant-url {
  margin-top: 10px;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 24px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

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

.sync-grid div {
  min-height: 90px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(178, 135, 50, 0.12));
  padding: 14px;
  font-weight: 800;
}

.preview-note {
  margin-top: 20px;
}

.section {
  padding: 74px 0;
}

.section-header {
  max-width: 780px;
  margin-bottom: 28px;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card,
.price-card,
.split,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.card {
  padding: 22px;
}

.card p {
  margin-top: 12px;
}

.pricing {
  scroll-margin-top: 90px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.price-card.featured {
  border-color: rgba(15, 118, 110, 0.58);
  background: linear-gradient(180deg, #ffffff, #eff9f6);
}

.price {
  color: var(--ink);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.price-card ul {
  flex: 1;
  margin: 4px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.badge {
  align-self: start;
  border-radius: 8px;
  background: rgba(190, 52, 85, 0.12);
  padding: 6px 8px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  padding: 28px;
}

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

.stack-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.stack-list p {
  margin-top: 8px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.client-grid div {
  min-height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  padding: 14px;
}

.final-cta {
  padding: 40px;
  text-align: center;
}

.final-cta p {
  max-width: 680px;
  margin: 14px auto 0;
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
  }

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

  .hero {
    min-height: auto;
    padding: 44px 0;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }
}

@media (max-width: 560px) {
  main,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .nav a {
    padding: 9px 10px;
  }

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

  .button {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .tenant-url {
    font-size: 18px;
  }
}
