@charset "UTF-8";
/* ─── BOSCO LANDING THEME ─── */
/* line 3, app/assets/stylesheets/bosco_landing.scss */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* line 5, app/assets/stylesheets/bosco_landing.scss */
:root {
  --bg: #0f0e0d;
  --surface: #181714;
  --border: #2a2824;
  --border-light: #3a3733;
  --amber: #e8a830;
  --amber-dim: #b07d1c;
  --text: #f0ece4;
  --text-muted: #8a8480;
  --text-dim: #5a5754;
  --green: #4caf78;
  --serif: 'Libre Baskerville', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --mono: 'DM Mono', monospace;
}

/* line 21, app/assets/stylesheets/bosco_landing.scss */
html {
  scroll-behavior: smooth;
}

/* line 23, app/assets/stylesheets/bosco_landing.scss */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── UTILITY ─── */
/* line 33, app/assets/stylesheets/bosco_landing.scss */
.bosco-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── NAV ─── */
/* line 40, app/assets/stylesheets/bosco_landing.scss */
.bosco-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

/* line 47, app/assets/stylesheets/bosco_landing.scss */
.bosco-nav.scrolled {
  background: rgba(15, 14, 13, 0.92);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}

/* line 52, app/assets/stylesheets/bosco_landing.scss */
.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

/* line 59, app/assets/stylesheets/bosco_landing.scss */
.nav-logo span {
  color: var(--amber);
}

/* line 60, app/assets/stylesheets/bosco_landing.scss */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

/* line 63, app/assets/stylesheets/bosco_landing.scss */
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

/* line 67, app/assets/stylesheets/bosco_landing.scss */
.nav-links a:hover {
  color: var(--text);
}

/* line 68, app/assets/stylesheets/bosco_landing.scss */
.nav-cta {
  background: var(--amber) !important;
  color: var(--bg) !important;
  padding: 9px 20px !important;
  border-radius: 4px;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  transition: background 0.2s !important;
}

/* line 77, app/assets/stylesheets/bosco_landing.scss */
.nav-cta:hover {
  background: #d4961e !important;
}

/* ─── HERO ─── */
/* line 80, app/assets/stylesheets/bosco_landing.scss */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

/* line 86, app/assets/stylesheets/bosco_landing.scss */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(232, 168, 48, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* line 94, app/assets/stylesheets/bosco_landing.scss */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black 20%, transparent 100%);
  opacity: 0.35;
}

/* line 103, app/assets/stylesheets/bosco_landing.scss */
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* line 108, app/assets/stylesheets/bosco_landing.scss */
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}

/* line 115, app/assets/stylesheets/bosco_landing.scss */
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s 0.25s forwards;
}

/* line 123, app/assets/stylesheets/bosco_landing.scss */
.hero-headline em {
  font-style: italic;
  color: var(--amber);
}

/* line 126, app/assets/stylesheets/bosco_landing.scss */
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

/* line 133, app/assets/stylesheets/bosco_landing.scss */
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.55s forwards;
}

/* line 137, app/assets/stylesheets/bosco_landing.scss */
.btn-primary {
  background: var(--amber);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}

/* line 144, app/assets/stylesheets/bosco_landing.scss */
.btn-primary:hover {
  background: #d4961e;
  transform: translateY(-1px);
  color: var(--bg);
}

/* line 145, app/assets/stylesheets/bosco_landing.scss */
.btn-ghost {
  color: var(--text-muted);
  padding: 14px 0;
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s, border-color 0.2s;
}

/* line 152, app/assets/stylesheets/bosco_landing.scss */
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

/* line 154, app/assets/stylesheets/bosco_landing.scss */
.hero-stat-row {
  position: absolute;
  bottom: 48px;
  left: 48px;
  right: 48px;
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  opacity: 0;
  animation: fadeUp 0.7s 0.7s forwards;
}

/* line 162, app/assets/stylesheets/bosco_landing.scss */
.hero-stat {
  flex: 1;
  padding: 20px 28px;
  border-right: 1px solid var(--border);
}

/* line 166, app/assets/stylesheets/bosco_landing.scss */
.hero-stat:last-child {
  border-right: none;
}

/* line 167, app/assets/stylesheets/bosco_landing.scss */
.hero-stat-num {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--amber);
  margin-bottom: 4px;
}

/* line 171, app/assets/stylesheets/bosco_landing.scss */
.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

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

/* ─── SECTION BASE ─── */
/* line 181, app/assets/stylesheets/bosco_landing.scss */
section {
  padding: 96px 48px;
}

