/* MeadowList — Design tokens mirror ios/MeadowList/Theme/Theme.swift */

:root {
  --moss: #607F67;
  --robin: #F45E2F;
  --evergreen: #12352C;
  --primary: #152521;
  --secondary: #76736A;
  --background-base: #FAF7F5;
  --background-tint: #EAE7E3;
  --treefrog: #ADC8B4;
}

@font-face {
  font-family: "Averta Std";
  src: url("fonts/AvertaStd-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Averta Std";
  src: url("fonts/AvertaStd-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Averta Std";
  src: url("fonts/AvertaStd-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

html, body {
  height: 100%;
}

body {
  font-family: "Averta Std", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: var(--moss);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 32px;
}

.logo {
  width: min(80%, 360px);
  height: auto;
}

.tagline {
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 400;
  letter-spacing: 0.1px;
  opacity: 0.9;
  max-width: 480px;
}

.coming-soon {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.25px;
  margin-top: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}

footer {
  padding: 24px;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 0.1px;
}
