/* LaunchLook shared site styles (load after Tailwind CDN). */

html {
  scroll-behavior: smooth;
}

body {
  font-feature-settings: "ss01", "cv11";
}

details > summary {
  list-style: none;
  cursor: pointer;
}

details > summary::-webkit-details-marker {
  display: none;
}

.section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b45309;
}

.section-rule {
  width: 2.5rem;
  height: 3px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #b45309, #fde68a);
}

.section-inner {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 640px) {
  .section-inner {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.section-inner-tight {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .section-inner-tight {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.launchlook-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow: 0 1px 2px rgba(31, 27, 22, 0.08);
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.launchlook-btn:hover {
  box-shadow: 0 2px 4px rgba(31, 27, 22, 0.1);
}

.launchlook-btn-primary {
  background-color: #1f1b16;
  color: #faf7f2;
  border: 2px solid #1f1b16;
}

.launchlook-btn-primary:hover {
  background-color: #b45309;
  border-color: #b45309;
}

.launchlook-btn-secondary {
  background-color: #ffffff;
  color: #1f1b16;
  border: 1px solid #e7e0d6;
}

.launchlook-btn-secondary:hover {
  border-color: #1f1b16;
  background-color: #fbf6ee;
}

.launchlook-btn-accent {
  background-color: #b45309;
  color: #faf7f2;
  border: 1px solid #b45309;
}

.launchlook-btn-accent:hover {
  background-color: #1f1b16;
  border-color: #1f1b16;
}

.launchlook-btn[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
  box-shadow: none;
}

.launchlook-btn-block {
  width: 100%;
}

@media (min-width: 640px) {
  .launchlook-btn-block {
    width: auto;
  }
}
