/* ============================================================
   Peak Draw — Landing Page Styles
   Plain CSS, no frameworks. Mobile-first, readable at any size.
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --brown:      #3b2a1a;
  --brown-dark: #2c1810;
  --stats-bg:   #1e1208;
  --tan:        #c9a84c;
  --sage:       #6b7c5c;
  --sage-light: #8fa07e;
  --cream:      #f5f0e8;
  --white:      #ffffff;
  --text:       #2c2218;
  --muted:      #6b5f52;
  --border:     #d9cfc2;
  --error:      #c0392b;
  --success:    #2e7d32;

  --font-body:  'Georgia', 'Times New Roman', serif;
  --font-ui:    system-ui, -apple-system, 'Segoe UI', sans-serif;
  --max-width:  960px;
  --radius:     8px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

/* ── Section dividers ── */

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--tan);
  margin: 0 auto;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Type system rule:
   - Section headlines (h1, h2, .launch-heading, .signup-heading): serif (--font-body), weight 600.
   - Display quote (.visual-break-quote) + hero h1: serif, lighter weight, as deliberate display exceptions.
   - Sub-headings, labels, buttons, nav, stats, FAQ questions: sans (--font-ui).
   Keep new headings consistent with this split. */
h2 {
  font-family: var(--font-body);
  font-size: 34px;
  font-weight: 600;
  color: #2c1810;
}

/* ── Animations ── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brown-dark);
  border-bottom: 1px solid var(--tan);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--tan);
}

.btn-early-access {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brown-dark);
  background: var(--tan);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-early-access:hover {
  background: #d9bb6a;
}

/* ── Logo lockup ── */

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeUp 0.5s ease both;
}

.logo-lockup-sm {
  animation: none;
}

.logo-text {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--tan);
  line-height: 1;
}

.logo-lockup-sm .logo-text {
  font-size: 0.8125rem;
  letter-spacing: 0.26em;
  color: #ffffff;
  text-shadow: none;
}

.logo-lockup-sm svg {
  opacity: 0.9;
}

.logo-lockup-hero {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.logo-lockup-hero .logo-text {
  font-size: 18px;
  letter-spacing: 0.35em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */

.hero {
  background-color: var(--brown-dark);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)),
    url('/static/images/hero.jpg');
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero .container {
  padding-top: 160px;
}

.hero.hero-small {
  background-attachment: scroll;
  min-height: 0;
  padding: 2.5rem 0 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  animation: fadeUp 0.5s ease 0.1s both;
}

.subhead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #e0d8cc;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
  animation: fadeUp 0.5s ease 0.2s both;
}

.hero-hook {
  font-style: italic;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  margin: 4px auto 8px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
  animation: fadeUp 0.5s ease 0.15s both;
}

/* Hero inline signup */

.hero-signup {
  margin-top: 2rem;
  animation: fadeUp 0.5s ease 0.3s both;
}

.hero-signup-label {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: #c8bfb4;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.hero-signup-form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.hero-signup-form input[type="email"] {
  flex: 1 1 220px;
  font-family: var(--font-ui);
  font-size: 1rem;
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-signup-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.hero-signup-form input[type="email"]:focus {
  border-color: var(--tan);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.5);
}

.btn-submit-hero {
  background: var(--tan);
  color: var(--brown-dark);
  padding: 0.7rem 1.5rem;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 0;
}

.btn-submit-hero:hover {
  background: #d9bb6a;
}

/* Hero thank-you */

.thank-you-hero {
  animation: fadeUp 0.5s ease 0.1s both;
}

.thank-you-hero .ty-icon {
  background: var(--tan);
  color: var(--brown-dark);
}

.thank-you-hero h2 {
  color: var(--white);
  font-size: 1.5rem;
}

.thank-you-hero p {
  color: #ffffff;
}

/* ════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════ */

.stats-bar {
  background: var(--stats-bg);
  padding: 50px 1.25rem;
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0 2rem;
}

.stat-number {
  font-family: var(--font-ui);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--tan);
  line-height: 1;
  /* Reserve a consistent two-line height so a wrapping number (e.g.
     "Launching With Wyoming Elk") keeps every stat's label aligned. */
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-number-sm {
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.4;
}

.stat-label-sm {
  font-size: 12px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   WHAT YOU GET
   ════════════════════════════════════════════ */

.what-you-get {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #faf8f4 0%, #f5f0e8 100%);
  border-bottom: 2px solid var(--sage);
}

.what-you-get .container {
  max-width: 1100px;
}

.what-you-get h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--sage);
  border-top: 3px solid var(--tan);
  border-radius: var(--radius);
  padding: 36px;
  text-align: left;
  min-height: 200px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-num {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-family: var(--font-ui);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: var(--brown);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}

.card h3 {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--brown);
  position: relative;
}

.card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
  position: relative;
}

/* ════════════════════════════════════════════
   LAUNCH / MONTANA SECTION
   ════════════════════════════════════════════ */

