.pricing-header {
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 229, 0.92);
  backdrop-filter: blur(16px);
}

.pricing-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-header nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.pricing-header nav a:hover { color: var(--potato); }

.pricing-hero {
  position: relative;
  padding: clamp(84px, 10vw, 150px) 0 120px;
  overflow: hidden;
}

.pricing-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(to right, rgba(20, 32, 22, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 32, 22, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

.pricing-intro,
.offer-layout { position: relative; }

.pricing-eyebrow {
  margin: 0 0 20px;
  color: var(--forest);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pricing-intro h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(62px, 9vw, 124px);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.pricing-intro h1 em,
.pricing-boundary h2 em {
  color: var(--forest);
  font-family: var(--serif);
  font-weight: 400;
}

.pricing-lede {
  max-width: 680px;
  margin: 38px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 23px);
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 72px);
  margin-top: 80px;
  align-items: start;
}

.offer-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--ink);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.offer-topline {
  display: flex;
  justify-content: space-between;
  color: var(--forest);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.offer-price {
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 38px 0 22px;
}

.offer-price strong {
  font-size: clamp(72px, 8vw, 108px);
  line-height: 0.75;
  letter-spacing: -0.08em;
}

.offer-price span { color: var(--muted); }
.offer-card p { color: var(--ink-soft); }
.offer-card small { display: block; margin-top: 17px; color: var(--muted); }

.pricing-button {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding: 16px 19px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--paper);
  background: var(--forest);
  font-weight: 800;
}

.pricing-button:hover { background: var(--ink); }

.offer-details h2,
.pricing-boundary h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.inclusion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line-strong);
}

.inclusion-grid article { padding: 28px 28px 28px 0; }
.inclusion-grid article:nth-child(even) { padding-left: 28px; border-left: 1px solid var(--line); }
.inclusion-grid article:nth-child(n+3) { border-top: 1px solid var(--line); }
.inclusion-grid span { color: var(--potato); font-family: var(--mono); font-size: 10px; font-weight: 900; }
.inclusion-grid h3 { margin: 12px 0 8px; font-size: 20px; }
.inclusion-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.pricing-boundary {
  padding: 110px 0;
  color: var(--paper);
  background: var(--forest-dark);
}

.boundary-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
}

.pricing-boundary .pricing-eyebrow { color: var(--acid); }
.pricing-boundary h2 em { color: var(--acid); }
.boundary-copy { color: rgba(255, 253, 246, 0.78); font-size: 17px; }
.boundary-copy li + li { margin-top: 10px; }
.boundary-copy a { display: inline-block; margin-top: 24px; color: var(--acid); font-weight: 800; }

.pricing-footer { padding: 26px 0; color: var(--paper); background: var(--ink); }
.pricing-footer div { display: flex; justify-content: space-between; gap: 24px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; }

@media (max-width: 760px) {
  :root { --shell: calc(100% - 30px); }
  .brand-copy span { display: none; }
  .offer-layout,
  .boundary-layout { grid-template-columns: 1fr; }
  .inclusion-grid { grid-template-columns: 1fr; }
  .inclusion-grid article:nth-child(even) { padding-left: 0; border-left: 0; }
  .inclusion-grid article:nth-child(n+2) { border-top: 1px solid var(--line); }
  .pricing-footer div { flex-direction: column; }
}
