/* ============================================================
   THE BRIDGE — LANDING PAGE
   Unified cream background throughout. Dark text. Gold accents.
   Floating four-pointed stars for ethereal spatial feel.
   Responsive: 320px → 768px → 1200px+
   ============================================================ */

/* ---- BASE ---- */
.landing-body {
  background: #f5f0e8 !important;
  color: #0a0a0f !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  -webkit-font-smoothing: antialiased;
}

.landing-container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   FLOATING FOUR-POINTED STARS
   Scattered throughout every section for ethereal feel.
   Pure CSS — no JS, no canvas, no images.
   ============================================================ */
.stars-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.star {
  position: absolute;
  width: 0;
  height: 0;
}
/* Four-pointed star via two rotated pseudo-element diamonds */
.star::before, .star::after {
  content: '';
  position: absolute;
  background: #c8a96e;
}
.star::before {
  width: var(--star-arm);
  height: var(--star-size);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.star::after {
  width: var(--star-size);
  height: var(--star-arm);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* Star sizes */
.star--sm { --star-size: 8px; --star-arm: 2px; opacity: 0.12; }
.star--md { --star-size: 12px; --star-arm: 2.5px; opacity: 0.10; }
.star--lg { --star-size: 16px; --star-arm: 3px; opacity: 0.08; }

/* Drift animations — very slow, subtle */
@keyframes starDrift1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(6px, -4px); }
  50% { transform: translate(-3px, 7px); }
  75% { transform: translate(5px, 3px); }
}
@keyframes starDrift2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-5px, 6px); }
  50% { transform: translate(4px, -3px); }
  75% { transform: translate(-6px, -5px); }
}
@keyframes starDrift3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(7px, 5px); }
  66% { transform: translate(-4px, -6px); }
}

.star--drift1 { animation: starDrift1 20s ease-in-out infinite; }
.star--drift2 { animation: starDrift2 25s ease-in-out infinite; }
.star--drift3 { animation: starDrift3 30s ease-in-out infinite; }

/* Ensure sections with stars have relative positioning */
.hero, .problem, .solution, .captains, .pricing, .landing-footer {
  position: relative;
}

/* ---- SECTION 1: STICKY NAV ---- */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f5f0e8;
  border-bottom: 1px solid #c8c0b0;
  height: 52px;
}
.landing-nav-inner {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.landing-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.landing-nav-wordmark {
  font-family: var(--font-data);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #0a0a0f;
  text-decoration: none;
  font-weight: 700;
}
.beta-chip {
  font-family: var(--font-data);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  color: #c8a96e;
  background: transparent;
  border: 1px solid #c8a96e;
  border-radius: 2px;
  padding: 0.125rem 0.375rem;
  vertical-align: middle;
  line-height: 1;
}
.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.landing-nav-link {
  font-family: var(--font-data);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: #3a3530;
  text-decoration: none;
  transition: color 0.15s;
}
.landing-nav-link:hover { color: #0a0a0f; }

.landing-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 4px;
}
.landing-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #0a0a0f;
  border-radius: 1px;
}
.landing-mobile-menu {
  display: none;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  background: #f5f0e8;
  border-bottom: 1px solid #c8c0b0;
  padding: 1rem 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 12px;
}
.landing-mobile-menu.open { display: flex; }
.landing-mobile-menu a {
  font-family: var(--font-data);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: #3a3530;
  text-decoration: none;
  padding: 0.5rem 0;
}

@media (max-width: 48em) {
  .landing-nav-links { display: none; }
  .landing-hamburger { display: flex; }
}

/* ---- SECTION 2: HERO — GRANT SCAN ---- */
.hero {
  background: #f5f0e8;
  overflow: hidden;
  border-bottom: 1px solid #c8c0b0;
}

