*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

@font-face {
  font-family: "Geist";
  src: url("../public/brand/Geist/Geist-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Geist", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f7f5f2;
  color: #2c2c2c;
}

.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

.home__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transform: translateY(-5vh);
}

.home__logo {
  display: block;
  max-width: min(840px, 90vw);
  height: auto;
}

@media (max-width: 768px) {
  .home {
    padding-inline: 0.5rem;
  }

  .home__logo {
    max-width: min(840px, 98vw);
  }
}

.home__email-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.home__copy-btn {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.45rem;
  border: 1px solid #c8c4be;
  border-radius: 0.35rem;
  background: transparent;
  color: #4a4a4a;
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.home__copy-btn:hover,
.home__copy-btn:focus-visible {
  color: #1a1a1a;
  border-color: #9a9690;
  background-color: rgba(0, 0, 0, 0.03);
  outline: none;
}

.home__copy-icon {
  display: block;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .home__copy-btn {
    display: inline-flex;
  }
}

.home__email {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.home__email:hover,
.home__email:focus-visible {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
