/* ── style-world.css — Proxacle World (human) page ─────────────────────────── */
:root {
  --navy:   #1F2D5C;
  --red:    #C0392B;
  --gold:   #C9A84C;
  --cream:  #F5F0E8;
  --dark:   #1A1A1A;
  --muted:  #6B6560;
  --light-blue: #EEF4FB;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

/* ── Utility ────────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

img { max-width: 100%; height: auto; display: block; }

/* ── Retro double-rule section label ────────────────────────────────────────── */
.section-label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0.6rem 0;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  height: 4px;
  margin: 4px 0;
}

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn:hover { background: var(--red); }
.btn-red { background: var(--red); }
.btn-red:hover { background: #a93226; }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1rem; }

/* ── Navigation ─────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2px solid var(--red);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-nav .nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.site-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav .nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav .nav-links a:hover { color: var(--red); }
.site-nav .nav-back {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  margin-right: auto;
  margin-left: 0;
  padding-right: 2rem;
}
.site-nav .nav-back:hover { color: var(--navy); }

/* ── Section base ───────────────────────────────────────────────────────────── */
section { padding: 5rem 2rem; }

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION 1 — HERO
───────────────────────────────────────────────────────────────────────────── */
#hero {
  background: var(--cream);
  text-align: center;
}
#hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-style: italic;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.15;
}
#hero .subheadline {
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
}
#hero .hero-cta { margin-bottom: 3rem; }
#hero .hero-img { margin: 0 auto; max-width: 1200px; }

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION 2 — WHY SPLIT
───────────────────────────────────────────────────────────────────────────── */
#why {
  background: var(--cream);
  filter: brightness(0.97);
}
#why .why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
#why h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}
#why p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--dark);
}
/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  border-radius: 8px;
  overflow: hidden;
}
.compare-table thead tr {
  background: var(--navy);
  color: var(--cream);
}
.compare-table thead th {
  padding: 0.75rem 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: left;
}
.compare-table tbody tr:nth-child(even)  { background: var(--light-blue); }
.compare-table tbody tr:nth-child(odd)   { background: #fff; }
.compare-table tbody td {
  padding: 0.6rem 1rem;
  color: var(--dark);
  border: none;
}
.compare-table tbody td:first-child { color: var(--muted); }

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION 3 — BUILD LAYERS / HOW IT WORKS
───────────────────────────────────────────────────────────────────────────── */
#how {
  background: #fff;
  text-align: center;
}
#how .how-img { margin: 2rem auto 0; max-width: 600px; }

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION 4 — TIER TABLE / PRICING
───────────────────────────────────────────────────────────────────────────── */
#pricing { background: var(--cream); }
#pricing .tier-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.tier-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(31,45,92,0.1);
}
.tier-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.tier-card .tier-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.tier-card .tier-tagline {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 0.75rem;
  min-height: 2.4em;
}
.tier-card .tier-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.tier-card hr { width: 100%; border: none; border-top: 1px solid rgba(31,45,92,0.12); margin-bottom: 1rem; }
.tier-card ul { list-style: none; text-align: left; width: 100%; }
.tier-card ul li {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--dark);
  padding-left: 1.4em;
  position: relative;
}
.tier-card ul li::before { position: absolute; left: 0; }
.tier-card ul li.yes::before { content: '✓'; color: var(--navy); font-weight: 700; }
.tier-card ul li.no::before  { content: '–'; color: var(--muted); }
.tier-card ul li.no { color: var(--muted); }

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION 5 — ONBOARDING STEPS / GET STARTED
───────────────────────────────────────────────────────────────────────────── */
#start { background: #fff; text-align: center; }
#start h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 2rem;
}
#start .start-img { margin: 0 auto 2.5rem; max-width: 1200px; }

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION 6 — CLOSING CTA
───────────────────────────────────────────────────────────────────────────── */
#closing {
  background: var(--navy);
  text-align: center;
}
#closing .closing-img { margin: 0 auto 2.5rem; max-width: 1200px; }
#closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}
#closing .closing-sub {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 400;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION 7 — DEMO
───────────────────────────────────────────────────────────────────────────── */
#demo { background: var(--cream); text-align: center; }
#demo h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 1.5rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION 8 — FOOTER
───────────────────────────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 3rem 2rem 1.5rem;
  color: var(--cream);
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 1.5rem;
}
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: 600;
}
.footer-brand .tagline {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.6);
  margin-top: 0.35rem;
}
.footer-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.75rem;
  color: rgba(245,240,232,0.45);
  text-align: center;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 3rem 1.25rem; }
  #why .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  #pricing .tier-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  #pricing .tier-grid { grid-template-columns: 1fr; }
}
