/* sections.css -- expanded as sections are built */

.td-section {
  padding: 88px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.td-section__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--td-yellow);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.td-section__heading {
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .td-section { padding: 56px 20px; }
}

/* ── What You Get ───────────────────────────────────────── */

.td-wyg {
  border-top: 1px solid rgba(245, 240, 230, 0.12);
}

.td-wyg__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 80px 80px;
}

.td-wyg__header {
  max-width: 560px;
  margin-bottom: 56px;
}

.td-wyg__sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.55);
  margin-top: 16px;
}

.td-wyg__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.td-wyg__item {
  padding: 36px 40px 36px 0;
  border-bottom: 1px solid rgba(245, 240, 230, 0.08);
  position: relative;
}

.td-wyg__item:nth-child(odd) {
  border-right: 1px solid rgba(245, 240, 230, 0.08);
  padding-right: 40px;
}

.td-wyg__item:nth-child(even) {
  padding-left: 40px;
  padding-right: 0;
}

.td-wyg__item:nth-child(1),
.td-wyg__item:nth-child(2) {
  border-top: 1px solid rgba(245, 240, 230, 0.08);
}

.td-wyg__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 230, 0.25);
  display: block;
  margin-bottom: 12px;
}

.td-wyg__item-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--td-cream);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.td-wyg__item-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245, 240, 230, 0.55);
}

/* ── Pricing ────────────────────────────────────────────── */

.td-pricing {
  border-top: 1px solid rgba(245, 240, 230, 0.12);
}

.td-pricing__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 80px 80px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}

.td-pricing__sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.55);
  margin-top: 16px;
  margin-bottom: 32px;
  max-width: 360px;
}

.td-pricing__link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--td-yellow);
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 150ms ease;
}

.td-pricing__link:hover { opacity: 1; }

.td-pricing__card {
  border: 1px solid rgba(245, 240, 230, 0.15);
  position: relative;
}

.td-pricing__card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--td-yellow);
}

.td-pricing__tier {
  padding: 32px 36px;
}

.td-pricing__tier-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(245, 240, 230, 0.35);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.td-pricing__tier-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 56px);
  color: var(--td-cream);
  line-height: 1.0;
  margin-bottom: 12px;
}

.td-pricing__tier-per {
  font-size: 0.45em;
  font-weight: 400;
  opacity: 0.5;
  vertical-align: baseline;
}

.td-pricing__tier-note {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.5);
}

.td-pricing__divider {
  height: 1px;
  background: rgba(245, 240, 230, 0.1);
  margin: 0 36px;
}

.td-pricing__footer {
  padding: 24px 36px;
  border-top: 1px solid rgba(245, 240, 230, 0.08);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(245, 240, 230, 0.35);
}

/* ── Final CTA ──────────────────────────────────────────── */

.td-home-cta {
  border-top: 1px solid rgba(245, 240, 230, 0.12);
}

.td-home-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.td-home-cta__heading {
  margin-bottom: 0;
}

.td-home-cta__sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 230, 0.35);
  text-transform: uppercase;
  margin-top: 12px;
}

.td-btn--lg {
  font-size: 15px;
  padding: 14px 32px;
  white-space: nowrap;
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 1024px) {
  .td-pricing__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .td-pricing__sub { max-width: 100%; }
}

@media (max-width: 900px) {
  .td-wyg__inner    { padding: 56px 20px 64px; }
  .td-pricing__inner { padding: 56px 20px 64px; }
  .td-home-cta__inner { padding: 64px 20px; flex-direction: column; align-items: flex-start; }

  .td-wyg__grid { grid-template-columns: 1fr; }

  .td-wyg__item:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
  .td-wyg__item:nth-child(even) {
    padding-left: 0;
  }
  .td-wyg__item:nth-child(2) {
    border-top: none;
  }

  .td-pricing__card { }
  .td-pricing__tier { padding: 28px 24px; }
  .td-pricing__divider { margin: 0 24px; }
  .td-pricing__footer { padding: 20px 24px; }
}
