:root {
  --radius: 0.625rem;
  --background: oklch(0.985 0.005 80);
  --foreground: oklch(0.2 0.02 260);
  --muted-foreground: oklch(0.5 0.03 260);
  --border: oklch(0.9 0.015 80);
  --brand: oklch(0.52 0.21 25);
  --brand-foreground: oklch(0.99 0.005 25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border: 0 solid var(--border);
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--background);
  color: var(--foreground);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background-color: color-mix(in oklab, var(--background) 95%, transparent);
  backdrop-filter: blur(8px);
}

.header-inner {
  margin: 0 auto;
  display: flex;
  height: 5rem;
  max-width: 80rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 3rem;
  width: auto;
}

.header-accent {
  display: none;
  height: 0.375rem;
  width: 4rem;
  border-radius: 9999px;
  background-color: var(--brand);
}

/* Main */
.main {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.content {
  margin: 0 auto;
  max-width: 42rem;
  text-align: center;
}

.badge {
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: color-mix(in oklab, var(--brand) 10%, transparent);
  padding: 0.375rem 1rem;
}

.dot-wrap {
  position: relative;
  display: flex;
  height: 0.625rem;
  width: 0.625rem;
}

.dot-ping {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  background-color: var(--brand);
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.dot {
  position: relative;
  display: inline-flex;
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 9999px;
  background-color: var(--brand);
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.badge-text {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand);
}

h1 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand-text {
  color: var(--brand);
}

.lede {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 2rem;
  color: var(--muted-foreground);
}

.actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: var(--brand);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-foreground);
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.btn:hover {
  background-color: color-mix(in oklab, var(--brand) 90%, transparent);
}

.btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.contact-email {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.features {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature svg {
  height: 1.25rem;
  width: 1.25rem;
  color: var(--brand);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background-color: var(--background);
  padding: 1.5rem 0;
}

.footer-inner {
  margin: 0 auto;
  max-width: 80rem;
  padding: 0 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .header-inner,
  .main,
  .footer-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .header-accent {
    display: block;
  }
  h1 {
    font-size: 3rem;
  }
  .actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .header-inner,
  .main,
  .footer-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  h1 {
    font-size: 3.75rem;
  }
}
