:root {
  --home-primary: #25d366;
  --home-primary-dark: #1ebe57;
  --home-secondary: #1c1d33;
  --home-secondary-soft: #2a2b45;
  --home-text: #1c1d33;
  --home-muted: #6b6d7a;
  --home-border: #e8eaef;
  --home-surface: #f8faf9;
  --home-mint: #e8faf0;
  --home-shadow: 0 24px 60px rgba(28, 29, 51, 0.08);
  --home-radius: 16px;
  --home-max: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--home-text);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.home-container {
  width: min(100% - 40px, var(--home-max));
  margin: 0 auto;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(232, 234, 239, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.home-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.home-logo {
  text-decoration: none;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
}

.home-nav a {
  text-decoration: none;
  color: var(--home-muted);
  transition: color 0.15s ease;
}

.home-nav a:hover {
  color: var(--home-secondary);
}

.home-nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--home-secondary);
  color: #fff !important;
}

.home-nav-cta:hover {
  background: var(--home-secondary-soft);
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at top right, rgba(37, 211, 102, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.08);
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.home-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--home-primary-dark);
}

.home-eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.home-hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--home-secondary);
}

.home-lead {
  margin: 0 0 28px;
  max-width: 560px;
  font-size: 18px;
  color: var(--home-muted);
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.home-btn:hover {
  transform: translateY(-1px);
}

.home-btn-primary {
  background: var(--home-primary);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28);
}

.home-btn-primary:hover {
  background: var(--home-primary-dark);
}

.home-btn-ghost {
  border: 1px solid var(--home-border);
  background: #fff;
  color: var(--home-secondary);
}

.home-btn-lg {
  min-height: 52px;
  padding: 0 26px;
}

.home-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--home-muted);
  font-size: 14px;
}

.home-trust-list li {
  position: relative;
  padding-left: 18px;
}

.home-trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-primary);
}

.home-hero-visual {
  display: flex;
  justify-content: center;
}

.home-dashboard-card {
  width: min(100%, 460px);
  border: 1px solid var(--home-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--home-shadow);
  overflow: hidden;
}

.home-dashboard-top {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  background: var(--home-secondary);
}

.home-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.home-dashboard-body {
  padding: 22px;
}

.home-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.home-stat {
  padding: 16px;
  border-radius: 14px;
  background: var(--home-surface);
}

.home-stat-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--home-muted);
}

.home-stat strong {
  font-size: 28px;
  line-height: 1;
  color: var(--home-secondary);
}

.home-message-list {
  display: grid;
  gap: 12px;
}

.home-message-item {
  padding: 14px 16px;
  border: 1px solid var(--home-border);
  border-radius: 14px;
  background: #fff;
}

.home-message-item.is-inbound {
  background: var(--home-mint);
  border-color: rgba(37, 211, 102, 0.18);
}

.home-message-badge {
  display: inline-block;
  margin-bottom: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(28, 29, 51, 0.06);
  font-size: 11px;
  font-weight: 600;
  color: var(--home-secondary);
}

.home-message-item.is-inbound .home-message-badge {
  background: rgba(37, 211, 102, 0.16);
  color: var(--home-primary-dark);
}

.home-message-item p {
  margin: 0;
  font-size: 14px;
  color: var(--home-secondary);
}

.home-section {
  padding: 84px 0;
}

.home-section-head {
  max-width: 680px;
  margin-bottom: 40px;
}

.home-section-head h2,
.home-section-dark h2,
.home-section-contact h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--home-secondary);
}

.home-section-desc {
  margin: 0;
  font-size: 17px;
  color: var(--home-muted);
}

.home-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-feature-card {
  padding: 24px;
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  background: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.home-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(28, 29, 51, 0.06);
}

.home-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--home-mint);
  color: var(--home-primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.home-feature-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--home-secondary);
}

.home-feature-card p {
  margin: 0;
  font-size: 15px;
  color: var(--home-muted);
}

.home-section-dark {
  background: linear-gradient(135deg, #1c1d33 0%, #252742 100%);
  color: #fff;
}

.home-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.home-cta-panel h2 {
  color: #fff;
}

.home-cta-panel p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.home-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.home-contact-card {
  padding: 28px;
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  background: var(--home-surface);
}

.home-contact-label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--home-muted);
}

.home-contact-value {
  display: inline-block;
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--home-secondary);
  text-decoration: none;
}

.home-contact-value:last-child {
  margin-bottom: 0;
}

.home-footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--home-border);
  background: #fff;
}

.home-footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-footer-logo {
  margin-bottom: 10px;
}

.home-footer p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
}

.home-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.home-footer-nav a {
  color: var(--home-muted);
  font-size: 14px;
  text-decoration: none;
}

.home-footer-nav a:hover {
  color: var(--home-secondary);
}

@media (max-width: 960px) {
  .home-hero-grid,
  .home-features,
  .home-contact-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 48px;
  }

  .home-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .home-header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
    min-height: auto;
  }

  .home-nav {
    flex-wrap: wrap;
  }

  .home-section {
    padding: 64px 0;
  }

  .home-footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}
