/* Rewoven Premium — site styles */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --green-50:  #ECFDF5;
  --green-100: #D1FAE5;
  --green-200: #A7F3D0;
  --green-400: #34D399;
  --green-500: #10B981;
  --green-600: #059669;
  --green-700: #047857;
  --green-800: #065F46;
  --gold:      #F59E0B;
  --dark:      #111827;
  --gray-600:  #4B5563;
  --gray-400:  #9CA3AF;
  --gray-200:  #E5E7EB;
  --white:     #FFFFFF;
  --bg-cream:  #F0FDF4;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Layout primitives */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px;
  font-family: inherit; font-size: 16px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--green-500); color: var(--white);
  box-shadow: 0 4px 14px rgba(16,185,129,0.4);
}
.btn-primary:hover {
  background: var(--green-600); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16,185,129,0.5);
}
.btn-secondary {
  background: var(--white); color: var(--green-700);
  border: 2px solid var(--green-200);
}
.btn-secondary:hover {
  background: var(--green-50); border-color: var(--green-500);
}
.btn-xl { padding: 18px 36px; font-size: 18px; }

/* Nav */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; }
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 800; color: var(--green-800);
}
.nav-links {
  display: flex; align-items: center; gap: 24px; list-style: none;
}
.nav-links a {
  color: var(--gray-600); font-size: 15px; font-weight: 500;
}
.nav-links a:hover { color: var(--green-600); }
.user-pill {
  display: inline-flex; align-items: center; padding: 6px 14px;
  border-radius: 50px;
  background: var(--green-50); color: var(--green-700);
  font-size: 13px; font-weight: 600;
}

/* Hero — single centered column */
.hero {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--green-50) 60%, var(--white) 100%);
  padding: 96px 0 80px;
  text-align: center;
}
.hero .container {
  max-width: 760px;
}
.badge {
  display: inline-block;
  padding: 6px 16px; border-radius: 50px;
  background: var(--green-100); color: var(--green-700);
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 800; line-height: 1.15;
  color: var(--dark); margin-bottom: 24px;
}
.highlight {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
}
.lede {
  font-size: 18px; line-height: 1.65; color: var(--gray-600);
  max-width: 560px; margin: 0 auto 36px;
}

/* CTA area inside hero */
#cta-area { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-note { font-size: 13px; color: var(--gray-400); }

.status-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-radius: 16px;
  background: var(--green-50); border: 1px solid var(--green-200);
  text-align: left; max-width: 520px;
}
.status-icon { font-size: 32px; }
.status-card h3 { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 800; }
.status-card p { font-size: 14px; color: var(--gray-600); }

/* Features section */
.features { padding: 100px 0; background: var(--white); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; text-align: center;
  color: var(--dark); margin-bottom: 56px; line-height: 1.2;
}
.section-subtitle {
  font-size: 18px; line-height: 1.7; color: var(--gray-600);
  max-width: 640px; margin: 0 auto; text-align: center;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-cream);
  border: 1px solid var(--green-100);
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(16,185,129,0.12);
}
.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 19px; font-weight: 800;
  color: var(--dark); margin-bottom: 8px;
}
.feature-card p { color: var(--gray-600); font-size: 15px; line-height: 1.6; }

/* Why section */
.why { padding: 100px 0; background: var(--green-50); }

/* Footer */
footer {
  padding: 48px 0; text-align: center;
  color: var(--gray-400); font-size: 14px;
  border-top: 1px solid var(--gray-200);
}
footer a { color: var(--green-600); font-weight: 600; }

/* Mobile */
@media (max-width: 760px) {
  .feature-grid { grid-template-columns: 1fr; }
  .nav-links li:not(:last-child) { display: none; }
  .hero { padding: 72px 0 56px; }
}
