/* Minimal overrides for pared-down landing (hero + FAQ + minimal footer) */
:root {
  --green-50: #ecfdf5;
  --green-100: #d1fae5;
  --green-200: #a7f3d0;
  --green-600: #16A34A;
  --green-500: #22C55E;
  --teal-500: #0EA5A7;
}

/* Hero background */
.hero {
  background: linear-gradient(to bottom, #F7F3EC 0%, #F7F3EC 78%, rgba(255,255,255,0.94) 90%, #FFFFFF 100%);
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(104px, 15vh, 168px);
  padding-bottom: clamp(80px, 11vh, 132px);
}

/* Hero heading */
.hero-copy h1 {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #111827;
  margin-bottom: 28px;
}

.hero-intro { 
  color: rgba(17,24,39,0.75); 
}

/* Hero features list */
.hero-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(17, 24, 39, 0.8);
}

.hero-features .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #1BC860, #16A34A);
  border-radius: 50%;
  color: white;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* Center CTA */
.hero-actions {
  justify-content: center;
  margin-top: 8px;
}

.hero-actions .btn-primary {
  min-width: 280px;
  font-size: 17px;
}

/* Gap before bot cards */
.hero .hero-tools-wrapper {
  margin-top: clamp(72px, 10vh, 120px);
}

@media (max-width: 768px) {
  .hero-actions { align-items: center; }
  .hero .hero-tools-wrapper { margin-top: clamp(80px, 16vh, 130px); }
}

/* Tool cards */
.tool-card {
  background: #FFFFFF;
  border: 1px solid rgba(12,32,63,0.06);
  border-radius: var(--radius-sm, 14px);
  box-shadow: 0 1px 1px rgba(12,32,63,0.04), 0 4px 8px -2px rgba(12,32,63,0.06), 0 12px 24px -8px rgba(12,32,63,0.05);
  transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
}

.tool-card:hover {
  border-color: rgba(27,200,96,0.35);
  box-shadow: 0 2px 4px rgba(12,32,63,0.06), 0 6px 14px -2px rgba(12,32,63,0.10), 0 18px 32px -10px rgba(12,32,63,0.08);
  transform: translateY(-4px);
}

/* FAQ accents */
.faq-question {
  border-left: 4px solid transparent;
  background: linear-gradient(90deg, rgba(22,163,74,0.06), rgba(22,163,74,0));
}

.faq-question:hover {
  background: linear-gradient(90deg, rgba(22,163,74,0.16), rgba(22,163,74,0.04));
  border-left-color: var(--green-600);
}

.faq-question.active {
  background: linear-gradient(90deg, rgba(22,163,74,0.24), rgba(22,163,74,0.10));
  border-left-color: var(--green-500);
}

/* Minimal footer */
.minimal-footer {
  background: #0C203F;
  padding: 48px 0 24px;
}