/* line 182, app/assets/stylesheets/bosco_landing.scss */
.section-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

/* line 187, app/assets/stylesheets/bosco_landing.scss */
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

/* line 193, app/assets/stylesheets/bosco_landing.scss */
.section-sub {
  color: var(--text-muted);
  max-width: 520px;
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 300;
}

/* line 197, app/assets/stylesheets/bosco_landing.scss */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 48px;
}

/* ─── PROBLEM STATEMENT ─── */
/* line 203, app/assets/stylesheets/bosco_landing.scss */
.problem {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* line 207, app/assets/stylesheets/bosco_landing.scss */
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* line 211, app/assets/stylesheets/bosco_landing.scss */
.problem-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.4;
  font-style: italic;
  color: var(--text);
}

/* line 217, app/assets/stylesheets/bosco_landing.scss */
.problem-quote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* line 222, app/assets/stylesheets/bosco_landing.scss */
.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 225, app/assets/stylesheets/bosco_landing.scss */
.problem-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* line 229, app/assets/stylesheets/bosco_landing.scss */
.problem-list li::before {
  content: '\2715';
  color: #c44;
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ─── QUOTE STRIP ─── */
/* line 234, app/assets/stylesheets/bosco_landing.scss */
.quote-strip {
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

/* line 239, app/assets/stylesheets/bosco_landing.scss */
.quote-strip blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-style: italic;
  max-width: 800px;
  color: var(--text);
  line-height: 1.5;
}

/* line 244, app/assets/stylesheets/bosco_landing.scss */
.quote-strip blockquote::before,
.quote-strip blockquote::after {
  content: '\201C';
  color: var(--amber);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.3em;
}

/* line 248, app/assets/stylesheets/bosco_landing.scss */
.quote-strip blockquote::after {
  content: '\201D';
}

/* ─── PRODUCTS ─── */
/* line 251, app/assets/stylesheets/bosco_landing.scss */
.products-header {
  max-width: 1200px;
  margin: 0 auto;
}

/* line 254, app/assets/stylesheets/bosco_landing.scss */
.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 64px;
}

/* line 259, app/assets/stylesheets/bosco_landing.scss */
.product-card {
  background: var(--surface);
  padding: 48px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

/* line 265, app/assets/stylesheets/bosco_landing.scss */
.product-card:hover {
  border-color: var(--amber);
}

/* line 266, app/assets/stylesheets/bosco_landing.scss */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

/* line 272, app/assets/stylesheets/bosco_landing.scss */
.product-card:hover::before {
  opacity: 1;
}

/* line 273, app/assets/stylesheets/bosco_landing.scss */
.product-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  display: inline-block;
}

/* line 279, app/assets/stylesheets/bosco_landing.scss */
.product-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

/* line 283, app/assets/stylesheets/bosco_landing.scss */
.product-desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

/* line 287, app/assets/stylesheets/bosco_landing.scss */
.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

/* line 291, app/assets/stylesheets/bosco_landing.scss */
.product-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* line 295, app/assets/stylesheets/bosco_landing.scss */
.product-features li::before {
  content: '\2192';
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 1px;
}

/* line 298, app/assets/stylesheets/bosco_landing.scss */
.product-link {
  color: var(--amber);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(232, 168, 48, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

/* line 306, app/assets/stylesheets/bosco_landing.scss */
.product-link:hover {
  border-color: var(--amber);
}

/* line 307, app/assets/stylesheets/bosco_landing.scss */
.product-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(232, 168, 48, 0.1);
  border: 1px solid rgba(232, 168, 48, 0.3);
  color: var(--amber);
  padding: 4px 10px;
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── HOW IT WORKS ─── */
/* line 316, app/assets/stylesheets/bosco_landing.scss */
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* line 317, app/assets/stylesheets/bosco_landing.scss */
.how-header {
  margin-bottom: 64px;
}

/* line 318, app/assets/stylesheets/bosco_landing.scss */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

/* line 324, app/assets/stylesheets/bosco_landing.scss */
.step {
  background: var(--bg);
  padding: 36px 28px;
  position: relative;
}

/* line 328, app/assets/stylesheets/bosco_landing.scss */
.step-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--amber);
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}

/* line 332, app/assets/stylesheets/bosco_landing.scss */
.step-title {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}

