/* EcoNaari — Under Construction (brand colors from brochure) */

:root {
  --green-dark: #2f5a3c;
  --green-mid: #4a7c59;
  --green-light: #6b8f71;
  --green-soft: #a8c5a0;
  --cream: #f8f5ee;
  --cream-dark: #ebe6da;
  --white: #ffffff;
  --text: #2a3d30;
  --text-muted: #5c6b5f;
  --accent-pink: #e8b4b8;
  --accent-mint: #b8d4c8;
  --shadow: rgba(47, 90, 60, 0.12);
  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background pattern */
.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(168, 197, 160, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(184, 212, 200, 0.3), transparent 50%),
    var(--cream);
  pointer-events: none;
}

.bg-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c-2 8-8 14-16 16 8 2 14 8 16 16 2-8 8-14 16-16-8-2-14-8-16-16z' fill='%232f5a3c'/%3E%3C/svg%3E");
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrap {
  text-align: center;
}

.logo {
  width: min(220px, 55vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px var(--shadow));
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 3rem;
}

.hero-inner {
  max-width: 720px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--green-soft);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px var(--shadow);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-mid);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

h1 span {
  display: block;
  font-size: 0.55em;
  font-weight: 500;
  color: var(--green-mid);
  margin-top: 0.35rem;
}

.lead {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2rem;
}

.tagline-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2rem;
  max-width: 560px;
}

.tagline-line {
  flex: 1;
  height: 2px;
  max-width: 72px;
  background: linear-gradient(90deg, transparent, var(--green-dark));
  border-radius: 2px;
}

.tagline-line:last-child {
  background: linear-gradient(90deg, var(--green-dark), transparent);
}

.tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.3;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  box-shadow:
    0 4px 20px rgba(47, 90, 60, 0.35),
    0 0 0 3px rgba(168, 197, 160, 0.45);
  letter-spacing: 0.02em;
}

.tagline-part {
  white-space: nowrap;
}

.tagline-sep {
  font-style: normal;
  font-size: 0.85em;
  opacity: 0.85;
  color: var(--accent-mint);
}

/* Progress bar */
.progress-section {
  margin-bottom: 2.5rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.progress-track {
  height: 6px;
  background: var(--cream-dark);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  border-radius: 100px;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

/* Features strip */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature {
  padding: 1.25rem 1rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(47, 90, 60, 0.1);
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow);
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.feature h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}

.feature p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Notify form */
.notify {
  max-width: 440px;
  margin: 0 auto 2rem;
}

.notify-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.notify-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  height: 46px;
  padding: 0 1.15rem;
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.2;
  background: var(--white);
  color: var(--text);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.notify-form input[type="email"]:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(107, 143, 113, 0.2);
}

.notify-form button {
  flex: 0 0 auto;
  height: 46px;
  padding: 0 1.5rem;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.notify-form button:hover {
  background: var(--green-mid);
  transform: scale(1.02);
}

.notify-form button:active {
  transform: scale(0.98);
}

.notify-msg {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--green-mid);
  min-height: 1.25rem;
}

/* Contact */
.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.contact a:hover {
  color: var(--green-mid);
}

/* Footer */
.footer {
  padding: 1.5rem 2rem;
  text-align: center;
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}

.footer strong {
  color: var(--white);
  font-weight: 600;
}

.footer-tagline {
  margin-top: 0.35rem;
  font-family: var(--font-serif);
  font-style: italic;
  opacity: 0.9;
  font-size: 0.9rem;
}

/* Decorative leaves */
.leaf {
  position: fixed;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  color: var(--green-dark);
}

.leaf-1 { top: 12%; left: 5%; font-size: 4rem; transform: rotate(-20deg); }
.leaf-2 { top: 60%; right: 8%; font-size: 3rem; transform: rotate(15deg); }
.leaf-3 { bottom: 18%; left: 12%; font-size: 2.5rem; transform: rotate(40deg); }

@media (max-width: 480px) {
  .header { padding: 1rem; }
  .hero { padding: 1.5rem 1rem 2rem; }
  .notify-form {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }
  .notify-form input[type="email"] {
    flex: none;
    width: 100%;
    height: 44px;
    padding: 0 1rem;
    font-size: 16px;
  }
  .notify-form button {
    width: 100%;
    height: 44px;
    padding: 0 1rem;
  }
  .tagline-line { display: none; }
  .tagline {
    width: 100%;
    padding: 0.9rem 1.25rem;
    font-size: 1.2rem;
  }
}