.footer-minimal {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand-small {
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 28px;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, var(--green-600), var(--green-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-blurb { 
  color: rgba(255,255,255,0.72); 
  font-size: 15px; 
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-legal a { color: var(--green-100); }
.footer-legal a:hover { color: var(--green-500); }

@media (max-width: 640px) {
  .footer-minimal { flex-direction: column; }
  .footer-legal { align-items: flex-start; }
  .hero-copy h1 { font-size: clamp(34px, 9vw, 54px); }
}

/* Use case cards grid */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.use-case-card {
  background: #FFFFFF;
  border: 1px solid rgba(12,32,63,0.06);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 1px 1px rgba(12,32,63,0.04), 0 4px 8px -2px rgba(12,32,63,0.06), 0 12px 24px -8px rgba(12,32,63,0.05);
  transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.use-case-card:hover {
  border-color: rgba(27,200,96,0.35);
  box-shadow: 0 2px 4px rgba(12,32,63,0.06), 0 6px 14px -2px rgba(12,32,63,0.10), 0 18px 32px -10px rgba(12,32,63,0.08);
  transform: translateY(-4px);
}

.use-case-card h3 {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.use-case-card p {
  font-size: 15px;
  color: rgba(17,24,39,0.7);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 640px) {
  .use-case-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(27, 200, 96, 0.12);
  color: #16A34A;
  border: 1px solid rgba(27, 200, 96, 0.2);
  margin: 16px 0;
}

/* Pulsing badge for "in development" */
.hero-badge-pulse {
  background: rgba(245, 158, 11, 0.12);
  color: #B45309;
  border-color: rgba(245, 158, 11, 0.25);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
  }
}

/* Legal pages styling */
.legal-page {
  background: linear-gradient(to bottom, #F7F3EC 0%, #FFFFFF 100%);
}

.legal-page main {
  padding-top: 120px;
  padding-bottom: 80px;
}

.legal-article {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(12,32,63,0.06);
  box-shadow: 0 4px 12px rgba(12,32,63,0.04), 0 20px 40px -16px rgba(12,32,63,0.08);
}

.legal-article h1 {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: #111827;
}

.legal-meta {
  color: rgba(17,24,39,0.55);
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(12,32,63,0.08);
}

.legal-section h2 {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: #111827;
}

.legal-section p,
.legal-section li {
  font-family: 'Inter', system-ui, sans-serif;
  color: rgba(17,24,39,0.75);
  line-height: 1.7;
}

.legal-section a {
  color: var(--green-600, #16A34A);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section a:hover {
  color: var(--green-500, #22C55E);
}

.legal-section ul,
.legal-section ol {
  list-style-position: outside;
  padding-left: 1.5rem;
}

.legal-section ul {
  list-style-type: disc;
}

.legal-section ol {
  list-style-type: decimal;
}

/* Waitlist page styles */
.waitlist-hero {
  min-height: 100vh;
  background: linear-gradient(to bottom, #F7F3EC 0%, #FFFFFF 100%);
  padding: 140px 0 80px;
}

.waitlist-content {
  max-width: 560px;
  margin: 0 auto;
}

.waitlist-content h1 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  text-align: center;
}

.waitlist-intro {
  font-size: 17px;
  color: rgba(17,24,39,0.7);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.waitlist-form {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(12,32,63,0.04), 0 20px 40px -16px rgba(12,32,63,0.08);
  border: 1px solid rgba(12,32,63,0.06);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #111827;
  margin-bottom: 8px;
}

.form-group .optional {
  font-weight: 400;
  color: rgba(17,24,39,0.5);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-family: 'Inter', system-ui, sans-serif;
  border: 1px solid rgba(12,32,63,0.15);
  border-radius: 10px;
  background: #FAFAFA;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-500, #22C55E);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(17,24,39,0.4);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(12,32,63,0.1);
  background: #FAFAFA;
  transition: all 0.2s;
}

.checkbox-label:hover {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.3);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--green-500, #22C55E);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-text {
  color: #111827;
  font-weight: 500;
}

.checkbox-text {
  font-size: 15px;
  color: rgba(17,24,39,0.75);
}

.btn-submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 17px;
  margin-top: 8px;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Success/Error messages */
.form-message {
  text-align: center;
  padding: 48px 32px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(12,32,63,0.04), 0 20px 40px -16px rgba(12,32,63,0.08);
  border: 1px solid rgba(12,32,63,0.06);
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1BC860, #16A34A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 28px;
  font-weight: bold;
}

.form-error .error-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #EF4444, #DC2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 28px;
  font-weight: bold;
}

.form-message h2 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 24px;
  color: #111827;
  margin-bottom: 12px;
}

.form-message p {
  color: rgba(17,24,39,0.7);
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .waitlist-form {
    padding: 24px;
  }
  
  .waitlist-hero {
    padding: 120px 16px 60px;
  }
}

/* FAQ base styles for mobile */
.faq {
  background: #fff !important;
  padding: 60px 0 !important;
}

.faq .container {
  padding: 0 16px;
}

.faq-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.faq-item {
  border: 1px solid rgba(12, 32, 63, 0.12) !important;
  border-radius: 12px !important;
  background: #FAFAF9 !important;
  overflow: hidden !important;
  flex: none !important;
}

.faq-question {
  display: block !important;
  width: 100% !important;
  padding: 18px 48px 18px 18px !important;
  background: transparent !important;
  border: none !important;
  text-align: left !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  color: #111827 !important;
  cursor: pointer !important;
  position: relative !important;
  line-height: 1.4 !important;
}

.faq-question::after {
  content: '+' !important;
  position: absolute !important;
  right: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 20px !important;
  color: rgba(12, 32, 63, 0.5) !important;
}

.faq-question.active {
  background: rgba(27, 200, 96, 0.1) !important;
}

.faq-question.active::after {
  content: '−' !important;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 18px 18px !important;
  color: rgba(17, 24, 39, 0.7) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Desktop FAQ improvements */
@media (min-width: 768px) {
  .faq-grid {
    flex-direction: row;
    gap: 18px;
  }
  
  .faq-item {
    flex: 1;
  }
  
  .faq-question {
    padding: 22px 48px 22px 24px;
    font-size: 16px;
  }
  
  .faq-question::after {
    right: 24px;
  }
  
  .faq-answer p {
    padding: 0 24px 24px;
    font-size: 15px;
  }
}