/* line 336, app/assets/stylesheets/bosco_landing.scss */
.step-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── CAPABILITIES ─── */
/* line 341, app/assets/stylesheets/bosco_landing.scss */
.capabilities {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* line 345, app/assets/stylesheets/bosco_landing.scss */
.cap-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* line 346, app/assets/stylesheets/bosco_landing.scss */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

/* line 351, app/assets/stylesheets/bosco_landing.scss */
.cap-item {
  background: var(--surface);
  padding: 36px 32px;
}

/* line 354, app/assets/stylesheets/bosco_landing.scss */
.cap-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  background: rgba(232, 168, 48, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

/* line 360, app/assets/stylesheets/bosco_landing.scss */
.cap-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

/* line 363, app/assets/stylesheets/bosco_landing.scss */
.cap-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── PRICING ─── */
/* line 368, app/assets/stylesheets/bosco_landing.scss */
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* line 369, app/assets/stylesheets/bosco_landing.scss */
.pricing-header {
  max-width: 600px;
  margin-bottom: 64px;
}

/* line 370, app/assets/stylesheets/bosco_landing.scss */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  max-width: 1100px;
}

/* line 375, app/assets/stylesheets/bosco_landing.scss */
.pricing-card {
  background: var(--surface);
  padding: 36px 28px;
  position: relative;
}

/* line 379, app/assets/stylesheets/bosco_landing.scss */
.pricing-card.featured {
  background: #1a1815;
  border-top: 2px solid var(--amber);
}

/* line 383, app/assets/stylesheets/bosco_landing.scss */
.pricing-featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 4px 4px;
}

/* line 390, app/assets/stylesheets/bosco_landing.scss */
.pricing-tier {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* line 395, app/assets/stylesheets/bosco_landing.scss */
.pricing-price {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

/* line 400, app/assets/stylesheets/bosco_landing.scss */
.pricing-price span {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-family: var(--sans);
}

/* line 401, app/assets/stylesheets/bosco_landing.scss */
.pricing-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  margin-top: 8px;
}

/* line 404, app/assets/stylesheets/bosco_landing.scss */
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}

/* line 405, app/assets/stylesheets/bosco_landing.scss */
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* line 409, app/assets/stylesheets/bosco_landing.scss */
.pricing-features li {
  display: flex;
  gap: 8px;
}

/* line 410, app/assets/stylesheets/bosco_landing.scss */
.pricing-features li .check {
  color: var(--green);
  flex-shrink: 0;
}

/* line 411, app/assets/stylesheets/bosco_landing.scss */
.pricing-features li .dash {
  color: var(--text-dim);
  flex-shrink: 0;
}

/* ─── CTA ─── */
/* line 414, app/assets/stylesheets/bosco_landing.scss */
.cta-section {
  text-align: center;
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

/* line 418, app/assets/stylesheets/bosco_landing.scss */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232, 168, 48, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* line 425, app/assets/stylesheets/bosco_landing.scss */
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* line 428, app/assets/stylesheets/bosco_landing.scss */
.cta-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* line 432, app/assets/stylesheets/bosco_landing.scss */
.cta-sub {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── FOOTER ─── */
/* line 438, app/assets/stylesheets/bosco_landing.scss */
.bosco-footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* line 443, app/assets/stylesheets/bosco_landing.scss */
.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: none;
}

/* line 447, app/assets/stylesheets/bosco_landing.scss */
.footer-logo span {
  color: var(--amber);
}

/* line 448, app/assets/stylesheets/bosco_landing.scss */
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

/* line 451, app/assets/stylesheets/bosco_landing.scss */
.footer-links a {
  color: var(--text-dim);
  font-size: 0.8125rem;
  text-decoration: none;
  transition: color 0.2s;
}

/* line 454, app/assets/stylesheets/bosco_landing.scss */
.footer-links a:hover {
  color: var(--text-muted);
}

/* line 455, app/assets/stylesheets/bosco_landing.scss */
.footer-copy {
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* ─── TAPE/MARQUEE ─── */
/* line 458, app/assets/stylesheets/bosco_landing.scss */
.tape {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--surface);
}

/* line 462, app/assets/stylesheets/bosco_landing.scss */
.tape-inner {
  display: flex;
  gap: 0;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}

/* line 465, app/assets/stylesheets/bosco_landing.scss */
.tape-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* line 470, app/assets/stylesheets/bosco_landing.scss */
.tape-dot {
  color: var(--amber);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── LEGAL PAGES ─── */
/* line 477, app/assets/stylesheets/bosco_landing.scss */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 48px 96px;
}

/* line 482, app/assets/stylesheets/bosco_landing.scss */
.legal-page h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 32px;
}

