:root {
  --bg: #05070b;
  --bg2: #080d12;
  --panel: #0d141b;
  --panel2: #101923;
  --panel3: #131f2a;
  --text: #f4f7f8;
  --muted: #aab6be;
  --soft: #778792;
  --line: rgba(255,255,255,.11);

  --teal: #20c7ad;
  --cyan: #69cce8;
  --green: #76f2b3;
  --amber: #ffd08a;
  --red: #ff9e9e;

  --shadow: 0 24px 70px rgba(0,0,0,.34);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 80% 0%, rgba(32,199,173,.10), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(105,204,232,.08), transparent 34%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 48%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.58;
}

a { color: inherit; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 22px 60px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: .01em;
}

.brand img {
  width: 58px;
  height: 44px;
  object-fit: contain;
  border-radius: 13px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
  padding: 5px 7px;
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

nav a:hover { color: var(--text); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(32,199,173,.65);
}

h1 {
  font-size: clamp(42px, 6.2vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 0 0 22px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.03;
  letter-spacing: -.05em;
  margin: 0 0 14px;
  text-wrap: balance;
}

h3 {
  letter-spacing: -.025em;
}

.lead,
.section-lead {
  color: #cfdae0;
  font-size: 19px;
  max-width: 850px;
  margin: 0;
}

.note,
.small,
.small-trust {
  color: var(--soft);
  font-size: 13px;
}

.panel,
.card,
.q,
.tier,
.signal-card,
.newsletter-card,
.pulse-card,
.black-card,
.engine-card,
.issue,
.pulse,
.signup-panel,
.signup-box,
.trust-box,
.cta {
  background:
    radial-gradient(circle at 92% 0%, rgba(32,199,173,.08), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.pill,
.tag-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(32,199,173,.12);
  color: #cafff8;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 20px;
  text-decoration: none;
  font-weight: 820;
  border: 1px solid var(--line);
}

.primary {
  background: var(--text);
  color: var(--bg);
}

.secondary {
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.gain,
.good {
  color: var(--green) !important;
  font-weight: 850;
}

.loss {
  color: var(--red) !important;
  font-weight: 850;
}

.warn,
.warning {
  color: var(--amber) !important;
  font-weight: 850;
}

table {
  border-collapse: collapse;
}

.mini-table th,
.sample-table th {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mini-table td,
.sample-table td {
  color: var(--muted);
}

footer {
  margin-top: 82px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--soft);
  font-size: 13px;
}

footer a { color: var(--muted); }

@media (max-width: 760px) {
  .wrap { padding-top: 22px; }

  header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
    gap: 12px;
  }
}

.signup-form {
  display: grid;
  gap: 14px;
}

.signup-form label {
  color: var(--muted);
  font-weight: 750;
}

.signup-form input[type="email"] {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.22);
  color: var(--text);
  font-size: 16px;
  box-sizing: border-box;
}

.signup-form input[type="email"]::placeholder {
  color: rgba(232,238,244,.45);
}

.signup-form button {
  border: 0;
  cursor: pointer;
}

/* Mount Inflection signup / coming-soon pages */
.signup-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(0,210,190,.045));
  padding: 30px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: start;
  box-shadow: 0 20px 70px rgba(0,0,0,.22);
}

.signup-panel h3 {
  margin-top: 0;
}

.signup-form {
  display: grid;
  gap: 14px;
}

.signup-form label {
  color: var(--muted);
  font-weight: 750;
}

.signup-form input[type="email"] {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.24);
  color: var(--text);
  font-size: 16px;
  box-sizing: border-box;
}

.signup-form input[type="email"]::placeholder {
  color: rgba(232,238,244,.45);
}

.signup-form .button,
.signup-form button.button {
  border: 0;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -.01em;
  padding: 16px 22px;
}

.coming-soon-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(0,210,190,.045));
  padding: 30px;
  margin-top: 26px;
  box-shadow: 0 20px 70px rgba(0,0,0,.22);
}