.launch {
  padding: 4.375rem 0;
  background: var(--sage);
  color: var(--white);
  border-bottom: 2px solid #4e5e42;
}

.launch-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.launch-heading {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.launch-body {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.launch-body strong {
  color: var(--white);
  font-weight: 600;
}

/* Roadmap */

.roadmap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.roadmap-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  color: var(--tan);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.roadmap-text {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.roadmap-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.check-mark {
  color: var(--tan);
  font-weight: 700;
  margin-right: 6px;
}

.roadmap-later {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* ════════════════════════════════════════════
   VISUAL BREAK
   ════════════════════════════════════════════ */

.visual-break {
  height: 380px;
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.visual-break-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 28px;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.75rem;
}

.visual-break-about {
  height: auto;
  min-height: 420px;
  padding: 40px 20px;
}

.visual-break-about-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto 0.75rem;
  text-align: center;
}

@media (max-width: 600px) {
  .visual-break { background-attachment: scroll; }
}

/* ════════════════════════════════════════════
   FOUNDER NOTE
   ════════════════════════════════════════════ */

.founder-note {
  align-self: start;
  padding: 36px 0;
}

.founder-note-inner {
  max-width: 580px;
  line-height: 1.7;
}

.founder-note-marker {
  width: 60px;
  height: 2px;
  background: var(--tan);
  margin: 0 0 1.25rem;
}

.founder-note h2 {
  font-size: 28px;
  color: var(--brown-dark);
  text-align: left;
  margin-bottom: 1.25rem;
}

.founder-note p {
  font-size: 15.5px;
  color: var(--text);
  margin-bottom: 0.9rem;
}

.founder-signature {
  text-align: left;
  margin-top: 1.5rem;
}

.founder-name {
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.founder-signature-image {
  display: block;
  width: min(210px, 80%);
  height: auto;
  margin: 0 0 0.4rem;
}

.founder-title {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
}

/* ════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════ */

.faq {
  background: var(--cream);
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 40px;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
  .faq-photo-left, .faq-photo-right {
    display: none;
  }
}

.faq-photo-left,
.faq-photo-right {
  position: sticky;
  top: 100px;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.faq-photo-left {
  background-image: url('/static/images/mule-deer.jpg');
  background-position: center 45%;
}
.faq-photo-right {
  background-image: url('/static/images/bighorn-sheep.jpg');
  background-position: center 40%;
}

.faq-content {
  padding: 0;
}

.faq h2 {
  margin-bottom: 2.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  padding: 28px 0.5rem;
  border-top: 1px solid #e8e0d4;
  transition: background 0.2s ease;
  border-radius: var(--radius);
  margin: 0 -0.5rem;
}

.faq-item:first-child {
  border-top: none;
}

.faq-item:hover {
  background: rgba(107, 124, 92, 0.05);
}

.faq-item-last {
  border-bottom: none;
}

.faq-q {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.faq-a {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ════════════════════════════════════════════
   SIGNUP FORM
   ════════════════════════════════════════════ */

.signup {
  padding: 6rem 0 7rem;
  background: var(--cream);
  border-top: 3px solid var(--sage);
}

.signup .signup-layout {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 520px);
  gap: 64px;
  align-items: start;
}

.signup-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  padding: 48px;
}

.signup-heading {
  font-family: var(--font-body);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.75rem;
  text-align: center;
  line-height: 1.25;
}

.signup-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.02em;
}

.req {
  color: var(--error);
}

.field input,
.field select {
  font-family: var(--font-ui);
  font-size: 15px;
  padding: 14px 16px;
  border: 1.5px solid #d4c9b8;
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus {
  border-color: #c9a84c;
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.35);
}

.field select.placeholder-select {
  color: #9ca3af;
}

.field select:not(.placeholder-select) {
  color: #2c1810;
}

select option:not([disabled]) {
  color: #2c1810;
}
select option[disabled] {
  color: #aaa;
}

.btn-submit {
  margin-top: 0.5rem;
  padding: 16px 32px;
  background: var(--brown);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.03em;
  width: 100%;
}

.btn-submit:hover {
  background: #52392a;
}

/* Flash messages */

.flash {
  padding: 16px 24px;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.flash-error {
  background: #fde8e6;
  color: var(--error);
  border: 1px solid #f5c0bb;
}

.flash-success {
  background-color: #2c4a1e;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 24px;
  border-radius: 8px;
  border-left: 4px solid #c9a84c;
  display: block;
  margin: 16px auto;
  max-width: 480px;
  text-align: center;
}

/* Confirmation box shown after successful signup (hero compact form and bottom full form) */

.thank-you-hero,
.signup .thank-you {
  background-color: #2c4a1e;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 24px;
  border-radius: 8px;
  border-left: 4px solid #c9a84c;
  display: block;
  margin: 16px auto;
  max-width: 480px;
  text-align: center;
}

.signup .thank-you .ty-icon {
  background: #c9a84c;
  color: #2c1810;
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.signup .thank-you h2 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.signup .thank-you p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

/* Thank-you state */

.thank-you {
  text-align: center;
  padding: 2rem 0;
}

.ty-icon {
  width: 60px;
  height: 60px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
}

.thank-you h2 {
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.thank-you p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */

footer {
  background: var(--brown-dark);
  border-top: 1px solid var(--tan);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-link {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--tan);
}

.footer-link-fake {
  cursor: pointer;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1rem 0;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ════════════════════════════════════════════
   ADMIN / SIGNUPS PAGE
   ════════════════════════════════════════════ */

.admin {
  padding: 3rem 0 5rem;
}

.back-link {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--sage);
  text-decoration: none;
  margin-bottom: 2rem;
}

.back-link:hover {
  text-decoration: underline;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
}

.admin-export {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  background: var(--sage);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.admin-export:hover {
  background: var(--brown);
}

.admin-logout {
  color: var(--muted);
  text-decoration: none;
}

.admin-logout:hover {
  color: var(--error);
}

.table-wrap {
  overflow-x: auto;
}

.signups-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 0.9rem;
}

.signups-table th,
.signups-table td {
  text-align: left;
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--border);
}

.signups-table th {
  background: var(--brown);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.signups-table tr:hover td {
  background: #f0ebe0;
}

.no-signups {
  font-family: var(--font-ui);
  color: var(--muted);
  font-style: italic;
  padding: 2rem 0;
}

/* ════════════════════════════════════════════
   PRICING PAGE
   ════════════════════════════════════════════ */

.pricing-hero {
  background: var(--cream);
  padding: 7rem 0 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.pricing-title {
  margin-bottom: 1.25rem;
}

.pricing-intro {
  max-width: 680px;
  margin: 0 auto;
}

.pricing-intro p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
}

.pricing {
  background: var(--cream);
  padding: 3rem 0 4rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--tan);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* The live tier is the most prominent card on the page. */
.pricing-card-active {
  border-top: 3px solid var(--sage);
  border-left: 3px solid var(--sage);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
}

.pricing-card-head {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

.founding-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-dark);
  background: var(--tan);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.85rem;
}

.pricing-name {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.6rem;
}

.status-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
}

.status-badge-live {
  color: var(--white);
  background: var(--success);
}

.status-badge-soon {
  color: var(--muted);
  background: var(--cream);
  border: 1px solid var(--border);
}

.pricing-price {
  margin: 1rem 0 0.6rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.price-struck {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--muted);
}

.price-free {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--success);
}

/* Plain (non-struck) price for coming-soon tiers — normal weight, brand color. */
.price-plain {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brown);
}

.pricing-scope {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
}

.pricing-detail {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

/* Bulleted tier descriptions — body text size, brand text color, modest indent.
   flex-grow keeps the CTA pinned to the bottom of the card like .pricing-detail did. */
.pricing-bullets {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.pricing-bullets ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.pricing-bullets li {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.pricing-bullets li:last-child {
  margin-bottom: 0;
}

.pricing-cta {
  display: block;
  text-align: center;
  text-decoration: none;
}

/* Non-actionable CTA for coming-soon tiers. Full-color card, muted button. */
.pricing-cta-disabled {
  background: var(--border);
  color: var(--muted);
  cursor: default;
  box-shadow: none;
}

.pricing-cta-disabled:hover {
  background: var(--border);
  transform: none;
  box-shadow: none;
}

.signup-card-centered {
  max-width: 560px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */

@media (max-width: 768px) {
  .what-you-get .container { max-width: 100%; }
  .cards { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .pricing-hero { padding: 5.5rem 0 2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; align-items: center; gap: 2rem; }
  .stat-divider { width: 48px; height: 1px; }
  .site-nav-links { gap: 0.75rem; }
  .nav-link { display: none; }  /* hide text links on small screens, keep CTA */
  .signup .signup-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 620px;
  }
  .founder-note {
    padding: 0 0 0.5rem;
  }
  .founder-note-inner {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 0 2.5rem; background-attachment: scroll; }
  .hero .container { padding-top: 110px; }
  .launch-pills { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .signup-heading { font-size: 1.75rem; }
}

/* Small phones (iPhone-class, ~375px). Tighten oversized desktop padding so
   sections breathe instead of squeezing content into a narrow column. */
@media (max-width: 480px) {
  h2 { font-size: 1.6rem; }
  .hero .container { padding-top: 96px; }
  .what-you-get { padding: 3.5rem 0 3rem; }
  .card { padding: 28px 24px; }
  .card-num { font-size: 56px; }
  .launch { padding: 3.25rem 0; }
  .visual-break-quote { font-size: 22px; }
  .visual-break-about-text { font-size: 16px; line-height: 1.8; }
  .signup { padding: 3.5rem 0 4rem; }
  .signup .signup-layout { padding: 0 20px; }
  .signup-card { padding: 28px 20px; }
  .founder-note h2 { font-size: 1.6rem; }
  .founder-note p { font-size: 15px; }
  .signup-heading { font-size: 1.6rem; }
  .faq-wrapper { padding: 48px 18px; }
}
