/* First-render shell for the public homepage.
 * Editorial Finance: mirrors the dark hero and calm off-white header until React hydrates.
 */
.static-home-fallback {
  position: fixed;
  inset: 0;
  z-index: 90;
  overflow: hidden;
  background: #fdfcf8;
  color: #17211d;
  font-family: Arial, sans-serif;
}

.static-home-fallback__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  padding: 0 1rem;
  border-bottom: 1px solid #e6e3da;
  background: #fdfcf8;
}

.static-home-fallback__brand {
  color: #0d7377;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.static-home-fallback__nav {
  color: #63706a;
  font-size: 0.85rem;
}

.static-home-fallback__hero {
  min-height: 28rem;
  padding: 4rem 1rem;
  background-color: #062236;
  background-image: linear-gradient(90deg, rgba(6, 26, 43, 0.95), rgba(9, 44, 60, 0.76), rgba(6, 78, 59, 0.35)), url('/manus-storage/escape-the-9-5-hero_5d639924.webp');
  background-position: center;
  background-size: cover;
  color: #f8fafc;
}

.static-home-fallback__content {
  max-width: 42rem;
  margin: 0;
}

.static-home-fallback__hero h1 {
  max-width: 33rem;
  margin: 0.75rem 0 1.25rem;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 2.45rem;
  line-height: 1.05;
}

.static-home-fallback__hero h1 span {
  color: #8fe7c5;
}

.static-home-fallback__eyebrow {
  margin: 0;
  color: #b7f4df;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.static-home-fallback__hero-copy {
  max-width: 34rem;
  margin: 0 0 1.5rem;
  color: #d9e1e7;
  font-size: 1.125rem;
  line-height: 1.625;
}

.static-home-fallback__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.static-home-fallback__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(233, 255, 248, 0.42);
  border-radius: 0.375rem;
  padding: 0.875rem 1.75rem;
  color: #eafff8;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.static-home-fallback__actions a:first-child {
  border-color: #5eead4;
  background: #5eead4;
  color: #06251f;
}

.static-home-fallback__trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 1.5rem 1rem;
  color: #4c5a53;
  font-size: 0.875rem;
}

.static-home-fallback__trust-item {
  display: grid;
  gap: 0.15rem;
}

.static-home-fallback__trust-item strong {
  color: #17211d;
  font-size: 0.875rem;
  line-height: 1.25;
}

.static-home-fallback__trust-item small {
  color: #63706a;
  font-size: 0.75rem;
  line-height: 1.25;
}

/* Preserve crawl-visible supporting copy without making the first screen taller. */
.static-home-fallback > .static-home-fallback__content:not(.static-home-fallback__hero .static-home-fallback__content) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (min-width: 640px) {
  .static-home-fallback__header,
  .static-home-fallback__trust {
    padding-left: max(1.5rem, calc((100vw - 70rem) / 2));
    padding-right: max(1.5rem, calc((100vw - 70rem) / 2));
  }

  .static-home-fallback__hero {
    min-height: 0;
    padding: 6rem max(1.5rem, calc((100vw - 70rem) / 2));
  }

  .static-home-fallback__hero h1 {
    font-size: 3rem;
  }

  .static-home-fallback__actions {
    flex-direction: row;
  }

  .static-home-fallback__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .static-home-fallback__hero {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .static-home-fallback__hero h1 {
    font-size: 3.75rem;
  }
}