.coming-soon-card h2 {
  margin-top: 0;
  font-size: 26px;
}

.clean-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0,0,0,.18);
}

.clean-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

@media (max-width: 800px) {
  .signup-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .page-actions {
    flex-direction: column;
  }

  .page-actions .button {
    width: 100%;
    justify-content: center;
  }
}

.tier-card-actions {
  margin-top: 22px;
}

.tier-card-actions .button {
  width: 100%;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: 850;
  padding: 14px 18px;
}

nav a {
  white-space: nowrap;
}

@media (max-width: 900px) {
  header {
    gap: 18px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* Tier card alignment pass */
.tier-grid,
.pricing-grid,
.cards-3 {
  align-items: stretch;
}

.tier-card,
.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tier-card ul,
.pricing-card ul {
  flex: 1;
}

.tier-card p:last-of-type,
.pricing-card p:last-of-type {
  margin-bottom: 0;
}

.tier-card-actions {
  margin-top: auto;
  padding-top: 22px;
}

.tier-card-actions .button {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.1;
  padding: 15px 18px;
}

/* If cards use generic .card class on the tiers page */
.tiers-page .card {
  display: flex;
  flex-direction: column;
}

.tiers-page .card .tier-card-actions {
  margin-top: auto;
}

/* Tiers page final alignment pass */
.tiers-page .notice,
.tiers-page .pricing-note,
.tiers-page .callout,
.tiers-page .banner,
.tiers-page .tier-notice {
  text-align: center;
  justify-content: center;
}

.tiers-page .pricing-note,
.tiers-page .tier-notice {
  max-width: 100%;
}

/* Center the specific pricing notice even if it is a generic div/card */
.tiers-page main > section p,
.tiers-page main > section .note {
  text-wrap: pretty;
}

.tiers-page .tier-grid,
.tiers-page .pricing-grid,
.tiers-page .grid {
  align-items: stretch;
}

.tiers-page .tier-card,
.tiers-page .pricing-card,
.tiers-page .card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.tiers-page .tier-card ul,
.tiers-page .pricing-card ul,
.tiers-page .card ul {
  margin-bottom: 22px;
}

/* Keep the "Best for" area and button aligned across all cards */
.tiers-page .tier-card-actions {
  margin-top: auto;
  padding-top: 22px;
}

.tiers-page .tier-card-actions .button {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Normalize tier-card text rhythm */
.tiers-page .card p,
.tiers-page .pricing-card p,
.tiers-page .tier-card p {
  line-height: 1.55;
}

.tiers-page .card li,
.tiers-page .pricing-card li,
.tiers-page .tier-card li {
  line-height: 1.45;
}

/* If the pricing planned notice is the first standalone pill/card */
.tiers-page .content > .note,
.tiers-page .content > .callout,
.tiers-page .content > .card:first-of-type {
  text-align: center;
}

.positioning-card {
  margin-top: 26px;
  border: 1px solid rgba(142,233,246,.22);
  border-radius: 28px;
  padding: 28px;
  background:
    radial-gradient(circle at 92% 0%, rgba(32,199,173,.12), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.070), rgba(255,255,255,.025));
  box-shadow: 0 20px 70px rgba(0,0,0,.22);
}

.positioning-card h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -.045em;
}

.positioning-card p {
  color: var(--muted);
  max-width: 920px;
}

.positioning-card ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.positioning-card li {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text);
  background: rgba(0,0,0,.18);
  font-weight: 750;
  text-align: center;
}

@media (max-width: 900px) {
  .positioning-card ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .positioning-card ul {
    grid-template-columns: 1fr;
  }
}

/* FAQ alignment / decision-making-boundary polish */
.faq-section {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  padding: 24px;
  background:
    radial-gradient(circle at 92% 0%, rgba(32,199,173,.08), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.024));
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -.025em;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-decision-making-boundary {
  margin-bottom: 34px;
}

.faq-decision-making-boundary .faq-item {
  border-color: rgba(142,233,246,.22);
}
