/* --------------------------------------------------------
   worxbot.com — dark, minimalist, geometric
   -------------------------------------------------------- */

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

:root {
  --bg:       #06060f;
  --surface:  #0c0c1a;
  --border:   #1a1a2e;
  --text:     #d4d4d8;
  --text-dim: #71717a;
  --heading:  #fafafa;
  --accent:   #a78bfa;
  --mono:     'JetBrains Mono', monospace;
  --sans:     'Inter', system-ui, -apple-system, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

/* ---- Canvas background ---- */

#geo {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---- Layout ---- */

.container {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Hero ---- */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 0;
}

.logo {
  font-family: var(--mono);
  font-size: 4rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.03em;
  line-height: 1;
}

.tagline {
  margin-top: 1.25rem;
  font-size: 1.15rem;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ---- Sections ---- */

.section {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.section-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}

.section-body p {
  font-size: 1.05rem;
  max-width: 640px;
}

.section-body p + p {
  margin-top: 1.25rem;
}

/* ---- Products ---- */

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s;
}

.product-card:hover {
  border-color: #2a2a3e;
}

.product-name {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.product-desc {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-features li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* ---- Differentiation ---- */

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.diff-item h3 {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.diff-item p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
}

/* ---- Contact ---- */

.avail-text {
  font-size: 1.05rem;
  color: var(--text);
}

.avail-cta {
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* ---- Footer ---- */

.footer {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.footer p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ---- Reveal animation ---- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */

@media (max-width: 720px) {
  .container {
    padding: 0 1.25rem;
  }

  .logo {
    font-size: 2.75rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .product-grid,
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 2.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-label {
    margin-bottom: 1.75rem;
  }
}
