* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  font-family: var(--font-family-base);
  color: var(--color-grey-900);
  background: var(--color-white);
  background-image: radial-gradient(var(--color-grey-200) 1px, transparent 1px);
  background-size: var(--space-5) var(--space-5);
  -webkit-font-smoothing: antialiased;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.brand,
.content,
.location {
  position: relative;
  z-index: 1;
}

.map-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-marker {
  position: absolute;
  width: var(--space-6);
  aspect-ratio: 1;
  border-radius: var(--radius-full) var(--radius-full) var(--radius-full) var(--radius-sm);
  box-shadow: var(--shadow-md);
  transform: rotate(-45deg);
}

.map-marker::after {
  content: "";
  position: absolute;
  inset: var(--space-2);
  border-radius: var(--radius-full);
  background: var(--color-white);
}

.map-marker--blue {
  background: var(--color-blue-600);
}

.map-marker--navy {
  background: var(--color-navy-900);
}

.map-marker--bright {
  background: var(--color-blue-500);
}

.map-marker:nth-child(1) {
  top: 17%;
  right: 13%;
}

.map-marker:nth-child(2) {
  top: 56%;
  right: 6%;
}

.map-marker:nth-child(3) {
  bottom: 12%;
  left: 20%;
}

.map-marker:nth-child(4) {
  top: 15%;
  left: 7%;
}

.map-marker:nth-child(5) {
  bottom: 20%;
  left: 48%;
}

.brand {
  margin: 0;
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-h2);
}

.content {
  max-width: 680px;
  margin: auto 0;
}

.eyebrow {
  margin: 0 0 var(--space-4);
  color: var(--color-blue-700);
  font-size: var(--font-size-label);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: var(--font-size-display);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-display);
  letter-spacing: var(--letter-spacing-display);
}

.description,
.location {
  margin: 0;
  color: var(--color-grey-500);
}

.description {
  margin-top: var(--space-6);
  font-size: var(--font-size-body-lg);
  line-height: var(--line-height-body-lg);
}

.regional-cue {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  color: var(--color-blue-700);
  font-size: var(--font-size-body-sm);
  font-weight: var(--font-weight-medium);
}

.regional-cue svg {
  width: 16px;
  height: 16px;
}

.waitlist-form {
  display: flex;
  gap: var(--space-2);
  max-width: 480px;
  margin-top: var(--space-6);
}

.waitlist-form input,
.waitlist-form button {
  min-height: 44px;
  font: inherit;
  border-radius: var(--radius-sm);
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  padding: 0 var(--space-3);
  color: var(--color-grey-900);
  background: var(--color-white);
  border: 1px solid var(--color-grey-200);
}

.waitlist-form input:focus {
  outline: 2px solid var(--color-blue-500);
  outline-offset: 2px;
}

.waitlist-form button {
  padding: 0 var(--space-5);
  color: var(--color-white);
  background: var(--color-navy-900);
  border: 0;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
}

.waitlist-form button:hover {
  background: var(--color-blue-700);
}

.trust-line,
.form-message {
  margin: var(--space-2) 0 0;
  font-size: var(--font-size-body-sm);
}

.trust-line {
  color: var(--color-grey-500);
}

.form-message {
  min-height: 21px;
  color: var(--color-blue-700);
}

.location {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-size-body-sm);
}

.heart {
  display: inline-flex;
  color: var(--color-blue-600);
}

.heart svg {
  width: 15px;
  height: 15px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }

  .map-marker:nth-child(2),
  .map-marker:nth-child(4) {
    display: none;
  }

  .waitlist-form {
    flex-direction: column;
  }
}
