/* E&EL Global Inc. — eel-global.com */

:root {
  --bg: #0c0e0f;
  --surface: #141719;
  --border: #252a2e;
  --text: #e8eaec;
  --text-muted: #8b9299;
  --accent: #2dd4a8;
  --accent-dim: rgba(45, 212, 168, 0.15);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(12, 14, 15, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, var(--accent-dim) 0%, transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(20, 23, 25, 0.6) 70%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 0 1rem;
}

.hero-stats {
  font-size: 1rem;
  color: var(--text);
  max-width: 42rem;
  margin: 0 0 2rem;
}

.hero-stats strong {
  color: var(--accent);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: #26bf96;
  border-color: #26bf96;
}

.btn-ghost {
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

/* Sections */
.section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.section-intro {
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0 0 2.5rem;
  font-size: 1.0625rem;
}

/* Product cards (BranchWise, IntelFraud) */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card:last-child {
  margin-bottom: 0;
}

.product-card:hover {
  border-color: rgba(45, 212, 168, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.product-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.product-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.product-name {
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.product-tagline {
  font-size: 0.9375rem;
  color: var(--accent);
  margin: 0;
  font-weight: 500;
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0 0 1.25rem;
  line-height: 1.65;
}

.feature-list {
  margin: 0;
  padding-left: 1.35rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.feature-list li {
  margin-bottom: 0.65rem;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list strong {
  color: var(--text);
  font-weight: 600;
}

/* Why partner */
.why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
}

.why-item {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s ease;
}

.why-item:hover {
  border-color: rgba(45, 212, 168, 0.35);
}

.why-item h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--accent);
}

.why-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

/* CTA / Contact section */
.cta-section .section-title {
  margin-bottom: 1rem;
}

.contact-actions {
  margin-bottom: 1.5rem;
}

.contact-email-line {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-email-line .contact-email {
  font-size: 1rem;
}

/* Cards */
.card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: rgba(45, 212, 168, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.card-icon {
  display: block;
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

/* About */
.about-lead {
  font-size: 1.25rem;
  color: var(--text);
  max-width: 40rem;
  margin: 0 0 1rem;
}

.about-body {
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0;
}

/* Contact */
.contact-lead {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.contact-email {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-email:hover {
  color: #26bf96;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 640px) {
  .nav {
    gap: 1.25rem;
  }
  .hero {
    padding: 5rem 0 3rem;
  }
  .section {
    padding: 3.5rem 0;
  }
}
