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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: #050814;
  color: #e5e7eb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #93c5fd;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header / Nav */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(5, 8, 20, 0.96);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-text {
  font-family: system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.nav-tagline {
  font-size: 0.72rem;
  color: #9ca3af;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
}

.nav-links a {
  color: #e5e7eb;
}

.nav-links a:hover {
  color: #bfdbfe;
}

.nav-cta {
  margin-left: 8px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: transparent;
  color: #e5e7eb;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.45);
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.6);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

.btn-secondary:hover {
  background: rgba(30, 64, 175, 0.2);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

/* Hero */

.hero {
  padding: 56px 0 40px;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.15), transparent 55%),
              radial-gradient(circle at top right, rgba(16, 185, 129, 0.14), transparent 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.hero-logo {
  height: 40px;
  margin-bottom: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.72rem;
  color: #9ca3af;
  margin-bottom: 10px;
}

h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 10px;
}

h2 {
  font-size: 1.5rem;
  margin: 0 0 10px;
}

h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
}

h4 {
  font-size: 1rem;
  margin: 0 0 6px;
}

p {
  margin: 0 0 10px;
}

.hero-meta {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #9ca3af;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-card {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 18px 18px 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.hero-card ul {
  padding-left: 18px;
  margin: 8px 0 0;
  font-size: 0.88rem;
}

/* Sections */

section {
  padding: 40px 0;
}

.section-alt {
  background: #020617;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 6px;
}

.muted {
  color: #9ca3af;
}

.columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.card {
  padding: 16px 16px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.9rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.tier {
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.86rem;
}

.tier span {
  display: block;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 6px;
}

.tier ul {
  padding-left: 18px;
  margin: 0;
}

/* Testimonials */

.testimonials {
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.12), transparent 60%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.testimonial {
  padding: 16px 16px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.9rem;
}

.testimonial strong {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Lead magnet */

.lm {
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.12), transparent 60%);
}

.lm-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.lm-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  font-size: 0.9rem;
}

.lm-list li::before {
  content: "• ";
  color: #60a5fa;
}

.fake-form {
  padding: 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.9rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

label {
  font-size: 0.8rem;
  color: #cbd5f5;
}

input,
textarea,
select {
  border-radius: 9px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 7px 9px;
  background: #020617;
  color: #e5e7eb;
  font-size: 0.86rem;
  font-family: inherit;
}

textarea {
  min-height: 80px;
  resize: vertical;
}

.form-help {
  margin-top: 4px;
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Page hero */

.page-hero {
  padding: 40px 0 26px;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.16), transparent 60%);
}

/* Contact grid */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.contact-card {
  padding: 16px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.9rem;
}

/* Footer */

footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: #020617;
  padding: 18px 0;
  margin-top: 20px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Chat to Agent floating button + tooltip */

.chat-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 250;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.chat-tooltip {
  position: absolute;
  right: 0;
  bottom: 120%;
  transform: translateY(4px);
  background: #111827;
  color: #f9fafb;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .78rem;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}

.chat-float:hover .chat-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.chat-float .chat-icon {
  font-size: 1.1rem;
}

.chat-float:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .lm-inner,
  .contact-grid,
  .columns,
  .tiers,
  .grid-3,
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-links {
    display: none; /* Simple: nav collapses on mobile, links still accessible on pages */
  }
}

@media (max-width: 640px) {
  .chat-float {
    bottom: 16px;
    right: 16px;
    padding: 9px 14px;
    font-size: .85rem;
  }

  .chat-tooltip {
    display: none;
  }
}


/* Productivity stats list */
.stats-list {
  list-style: none;
  padding-left: 0;
  margin: 18px 0 0;
}

.stats-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.stats-list strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4ade80;
  min-width: 90px;
}

.stats-list span {
  color: #e5e7eb;
}

.muted.small {
  font-size: 0.85rem;
  color: #9ca3af;
}


/* 50/50 Productivity layout */
.productivity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.prod-left {
  width: 100%;
}

.prod-right {
  width: 100%;
  display: flex;
  justify-content: center;
}

.productivity-card {
  width: 100%;
  max-width: 540px;
  padding: 24px;
  background: radial-gradient(circle at top left,
    rgba(56, 189, 248, 0.2),
    rgba(15, 23, 42, 0.95));
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.stat-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

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