/* Shared scan label */
.hero-scan-label {
  font-family: var(--font-data);
  font-size: 0.625rem;
  color: #c8a96e;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}

/* -- Scan form state -- */
.hero-scan-form {
  padding: 5rem 1.5rem;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero-scan-headline {
  font-family: var(--font-ui);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0a0a0f;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-scan-sub {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: #6a6560;
  text-align: center;
  margin-bottom: 2.5rem;
}
.hero-scan-description {
  max-width: 32rem;
  margin: 0 auto 0.75rem auto;
  text-align: left;
}
.hero-scan-fields {
  max-width: 32rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.hero-field--full {
  grid-column: 1 / -1;
}
.hero-field {
  text-align: left;
}
.hero-field-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: #3a3530;
  margin-bottom: 0.25rem;
}
.hero-input {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: #0a0a0f;
  background: #fff;
  border: 1px solid #c8c0b0;
  border-radius: 2px;
  padding: 0.625rem 1rem;
}
.hero-input::placeholder {
  color: #9a9590;
}
.hero-input:focus {
  outline: none;
  border-color: #c8a96e;
}
.hero-select {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: #0a0a0f;
  background: #fff;
  border: 1px solid #c8c0b0;
  border-radius: 2px;
  padding: 0.625rem 2.5rem 0.625rem 0.75rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233a3530' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.hero-select:focus {
  outline: none;
  border-color: #c8a96e;
}
.hero-scan-btn {
  display: inline-block;
  margin-top: 1.5rem;
  min-width: 16rem;
  background: #0a0a0f;
  color: #f5f0e8;
  font-family: var(--font-data);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s;
}
.hero-scan-btn:hover { background: #1e1e2a; }
.hero-scan-btn:disabled { opacity: 0.6; cursor: wait; }
.hero-scan-disclaimer {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: #9a9590;
  text-align: center;
  margin-top: 0.75rem;
}

/* -- Results states -- */
.hero-scan-results,
.hero-scan-noresults {
  padding: 5rem 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-results-headline {
  font-family: var(--font-ui);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #0a0a0f;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1rem auto;
}
.hero-results-avg {
  font-family: var(--font-ui);
  font-size: 1.125rem;
  color: #3a3530;
  text-align: center;
  margin-bottom: 0.5rem;
}
.hero-results-disclaimer {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: #9a9590;
  font-style: italic;
  text-align: center;
  margin-bottom: 2rem;
}
.hero-results-buttons {
  max-width: 22rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.hero-results-primary {
  display: block;
  width: 100%;
  background: #0a0a0f;
  color: #f5f0e8;
  font-family: var(--font-data);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.875rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s;
}
.hero-results-primary:hover { background: #1e1e2a; }
.hero-results-secondary {
  display: block;
  width: 100%;
  background: transparent;
  color: #0a0a0f;
  border: 1px solid #0a0a0f;
  font-family: var(--font-data);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.875rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  text-align: center;
  margin-top: 0.75rem;
  transition: background 0.15s;
}
.hero-results-secondary:hover { background: #ece7dc; }
.hero-results-alt {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: #9a9590;
  text-align: center;
  margin-top: 1rem;
}
.hero-noresults-body {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: #3a3530;
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 2rem auto;
}
.hero-noresults-below {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: #9a9590;
  text-align: center;
  margin-top: 0.75rem;
}

/* -- Star Trek context section -- */
.trek-context {
  background: #f5f0e8;
  padding: 3rem 1.5rem;
  border-bottom: 1px solid #c8c0b0;
}
.trek-context-inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}
.trek-helm {
  display: block;
  margin: 0 auto 1.5rem auto;
}
.trek-context-label {
  font-family: var(--font-data);
  font-size: 0.625rem;
  color: #c8a96e;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.75rem;
}
.trek-context-body {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: #3a3530;
  line-height: 1.8;
  text-align: center;
}

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

@media (max-width: 48em) {
  .hero-scan-form { padding: 3rem 1rem; }
  .hero-scan-results,
  .hero-scan-noresults { padding: 3rem 1rem; }
  .hero-scan-btn { width: 100%; }
}

/* ---- SECTION 3: THE PROBLEM ---- */
.problem {
  background: #f5f0e8;
  padding: 5rem 0;
  border-bottom: 1px solid #c8c0b0;
}
.problem-label {
  font-family: var(--font-data);
  font-size: clamp(11px, 1.3vw, 14px);
  color: #7a7570;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}
.problem-opening {
  font-family: var(--font-ui);
  font-size: 1.375rem;
  color: #0a0a0f;
  line-height: 1.75;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem auto;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem auto;
}
.problem-item {
  text-align: left;
}
.problem-item.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.problem-item.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.problem-number {
  font-family: var(--font-data);
  font-size: 2.5rem;
  color: #c8c0b0;
  margin-bottom: 8px;
}
.problem-headline {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0f;
  line-height: 1.4;
  margin-bottom: 8px;
}
.problem-body {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: #3a3530;
  line-height: 1.7;
}
.problem-closing {
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 500;
  color: #0a0a0f;
  text-align: center;
  max-width: 560px;
  margin: 3rem auto 0 auto;
}

/* ---- SECTION 4: THE SOLUTION (cream) ---- */
.solution {
  background: #f5f0e8;
  padding: 5rem 0;
  border-bottom: 1px solid #c8c0b0;
}
.solution-label {
  font-family: var(--font-data);
  font-size: clamp(11px, 1.3vw, 14px);
  color: #c8a96e;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}
.solution-headline {
  font-family: var(--font-ui);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: #0a0a0f;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
}
.solution-sub {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: #5a5650;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem auto;
  line-height: 1.7;
}
.solution-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 56rem;
  margin: 0 auto;
}
.solution-card {
  background: #ece7dc;
  border: 1px solid #c8c0b0;
  border-radius: 4px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.solution-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.solution-card.featured {
  border-color: #c8a96e;
  border-width: 2px;
}
.solution-card.featured.visible {
  transform: translateY(-4px);
}
.solution-card-icon {
  margin-bottom: 16px;
}
.solution-card-label {
  font-family: var(--font-data);
  font-size: clamp(11px, 1.3vw, 14px);
  color: #c8a96e;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.solution-card-headline {
  font-family: var(--font-ui);
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a0a0f;
  line-height: 1.35;
  margin-bottom: 12px;
}
.solution-card-body {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: #5a5650;
  line-height: 1.7;
}

/* ---- SECTION 6: WHO THIS IS FOR ---- */
.captains {
  background: #ece7dc;
  padding: 4rem 0;
  border-bottom: 1px solid #c8c0b0;
}
.captains-label {
  font-family: var(--font-data);
  font-size: clamp(11px, 1.3vw, 14px);
  color: #7a7570;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}
.captains-headline {
  font-family: var(--font-ui);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: #0a0a0f;
  text-align: center;
  margin-bottom: 0.75rem;
}
.captains-sub {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: #5a5650;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem auto;
  line-height: 1.7;
}
.captains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
.captain-card {
  background: #f5f0e8;
  border: 1px solid #c8c0b0;
  border-radius: 4px;
  padding: 1.25rem;
  text-align: center;
}
.captain-card svg {
  display: block;
  margin: 0 auto 8px;
}
.captain-card-label {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: #3a3530;
}
.captains-closing {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: #5a5650;
  font-style: italic;
  text-align: center;
  margin-top: 2.5rem;
}

/* ---- SECTION 7: PRICING (cream) ---- */
.pricing {
  background: #f5f0e8;
  padding: 5rem 0;
  border-bottom: 1px solid #c8c0b0;
}
.pricing-label {
  font-family: var(--font-data);
  font-size: clamp(11px, 1.3vw, 14px);
  color: #c8a96e;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}
.pricing-headline {
  font-family: var(--font-ui);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: #0a0a0f;
  text-align: center;
  margin-bottom: 0.75rem;
}
.pricing-sub {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: #5a5650;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem auto;
  line-height: 1.7;
}
/* Two-tier pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
.pricing-card {
  background: #ece7dc;
  border: 1px solid #c8c0b0;
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.pricing-card--captain {
  border: 1px solid #c8a96e;
}
.pricing-captain-chip {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 0.5rem;
  color: #f5f0e8;
  background: #c8a96e;
  padding: 0.125rem 0.5rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.pricing-tier {
  font-family: var(--font-data);
  font-size: 0.625rem;
  color: #c8a96e;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.pricing-amount {
  margin-bottom: 0.5rem;
}
.pricing-dollar {
  font-family: var(--font-data);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #0a0a0f;
}
.pricing-per {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: #6a6560;
}
.pricing-annual {
  font-family: var(--font-data);
  font-size: 0.625rem;
  color: #9a9590;
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 2rem;
}
.pricing-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.pricing-feature svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.pricing-feature-text {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: #3a3530;
  line-height: 1.6;
}
.btn-pricing {
  display: block;
  width: 100%;
  font-family: var(--font-data);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #f0ebe0;
  background: #0a0a0f;
  border: none;
  border-radius: 2px;
  padding: 0.875rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-pricing:hover { background: #1e1e2a; }
.btn-pricing-ghost {
  display: block;
  width: 100%;
  font-family: var(--font-data);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #0a0a0f;
  background: transparent;
  border: 1px solid #0a0a0f;
  border-radius: 2px;
  padding: 0.875rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.btn-pricing-ghost:hover { background: #f5f0e8; }
.pricing-annual-link {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: #9a9590;
  text-align: center;
  text-decoration: none;
  margin-top: 0.5rem;
}
.pricing-annual-link:hover { color: #3a3530; text-decoration: underline; }
.hero-results-annual {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: #9a9590;
  text-align: center;
  text-decoration: none;
  margin-top: 0.375rem;
}
.hero-results-annual:hover { color: #3a3530; text-decoration: underline; }
.pricing-beta-note {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: #9a9590;
  text-align: center;
  margin-top: 1.5rem;
}

/* ---- SECTION 8: FOOTER ---- */
.landing-footer {
  background: #f5f0e8;
  padding: 4rem 0;
}
.footer-story {
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  color: #3a3530;
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-story p { margin-bottom: 1.25rem; }
.footer-story p:last-of-type { margin-bottom: 0; }
.footer-cta-line {
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 500;
  color: #0a0a0f;
  margin-top: 1.5rem;
}

.footer-share {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}
.footer-share-prompt {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: #5a5650;
  margin-bottom: 1rem;
}
.btn-share {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #3a3530;
  background: transparent;
  border: 1px solid #c8c0b0;
  border-radius: 2px;
  padding: 10px 20px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.btn-share:hover { border-color: #3a3530; }
.footer-share-sub {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: #7a7570;
  text-align: center;
  max-width: 400px;
  margin: 0.75rem auto 0 auto;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #c8c0b0;
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
}
.footer-copy {
  font-family: var(--font-data);
  font-size: 10px;
  color: #7a7570;
  letter-spacing: 0.1em;
}
.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links a {
  font-family: var(--font-data);
  font-size: 10px;
  color: #7a7570;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; }

/* ---- RESPONSIVE ---- */

@media (max-width: 64em) {
  .solution-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .solution-card.featured.visible { transform: translateY(0); }
  .captains-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 28rem; margin: 0 auto; }
}

@media (max-width: 48em) {
  .problem-grid { grid-template-columns: 1fr; gap: 2rem; }
  .problem-opening { font-size: 1.125rem; }
  .captains-grid { grid-template-columns: 1fr; max-width: 320px; }
  .pricing-card { padding: 1.75rem 1.25rem; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