/* line 488, app/assets/stylesheets/bosco_landing.scss */
.legal-page h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text);
}

/* line 495, app/assets/stylesheets/bosco_landing.scss */
.legal-page p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* line 501, app/assets/stylesheets/bosco_landing.scss */
.legal-page a {
  color: var(--amber);
  transition: color 0.2s;
}

/* line 505, app/assets/stylesheets/bosco_landing.scss */
.legal-page a:hover {
  color: #d4961e;
}

/* line 508, app/assets/stylesheets/bosco_landing.scss */
.legal-page ul {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 16px;
  padding-left: 24px;
}

/* line 515, app/assets/stylesheets/bosco_landing.scss */
.legal-page li {
  margin-bottom: 8px;
}

/* line 518, app/assets/stylesheets/bosco_landing.scss */
.legal-page .legal-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.8125rem;
}

/* ─── PRODUCT PAGE HERO ─── */
/* line 527, app/assets/stylesheets/bosco_landing.scss */
.product-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}

/* line 533, app/assets/stylesheets/bosco_landing.scss */
.product-hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(232, 168, 48, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* line 541, app/assets/stylesheets/bosco_landing.scss */
.product-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

/* line 545, app/assets/stylesheets/bosco_landing.scss */
.product-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: 28px;
}

/* line 551, app/assets/stylesheets/bosco_landing.scss */
.product-hero-title em {
  font-style: italic;
  color: var(--amber);
}

/* line 552, app/assets/stylesheets/bosco_landing.scss */
.product-hero-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

/* ─── PRODUCT DETAIL SECTIONS ─── */
/* line 559, app/assets/stylesheets/bosco_landing.scss */
.product-detail-section {
  padding: 96px 48px;
}

/* line 562, app/assets/stylesheets/bosco_landing.scss */
.product-detail-section.alt-bg {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* line 567, app/assets/stylesheets/bosco_landing.scss */
.product-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* line 570, app/assets/stylesheets/bosco_landing.scss */
.product-detail-header {
  margin-bottom: 56px;
}

/* line 573, app/assets/stylesheets/bosco_landing.scss */
.product-detail-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

/* line 579, app/assets/stylesheets/bosco_landing.scss */
.product-detail-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

/* line 580, app/assets/stylesheets/bosco_landing.scss */
.product-detail-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

/* line 582, app/assets/stylesheets/bosco_landing.scss */
.detail-card {
  background: var(--bg);
  padding: 36px 32px;
}

/* line 585, app/assets/stylesheets/bosco_landing.scss */
.alt-bg .detail-card {
  background: var(--surface);
}

/* line 586, app/assets/stylesheets/bosco_landing.scss */
.detail-card-number {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--amber);
  opacity: 0.5;
  margin-bottom: 16px;
  line-height: 1;
}

/* line 590, app/assets/stylesheets/bosco_landing.scss */
.detail-card-number svg {
  color: var(--amber);
  opacity: 1;
}

/* line 591, app/assets/stylesheets/bosco_landing.scss */
.detail-card-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}

/* line 594, app/assets/stylesheets/bosco_landing.scss */
.detail-card-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* line 597, app/assets/stylesheets/bosco_landing.scss */
.detail-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 600, app/assets/stylesheets/bosco_landing.scss */
.detail-card-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* line 604, app/assets/stylesheets/bosco_landing.scss */
.detail-card-features li::before {
  content: '\2192';
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── PRODUCT STEPS ROW ─── */
/* line 609, app/assets/stylesheets/bosco_landing.scss */
.product-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

/* line 615, app/assets/stylesheets/bosco_landing.scss */
.product-step {
  background: var(--bg);
  padding: 36px 28px;
}

/* line 618, app/assets/stylesheets/bosco_landing.scss */
.product-step-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--amber);
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}

/* line 622, app/assets/stylesheets/bosco_landing.scss */
.product-step-title {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}

/* line 626, app/assets/stylesheets/bosco_landing.scss */
.product-step-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── FORCE CARDS ─── */
/* line 631, app/assets/stylesheets/bosco_landing.scss */
.product-detail-grid.four-force {
  grid-template-columns: repeat(4, 1fr);
}

/* line 634, app/assets/stylesheets/bosco_landing.scss */
.force-card {
  background: var(--bg);
  padding: 32px 24px;
  text-align: center;
}

