/* Landing page — the marketing view in index.html, shown to signed-out
   visitors only. Shares the same design tokens as the rest of the app
   (defined in app.css): --panel, --panel-2, --field, --gold, --cream,
   --dim, --mono, --display, --body, --r. */

.lp-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--panel-2);
}

.lp-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 56px;
  text-align: center;
}

.lp-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.lp-h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 5.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--cream);
}

.lp-h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(24px, 3.4vw, 32px);
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--cream);
  text-align: center;
}

.lp-sub {
  font-size: 17px;
  color: #cfcbc3;
  max-width: 52ch;
  margin: 0 auto;
}
.lp-sub--tight { max-width: 56ch; }

.lp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 30px 0 0;
}

.lp-note {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--dim);
}

.lp-art {
  display: block;
  max-width: 100%;
  margin: 48px auto 0;
  border-radius: var(--r);
}

.lp-band {
  border-top: 1px solid var(--panel-2);
  padding: 56px 24px;
}

.lp-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.lp-item {
  background: var(--panel);
  border: 1px solid var(--panel-2);
  border-radius: 8px;
  padding: 24px 20px;
}

.lp-item h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--cream);
  margin: 0 0 8px;
}

.lp-item p {
  font-size: 13.5px;
  color: var(--dim);
  margin: 0;
  line-height: 1.55;
}

.lp-foot {
  border-top: 1px solid var(--panel-2);
  padding: 32px 24px 44px;
}

.lp-foot-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
  text-align: center;
}

.lp-foot-a {
  text-align: center;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .lp-three { grid-template-columns: 1fr; }
}

/* --- pricing tiers ------------------------------------------------------ */

.lp-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 40px auto 0;
}

.lp-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--panel-2);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: left;
}

.lp-tier--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.lp-tier-flag {
  position: absolute;
  top: -11px;
  left: 20px;
  background: var(--gold);
  color: #1a1a1a;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}

.lp-tier-name {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 10px;
}

.lp-tier-amount {
  font-family: var(--display);
  font-weight: 600;
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 4px;
}
.lp-tier-amount em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--dim);
  margin-left: 2px;
}

.lp-tier-range {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
  margin-bottom: 18px;
}

.lp-tier-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13.5px;
  color: #cfcbc3;
}
.lp-tier-list li {
  padding: 6px 0;
  border-top: 1px solid var(--panel-2);
}
.lp-tier-list li:first-child { border-top: 0; }

.lp-tiers-cta {
  text-align: center;
  margin-top: 32px;
}
.lp-tiers-cta .lp-note {
  display: block;
  margin-top: 10px;
}

/* --- custom build section, card grid ------------------------------------
   Explicitly non-interactive: no cursor:pointer, no hover-lift. These
   are informational tiles, not buttons. */

.lp-custom {
  padding: 76px 24px;
  border-top: 1px solid var(--panel-2);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.lp-custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0;
  text-align: left;
}

.lp-custom-card {
  background: var(--panel);
  border: 1px solid var(--panel-2);
  border-radius: 8px;
  padding: 20px;
}

.lp-custom-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin: 0 0 8px;
}

.lp-custom-card p {
  font-size: 13.5px;
  color: var(--dim);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .lp-tiers { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .lp-custom-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .lp-tiers { grid-template-columns: 1fr; }
  .lp-tier--featured { order: -1; }
}

@media (max-width: 480px) {
  .lp-custom-grid { grid-template-columns: 1fr; }
}

/* --- separated tier note --------------------------------------------
   Was one crammed line under the CTA. "No card required" answers the
   trial objection right at the button; the tier note is a separate,
   quieter fact for after someone's already decided to click. */

.lp-tiers-note {
  max-width: 46ch;
  margin: 14px auto 0;
  font-size: 13px;
  color: var(--dim);
  line-height: 1.5;
}
