/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: #111;
}

/* Header */
.site-header {
  border-bottom: 1px solid #eee;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
}

.nav-cta {
  text-decoration: none;
  font-size: 14px;
  border: 1px solid #111;
  padding: 8px 16px;
  border-radius: 999px;
  color: #111;
}

/* Header Brand */
.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
}

.header-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.header-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
}

/* Nav CTA already exists — no change needed */


/* Hero */
.hero {
  padding: 96px 24px 72px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 56px;
  font-weight: 500;
  color: #333;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

/* Responsive behavior */
@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Feature Card */
.feature-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.feature-card span {
  font-size: 15px;
  font-weight: 600;
}

/* Icon */
.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px #eee;
}

.icon-box i {
  font-size: 22px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* CTA */
.primary-cta {
  display: inline-block;
  padding: 16px 38px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.hero-footnote {
  margin-top: 24px;
  font-size: 13px;
  color: #666;
}


/* Waitlist Section */
.waitlist-section {
  padding: 96px 24px;
  background: #fafafa;
  border-top: 1px solid #eee;
}

.waitlist-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 16px;
}

.waitlist-description {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 40px;
  font-weight: 500;
}

/* Optional: soften GetWaitlist container alignment */
#getWaitlistContainer {
  margin: 0 auto;
}

/* Footer */
.site-footer {
  border-top: 1px solid #eee;
  padding: 40px 24px;
  background: #fff;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

/* Brand block */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-logo-image {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Text next to logo */
.footer-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
}

.footer-tagline {
  font-size: 13px;
  color: #666;
}

/* Links */
.footer-links a {
  font-size: 13px;
  color: #111;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }
}


/* Privacy Page Layout */
.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 96px 24px;
}

/* Page Title */
.privacy-container h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 42px;
  margin-bottom: 8px;
}

/* Last Updated */
.privacy-updated {
  font-size: 14px;
  color: #666;
  margin-bottom: 48px;
}

/* Section Headings */
.privacy-container h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  margin-top: 56px;
  margin-bottom: 16px;
}

/* Subheadings */
.privacy-container h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 12px;
}

/* Paragraphs */
.privacy-container p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #111;
}

/* Lists */
.privacy-container ul {
  margin: 16px 0 24px 20px;
}

.privacy-container li {
  margin-bottom: 8px;
}

/* Code (for chrome.storage.local etc) */
.privacy-container code {
  font-family: monospace;
  font-size: 14px;
  background: #f4f4f4;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Links */
.privacy-container a {
  color: #111;
  text-decoration: underline;
}