/* line 637, app/assets/stylesheets/bosco_landing.scss */
.force-card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  background: rgba(232, 168, 48, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

/* line 643, app/assets/stylesheets/bosco_landing.scss */
.force-card-title {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

/* line 646, app/assets/stylesheets/bosco_landing.scss */
.force-card-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── PRODUCT DETAIL SUBGRID ─── */
/* line 651, app/assets/stylesheets/bosco_landing.scss */
.product-detail-subgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 32px;
}

/* line 658, app/assets/stylesheets/bosco_landing.scss */
.product-detail-subgrid .detail-card {
  background: var(--bg);
}

/* ─── AUTH PAGES ─── */
/* line 663, app/assets/stylesheets/bosco_landing.scss */
.auth-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* line 667, app/assets/stylesheets/bosco_landing.scss */
.auth-left {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* line 674, app/assets/stylesheets/bosco_landing.scss */
.auth-left::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232, 168, 48, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* line 682, app/assets/stylesheets/bosco_landing.scss */
.auth-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--text);
  text-decoration: none;
  position: absolute;
  top: 32px;
  left: 48px;
}

/* line 687, app/assets/stylesheets/bosco_landing.scss */
.auth-logo span {
  color: var(--amber);
}

/* line 688, app/assets/stylesheets/bosco_landing.scss */
.auth-value {
  position: relative;
  max-width: 440px;
}

/* line 689, app/assets/stylesheets/bosco_landing.scss */
.auth-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

/* line 695, app/assets/stylesheets/bosco_landing.scss */
.auth-headline em {
  font-style: italic;
  color: var(--amber);
}

/* line 696, app/assets/stylesheets/bosco_landing.scss */
.auth-left-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-top: -20px;
}

/* line 701, app/assets/stylesheets/bosco_landing.scss */
.auth-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 704, app/assets/stylesheets/bosco_landing.scss */
.auth-benefits li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

/* line 707, app/assets/stylesheets/bosco_landing.scss */
.auth-benefit-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(232, 168, 48, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-top: 2px;
}

/* line 713, app/assets/stylesheets/bosco_landing.scss */
.auth-benefit-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 716, app/assets/stylesheets/bosco_landing.scss */
.auth-benefit-text strong {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

/* line 719, app/assets/stylesheets/bosco_landing.scss */
.auth-benefit-text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* line 722, app/assets/stylesheets/bosco_landing.scss */
.auth-free-note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* line 730, app/assets/stylesheets/bosco_landing.scss */
.auth-right {
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 734, app/assets/stylesheets/bosco_landing.scss */
.auth-form-wrapper {
  max-width: 400px;
  width: 100%;
}

/* line 737, app/assets/stylesheets/bosco_landing.scss */
.auth-form-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

/* line 741, app/assets/stylesheets/bosco_landing.scss */
.auth-form-sub {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 32px;
  font-weight: 300;
}

/* line 745, app/assets/stylesheets/bosco_landing.scss */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 746, app/assets/stylesheets/bosco_landing.scss */
.auth-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* line 749, app/assets/stylesheets/bosco_landing.scss */
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 750, app/assets/stylesheets/bosco_landing.scss */
.auth-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
}

/* line 753, app/assets/stylesheets/bosco_landing.scss */
.auth-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

/* line 756, app/assets/stylesheets/bosco_landing.scss */
.auth-forgot {
  font-size: 0.75rem;
  color: var(--amber);
  text-decoration: none;
  transition: color 0.2s;
}

/* line 760, app/assets/stylesheets/bosco_landing.scss */
.auth-forgot:hover {
  color: #d4961e;
}

/* line 761, app/assets/stylesheets/bosco_landing.scss */
.auth-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}

/* line 768, app/assets/stylesheets/bosco_landing.scss */
.auth-input:focus {
  border-color: var(--amber);
}

/* line 769, app/assets/stylesheets/bosco_landing.scss */
.auth-input::placeholder {
  color: var(--text-dim);
}

