:root {
  --cream: #F5F0E8;
  --black: #1A1A1A;
  --brown: #8B7355;
  --brown-light: #A68B6B;
  --brown-dark: #6B5740;
  --gray: #666;
  --gray-light: #999;
  --border: #E0D8CC;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', -apple-system, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  position: relative;
  z-index: 10;
}

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

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--black);
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 6rem);
  padding: 2rem;
  position: relative;
}

.hero-content {
  z-index: 2;
  max-width: 700px;
}

.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--brown);
  border: 1.5px solid var(--brown);
  padding: 0.4rem 1.4rem;
  border-radius: 2px;
  margin-bottom: 2.5rem;
}

.headline {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.headline .line1 {
  display: block;
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: var(--black);
}

.headline .line2 {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gray-light);
  font-weight: 400;
}

.headline .line3 {
  display: block;
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: var(--brown);
}

.subhead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* Signup */
.signup-block {
  max-width: 460px;
  margin: 0 auto;
}

.signup-label {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.signup-form {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s;
  background: #fff;
}

.signup-form:focus-within {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.signup-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.25rem;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.signup-form input::placeholder {
  color: #bbb;
}

.signup-form button {
  background: var(--black);
  border: none;
  padding: 1rem 1.75rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
  white-space: nowrap;
}

.signup-form button:hover {
  background: var(--brown-dark);
}

.signup-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.signup-msg {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  min-height: 1.2em;
}

.signup-msg.success { color: #2d8a56; }
.signup-msg.error { color: #c0392b; }

/* Hide hero visual — clean minimal layout */
.hero-visual {
  display: none;
}

/* Values section */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 5rem 3rem;
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.value-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 1rem;
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 3rem;
  text-align: center;
}

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

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.social-link {
  color: var(--gray-light);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.social-link:hover {
  color: var(--brown);
}

.copyright {
  font-size: 0.75rem;
  color: var(--gray-light);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 3rem 1.5rem 4rem;
  }

  .headline .line1,
  .headline .line3 {
    font-size: 3rem;
  }

  .headline .line2 {
    font-size: 1.75rem;
  }

  .subhead {
    font-size: 0.95rem;
  }

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

  .signup-form button {
    justify-content: center;
  }

  .values {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 3rem 1.5rem;
  }

  .nav {
    padding: 1.5rem;
  }
}

/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content {
  animation: fadeUp 0.7s ease-out;
}

.values .value-item {
  animation: fadeUp 0.5s ease-out both;
}

.values .value-item:nth-child(1) { animation-delay: 0.3s; }
.values .value-item:nth-child(2) { animation-delay: 0.4s; }
.values .value-item:nth-child(3) { animation-delay: 0.5s; }

/* Remove grain overlay for clean look */
.grain-overlay { display: none; }
