:root {
  --primary: #005f99;
  --secondary: #1982c4;
  --dark: #333;
  --light: #f7f9fc;
  --gray: #666;
  --max-width: 1100px;

}

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

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, sans-serif;
  color: var(--dark);
  background: linear-gradient(to bottom, #fffcf0, #F0F8FF);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0.5rem;
  z-index: 1000;
  transition: all 0.3s ease;
  border-radius: 30px 30px 30px 30px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  flex: 1 1 auto;
  justify-content: center;
}

.nav-links li a {
  font-weight: 500;
  color: var(--gray);
}

.nav-links li a:hover {
  color: var(--primary);
}

.toggle,
.hamburger {
  display: none;
}

.auth-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}


main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
}

.hero .accent {
  color: var(--primary);
}

.hero-copy {
  text-align: left;
  max-width: 540px;
  margin: 0 auto;
}

.hero-eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin: 0 0 0.75rem 0;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  display: grid;
  gap: 0.75rem;
}

.hero-benefits li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--dark);
}

.hero-benefits span {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.4;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cta-btn.large {
  padding: 1rem 2rem;
}

.sample-report-teaser {
  margin-top: 1.5rem;
}

.sample-report-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
}

.sample-report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.sample-report-card img {
  width: 160px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
}

.sample-report-copy {
  text-align: left;
  color: var(--dark);
}

.sample-report-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}

.sample-report-copy strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.sample-report-copy p {
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.cta-microcopy {
  margin-top: 0.75rem;
  color: #cccccc;
  font-size: 0.9rem;
}

.trust-band {
  margin-top: 1.75rem;
  background: #fff;
  padding: 1.25rem;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.trust-intro {
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.trust-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--gray);
  font-size: 0.95rem;
}

.trust-stats strong {
  color: var(--primary);
  font-size: 1.1rem;
}

.trust-footnote {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--gray);
}

.chat-demo-container {
  text-align: center;
}

.chat-caption {
  margin-top: 0.75rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.cta-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
}

.cta-btn.secondary {
  background: var(--secondary);
}

.cta-btn:hover {
  opacity: .9;
}

.features {
  padding: 2rem 0;
}

.features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.features article {
  background: #fff;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.features h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

.features article h4 {
  margin-top: 0;
  color: var(--primary);
  font-size: 1.1rem;
}

.features article p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.95rem;
}

.social-proof {
  padding: 3rem 1rem;
  text-align: center;
}