/* line 770, app/assets/stylesheets/bosco_landing.scss */
.auth-submit {
  background: var(--amber);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

/* line 778, app/assets/stylesheets/bosco_landing.scss */
.auth-submit:hover {
  background: #d4961e;
}

/* line 779, app/assets/stylesheets/bosco_landing.scss */
.auth-remember {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 782, app/assets/stylesheets/bosco_landing.scss */
.auth-checkbox {
  accent-color: var(--amber);
  width: 16px;
  height: 16px;
}

/* line 785, app/assets/stylesheets/bosco_landing.scss */
.auth-remember-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* line 788, app/assets/stylesheets/bosco_landing.scss */
.auth-switch {
  margin-top: 24px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* line 792, app/assets/stylesheets/bosco_landing.scss */
.auth-switch-link {
  color: var(--amber);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

/* line 796, app/assets/stylesheets/bosco_landing.scss */
.auth-switch-link:hover {
  color: #d4961e;
}

/* devise error messages */
/* line 799, app/assets/stylesheets/bosco_landing.scss */
.auth-form #error_explanation {
  background: rgba(196, 68, 68, 0.1);
  border: 1px solid rgba(196, 68, 68, 0.3);
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 4px;
}

/* line 805, app/assets/stylesheets/bosco_landing.scss */
.auth-form #error_explanation h2 {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #c44;
  margin-bottom: 8px;
}

/* line 809, app/assets/stylesheets/bosco_landing.scss */
.auth-form #error_explanation ul {
  list-style: none;
  padding: 0;
}

/* line 812, app/assets/stylesheets/bosco_landing.scss */
.auth-form #error_explanation li {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  /* line 819, app/assets/stylesheets/bosco_landing.scss */
  .bosco-nav {
    padding: 16px 24px;
  }
  /* line 820, app/assets/stylesheets/bosco_landing.scss */
  .nav-links {
    display: none;
  }
  /* line 821, app/assets/stylesheets/bosco_landing.scss */
  section {
    padding: 64px 24px;
  }
  /* line 822, app/assets/stylesheets/bosco_landing.scss */
  .hero {
    padding: 100px 24px 40px;
    min-height: auto;
  }
  /* line 823, app/assets/stylesheets/bosco_landing.scss */
  .hero-stat-row {
    position: static;
    flex-direction: column;
    margin-top: 48px;
  }
  /* line 828, app/assets/stylesheets/bosco_landing.scss */
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  /* line 829, app/assets/stylesheets/bosco_landing.scss */
  .hero-stat:last-child {
    border-bottom: none;
  }
  /* line 830, app/assets/stylesheets/bosco_landing.scss */
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* line 831, app/assets/stylesheets/bosco_landing.scss */
  .products-grid {
    grid-template-columns: 1fr;
  }
  /* line 832, app/assets/stylesheets/bosco_landing.scss */
  .steps-row {
    grid-template-columns: 1fr 1fr;
  }
  /* line 833, app/assets/stylesheets/bosco_landing.scss */
  .cap-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* line 834, app/assets/stylesheets/bosco_landing.scss */
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* line 835, app/assets/stylesheets/bosco_landing.scss */
  .bosco-footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  /* line 836, app/assets/stylesheets/bosco_landing.scss */
  .divider {
    margin: 0 24px;
  }
  /* line 837, app/assets/stylesheets/bosco_landing.scss */
  .bosco-container {
    padding: 0 24px;
  }
  /* line 838, app/assets/stylesheets/bosco_landing.scss */
  .auth-page {
    grid-template-columns: 1fr;
  }
  /* line 839, app/assets/stylesheets/bosco_landing.scss */
  .auth-left {
    display: none;
  }
  /* line 840, app/assets/stylesheets/bosco_landing.scss */
  .auth-right {
    padding: 48px 24px;
  }
  /* line 841, app/assets/stylesheets/bosco_landing.scss */
  .product-hero {
    padding: 100px 24px 40px;
    min-height: auto;
  }
  /* line 842, app/assets/stylesheets/bosco_landing.scss */
  .product-detail-section {
    padding: 64px 24px;
  }
  /* line 843, app/assets/stylesheets/bosco_landing.scss */
  .product-detail-grid.two-col {
    grid-template-columns: 1fr;
  }
  /* line 844, app/assets/stylesheets/bosco_landing.scss */
  .product-detail-grid.three-col {
    grid-template-columns: 1fr 1fr;
  }
  /* line 845, app/assets/stylesheets/bosco_landing.scss */
  .product-detail-grid.four-force {
    grid-template-columns: 1fr 1fr;
  }
  /* line 846, app/assets/stylesheets/bosco_landing.scss */
  .product-steps-row {
    grid-template-columns: 1fr 1fr;
  }
  /* line 847, app/assets/stylesheets/bosco_landing.scss */
  .product-detail-subgrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  /* line 850, app/assets/stylesheets/bosco_landing.scss */
  .steps-row, .cap-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  /* line 851, app/assets/stylesheets/bosco_landing.scss */
  .product-detail-grid.two-col,
.product-detail-grid.three-col,
.product-detail-grid.four-force,
.product-steps-row,
.product-detail-subgrid {
    grid-template-columns: 1fr;
  }
}
