:root {
  --background: #fcfcfc;
  --foreground: #161616;
  --muted: #f1f1f1;
  --muted-foreground: #6b7280;
  --border: #e6e6e6;
  --accent: #3eb489;
  --soft-green: #e8f5f0;
  --card-radius: 24px;
  --shadow: 0 12px 30px rgba(0,0,0,0.05);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background);
  color: var(--foreground);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section { padding: 48px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(252,252,252,0.82);
  border-bottom: 1px solid var(--border);
}

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

.logo { height: 40px; width: auto; }
.footer-logo { height: 32px; width: auto; opacity: 0.5; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a,
.site-footer p,
.site-footer a {
  font-size: 14px;
  color: var(--muted-foreground);
}

.nav-links a:hover,
.site-footer a:hover { color: var(--foreground); }

.contact-button {
  background: var(--foreground);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.hero {
  padding-top: 28px;
  padding-bottom: 4px;
}

.hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--muted);
  color: var(--muted-foreground);
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-top: 0;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.hero h1 {
  margin: 0;
  font-size: clamp(40px, 6.2vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.hero h1 span { color: var(--muted-foreground); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 308px;
  padding: 28px;
  border-radius: var(--card-radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.card h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  max-width: 420px;
}

.card-coming-soon {
  background: rgba(241,241,241,0.55);
  border: 2px dashed var(--border);
}

.card-erp {
  background: var(--accent);
  color: white;
}

.card-dark {
  background: var(--foreground);
  color: white;
}

.card-soft {
  background: var(--soft-green);
}

.card-link { transition: transform 0.18s ease, box-shadow 0.18s ease; }
.card-link:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.eyebrow.muted { color: rgba(107,114,128,0.6); }
.eyebrow.white { color: rgba(255,255,255,0.72); }
.eyebrow.dark { color: rgba(255,255,255,0.52); }
.eyebrow.soft { color: rgba(22,22,22,0.52); }

.card-coming-soon p { color: rgba(107,114,128,0.78); }
.card-erp p { color: rgba(255,255,255,0.82); }
.card-dark p { color: rgba(255,255,255,0.62); }
.card-soft p { color: rgba(22,22,22,0.64); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: white;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.erp-form {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  position: relative;
  z-index: 1;
}
.erp-form input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 16px 18px;
  font-size: 15px;
  color: var(--foreground);
  min-width: 0;
}
.erp-form button {
  border: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 800;
  font-size: 22px;
  padding: 16px 18px;
  cursor: pointer;
}

.card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.meta {
  font-size: 14px;
  opacity: 0.6;
}

.round-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: rgba(255,255,255,0.1);
}
.soft-arrow { background: rgba(22,22,22,0.1); }

.decor-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.circle-large {
  width: 196px;
  height: 196px;
  right: -54px;
  bottom: -54px;
  background: rgba(255,255,255,0.10);
}
.circle-top {
  width: 150px;
  height: 150px;
  right: -44px;
  top: -44px;
  background: rgba(255,255,255,0.05);
}
.circle-bottom {
  width: 150px;
  height: 150px;
  left: -44px;
  bottom: -44px;
  background: rgba(62,180,137,0.10);
}

.site-footer {
  padding: 48px 0 64px;
}
.footer-inner {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1120px); }
  .card { min-height: 270px; padding: 24px; }
  .card p { font-size: 16px; }
  .footer-inner { flex-direction: column; }
  .header-inner { gap: 12px; }
  .contact-button { padding: 9px 14px; }
}


@media (max-width: 640px) {
  .hero { padding-top: 18px; }
  .hero-inner { gap: 14px; }
  .hero h1 { font-size: clamp(34px, 11vw, 48px); }
  .cards-grid { gap: 16px; }
}


.hero-topbar {
  padding: 18px 0 0;
}

.hero-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero {
  padding-top: 8px;
  padding-bottom: 10px;
}

.hero-inner {
  gap: 28px;
}

.logo {
  height: 88px;
  width: auto;
}

.contact-button {
  background: var(--foreground);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .hero-topbar {
    padding-top: 14px;
  }

  .hero-topbar-inner {
    gap: 12px;
  }

  .logo {
    height: 34px;
  }

  .contact-button {
    padding: 9px 14px;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-inner {
    gap: 22px;
  }
}
