/* Font import lives at the top of app.css (single @import, all weights the
   app needs) so the app shell doesn't fetch Barlow Condensed/body-font
   twice from two separate stylesheets. --font-body here is a fallback
   name only, used if this file is ever loaded without app-premium.css. */
:root {
  --charcoal: #1E1E1E;
  --amber: #D7FF00;
  --steel-white: #FFFFFF;
  --grey-mid: #6B6B6B;
  --grey-light: #F4F4F4;
  --font-head: 'Poppins', 'Inter', sans-serif; /* 10.09.26 Louise: whole app to Poppins, Barlow Condensed retired */
  --font-body: 'Poppins', 'Inter', sans-serif;
  --max-width: 1100px;
}

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

/* Nothing here ever stopped the page from panning sideways — any 1px of
   overflow anywhere (a border, a shadow, an SVG's own intrinsic size) let
   the whole document drag left/right. The fixed-position dock and bottom
   tab bar are pinned to the real screen edges regardless (position:fixed
   ignores scroll offset), so a horizontal drag looked like the content
   sliding out from under them — exactly what showed up as a black gutter
   on a real phone. Locking this at the root, once, for every screen. */
html, body { overflow-x: hidden; width: 100%; overscroll-behavior-x: none; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--steel-white);
  line-height: 1.5;
}

h1, h2, h3, .headline {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--charcoal);
}

a { color: var(--charcoal); }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / nav */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--grey-light);
}

.site-header .logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav .cta-btn {
  background: var(--amber);
  color: var(--steel-white);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
}

/* Hero */
.hero {
  background: var(--charcoal);
  color: var(--steel-white);
  padding: 80px 24px;
  text-align: center;
}

.hero h1 {
  color: var(--steel-white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 900px;
  margin: 0 auto 20px;
}

.hero .subhead {
  color: #D8D8D8;
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto 32px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--amber);
  color: var(--steel-white);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* Sections — the storefront's 64px section padding was removed from this
   copy on 15.09.26: every <section> in the app sets its own padding, and
   the global rule only ever leaked blank space into grouped panels. */

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-head h2 { font-size: 2rem; margin-bottom: 12px; }
.section-head p { color: var(--grey-mid); font-size: 1.05rem; }

/* Roster grid */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.roster-card {
  border: 1px solid var(--grey-light);
  border-radius: 6px;
  padding: 24px;
}

.roster-card h3 {
  font-size: 1.3rem;
  color: var(--amber);
  margin-bottom: 8px;
}

.roster-card p { color: var(--charcoal); font-size: 0.95rem; }

/* Proof strip */
.proof-strip {
  background: var(--grey-light);
  text-align: center;
  padding: 48px 24px;
}

.proof-strip .stat {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--amber);
}

.proof-strip p { max-width: 600px; margin: 12px auto 0; color: var(--charcoal); }

.proof-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 28px auto 0;
  text-align: left;
}

.proof-item {
  background: var(--steel-white);
  border: 1px solid var(--grey-mid);
  border-radius: 6px;
  padding: 16px 20px;
}

.proof-item h4 {
  font-family: var(--font-head);
  color: var(--amber);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.proof-breakdown .proof-item p {
  max-width: none;
  margin: 0;
  color: var(--charcoal);
  font-size: 0.9rem;
}

/* Demo panel */
.demo-panel {
  background: var(--grey-light);
  border-radius: 6px;
  padding: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.demo-panel .label {
  font-family: var(--font-head);
  color: var(--amber);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.demo-panel pre {
  white-space: pre-wrap;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Testimonials (pending) */
.testimonials-slot {
  text-align: center;
  color: var(--grey-mid);
  padding: 48px 24px;
}

/* Gaffer preview */
.gaffer-preview {
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid var(--grey-light);
  border-radius: 6px;
  overflow: hidden;
}

.gaffer-preview .bubble {
  padding: 14px 18px;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.95rem;
}

.gaffer-preview .bubble:last-child { border-bottom: none; background: var(--grey-light); font-style: italic; color: var(--grey-mid); }

/* Pricing */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-grid .pricing-card {
  flex: 1 1 340px;
  margin: 0;
}

.pricing-card.featured {
  background: var(--grey-light);
}

.pricing-card h3 {
  color: var(--amber);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  border: 2px solid var(--amber);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
}

.pricing-card .price {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--charcoal);
  margin: 8px 0;
}

.pricing-card .price .was {
  text-decoration: line-through;
  color: var(--grey-mid);
  font-size: 1.4rem;
  margin-right: 10px;
}

.pricing-card .instalment {
  color: var(--grey-mid);
  font-size: 0.9rem;
  margin-top: 8px;
}

.pricing-card .tco {
  color: var(--grey-mid);
  font-size: 0.85rem;
  margin: 4px 0 0;
  line-height: 1.4;
}

/* Email capture */
.email-capture {
  background: var(--charcoal);
  color: var(--steel-white);
  text-align: center;
}

.email-capture h2 { color: var(--steel-white); }

.email-capture form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 24px auto 0;
}

.email-capture input[type="email"] {
  flex: 1;
  padding: 12px 14px;
  border-radius: 4px;
  border: none;
  font-family: var(--font-body);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--grey-light);
  padding: 40px 24px;
  text-align: center;
  color: var(--grey-mid);
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.site-footer nav a { text-decoration: none; color: var(--charcoal); font-weight: 500; }
