:root {
  --ink: #111111;
  --muted: #5c6470;
  --soft: #f6f8f5;
  --panel: #ffffff;
  --line: #d8dfdc;
  --brand: #cdff00;
  --green: #17362d;
  --green-soft: #f3faf6;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  --font-ui: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-brand: Roboto, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: var(--font-ui);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 42px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(11, 16, 14, 0.86);
  color: #fff;
  backdrop-filter: blur(14px);
}

.site-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-brand);
  font-size: 1.48rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.site-brand img,
.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--brand);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.nav a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
}

.nav a[aria-current="page"],
.nav a:hover {
  background: rgba(255, 255, 255, 0.17);
}

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

.hero { max-width: 780px; }

.eyebrow {
  margin: 0 0 8px;
  color: #4a5563;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #111111;
  font-size: clamp(2.1rem, 7vw, 3.65rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.lede {
  margin: 16px 0 0;
  color: #425466;
  font-size: 1.04rem;
  line-height: 1.7;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  color: #425466;
  font-size: 0.84rem;
  font-weight: 700;
}

.meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 6px 10px;
}

.sections,
.plans {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.section,
.plan,
.notice {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 18px;
}

.plan.featured {
  border-color: #88b8a5;
  background: var(--green-soft);
}

.plan.agency {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.plan-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.price {
  text-align: right;
  white-space: nowrap;
}

.price strong {
  display: block;
  color: inherit;
  font-size: 1.08rem;
}

.price span {
  display: block;
  color: #526170;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agency .price span { color: #b9d2c7; }

h2,
h3 {
  margin: 0;
  color: var(--green);
  font-size: 1rem;
  line-height: 1.3;
}

.agency h2,
.agency h3 { color: #fff; }

p {
  margin: 8px 0 0;
  color: #425466;
}

.agency p,
.agency li { color: #d7e6df; }

ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: #1f3442;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 700;
}

.button.primary {
  background: var(--brand);
  color: #111111;
}

.button.secondary {
  border: 1px solid #b7c8c1;
  background: #fff;
  color: var(--green);
}

footer {
  border-top: 1px solid #dfe5e8;
  background: #fff;
  color: #425466;
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-size: 0.86rem;
}

.footer-meta a {
  color: #17362d;
  font-weight: 700;
}

@media (max-width: 760px) {
  .topbar,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav { flex-wrap: wrap; }
  .plan-head { flex-direction: column; }
  .price { text-align: left; }
}
