:root {
  --primary-green: #4D9E74;
  --secondary-mint: #B4E1D6;
  --deep-leaf: #2B5F46;
  --ui-background: #FFFFFF;
  --soft-neutral: #EDE7DA;
  --accent-orange: #F3A041;
  --error-red: #D9534F;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--ui-background);
  color: var(--deep-leaf);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.container {
  max-width: 600px;
  text-align: center;
}

/* Branding */
.brand {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--deep-leaf);
  margin-bottom: 10px;
}

.trademark {
  font-size: 0.8rem;
  vertical-align: super;
}

/* Headline */
.coming-soon {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 16px;
}

.tagline {
  font-size: 1.2rem;
  color: var(--deep-leaf);
  margin-bottom: 40px;
}

/* Email Notify Section */
.notify-section p {
  font-weight: 600;
  margin-bottom: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input[type="email"] {
  padding: 12px 16px;
  border: 2px solid var(--soft-neutral);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

button {
  padding: 12px 16px;
  background-color: var(--accent-orange);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #e48b25;
}

/* Footer */
footer {
  margin-top: 60px;
  font-size: 0.875rem;
  color: #666;
  line-height: 1.4;
}