.social-proof h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-grid blockquote {
  background: #fff;
  border-radius: 6px;
  padding: 1.5rem;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.testimonial-grid p {
  margin: 0 0 1rem 0;
  color: var(--dark);
}

.testimonial-grid cite {
  color: var(--gray);
  font-style: normal;
  font-size: 0.9rem;
}

.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 3rem 1rem;
  border-radius: 8px;
  margin: 3rem 0;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.cta-banner h2 {
  margin-top: 0;
  font-size: 2rem;
}

.cta-banner p {
  margin: 0.75rem auto 0 auto;
  max-width: 560px;
}

.cta-banner .cta-buttons {
  justify-content: center;
}

.cta-banner .cta-btn.secondary {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.chat-highlight,
.waitlist {
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 6px;
  margin-top: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.waitlist-form {
  display: grid;
  gap: 1rem;
  max-width: 400px;
}

.waitlist-form input,
.waitlist-form textarea,
.waitlist-form button {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
}

.waitlist-form button {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
}

.waitlist-form button:hover {
  opacity: .9;
}

.waitlist-form span {
  color: var(--secondary);
  margin-left: 4px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.9rem;
}

/* Make the two checkbox groups appear in one row */
.waitlist-form .checkbox-group:first-of-type,
.waitlist-form .checkbox-group:last-of-type {
  display: inline-flex;
  width: 48%;
}

.waitlist-form .checkbox-group:first-of-type {
  margin-right: 2%;
}

/* SMS Disclaimer Styling */
.sms-disclaimer {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 1rem;
  margin: 1rem 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.sms-disclaimer p {
  margin: 0;
  color: #495057;
}

.sms-disclaimer strong {
  color: var(--primary);
}

.sms-disclaimer a {
  color: var(--primary);
  text-decoration: underline;
}

.sms-disclaimer a:hover {
  color: var(--secondary);
}


footer {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  padding: 1rem 0;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.footer-links span {
  color: var(--gray);
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
  color: var(--secondary);
}

.footer-privacy-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-privacy-label {
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-privacy-note a {
  color: var(--primary);
  text-decoration: underline;
}

.footer-privacy-note a:hover {
  color: var(--secondary);
}

.footer-privacy-note span,
.footer-privacy-note a {
  text-align: center;
}

@media (max-width: 540px) {
  .footer-links {
    gap: 0.75rem;
  }

  .footer-privacy-note {
    font-size: 0.8rem;
  }
}

.floating-try-free {
  position: fixed;
  right: 1.5rem;
  bottom: 6.5rem;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.5rem;
  border-radius: 999px;
  background: rgb(5, 5, 5);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-try-free:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

@media (max-width: 768px) {
  .floating-try-free {
    right: 1rem;
    bottom: 7.5rem;
    padding: 0.65rem 1.35rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .floating-try-free {
    bottom: 9rem;
    font-size: 0.9rem;
  }
}


.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 24px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  z-index: 1000;
  transform: translateX(400px);
  transition: transform 0.3s ease-in-out;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  background-color: #10b981;
}

.notification.error {
  background-color: #ef4444;
}

.notification.info {
  background-color: #3b82f6;
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading .cta-btn {
  position: relative;
}

.loading .cta-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hidden {
  display: none;
}

.blog-post {
  background: #fff;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.blog-post img {
  max-width: 100%;
  height: auto;
}

.blog-post.pinned {
  border: 2px solid var(--secondary);
}

.pinned-badge {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.category-badge {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.post-meta {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.tags {
  margin-top: 1rem;
}

.tag {
  display: inline-block;
  background: #e5e5e5;
  color: var(--dark);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.75rem;
  margin: 0 0.5rem 0.5rem 0;
}

.author-bio {
  margin-top: 2rem;
  padding: 1rem;
  background: #f7f9fc;
  border-left: 4px solid var(--primary);
}

.pagination {
  text-align: center;
  margin-top: 2rem;
}

.pagination a {
  margin: 0 0.25rem;
  padding: 0.25rem 0.5rem;
  color: var(--primary);
}

.pagination a.active {
  font-weight: bold;
}

.hero-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-top-grid h1 {
  margin: 0;
}


.feature-item {
  padding: 1rem;
  font-weight: 500;
  font-size: 0.9rem;
}


/* Responsive layout tweaks */
@media (max-width: 1080px) {
  .hero-top-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-copy {
    text-align: center;
    max-width: 100%;
  }

  .hero-benefits {
    margin: 1.5rem auto 0 auto;
  }

  .hero-benefits li {
    justify-content: center;
    text-align: left;
  }

  .cta-buttons {
    justify-content: center;
  }

  .sample-report-card {
    flex-direction: column;
    text-align: center;
  }

  .sample-report-card img {
    width: 200px;
  }

  .sample-report-copy {
    text-align: center;
  }

  .trust-stats {
    justify-content: center;
    text-align: center;
  }

  .trust-stats span {
    display: block;
  }
}

@media (max-width: 768px) {
  .navbar {
    gap: 0.5rem 1rem;
  }

  .logo {
    order: 1;
  }

  .auth-container {
    order: 2;
    margin-left: auto;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid #e5e5e5;
    gap: 1rem;
  }
}

@media (max-width: 540px) {
  .nav-links {
    justify-content: flex-start;
  }

  .sample-report-card {
    padding: 1rem;
  }
}