:root {
  --primary: #0f8a5f;
  --primary-dark: #0a6a49;
  --secondary: #e8fff6;
  --text-dark: #15332a;
  --text-muted: #5d746c;
  --white: #ffffff;
  --border-soft: rgba(255, 255, 255, 0.25);
  --shadow-main: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 10px 30px rgba(15, 138, 95, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(18, 156, 105, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(8, 88, 60, 0.16), transparent 30%),
    linear-gradient(135deg, #f5fbf8 0%, #eef8f3 50%, #f9fffc 100%);
  min-height: 100vh;
  color: var(--text-dark);
  overflow-x: hidden;
}

.landing-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
  position: relative;
  z-index: 2;
}

.hero-card {
  width: 100%;
  max-width: 1240px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  box-shadow: var(--shadow-main);
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 138, 95, 0.10);
  color: var(--primary-dark);
  border: 1px solid rgba(15, 138, 95, 0.18);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  width: fit-content;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -1px;
}

.hero-title span {
  background: linear-gradient(90deg, #0f8a5f 0%, #20b277 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  max-width: 700px;
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 138, 95, 0.10);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  color: var(--text-dark);
}

.feature-item i {
  font-size: 1.1rem;
  color: var(--primary);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0f8a5f 0%, #0b6b49 100%);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 16px 26px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(15, 138, 95, 0.30);
  transition: all 0.25s ease;
}

.btn-main:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(15, 138, 95, 0.35);
}

.quick-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-right {
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.logo-circle {
  width: 128px;
  height: 128px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(230,247,239,0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(15, 138, 95, 0.10);
}

.logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.panel-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.panel-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  border: 1px solid rgba(15, 138, 95, 0.10);
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}

.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  background: rgba(15, 138, 95, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.info-card h6 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.info-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.system-status {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f4fff9;
  border: 1px solid rgba(15, 138, 95, 0.15);
  font-weight: 700;
  color: var(--primary-dark);
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #16c172;
  box-shadow: 0 0 0 6px rgba(22, 193, 114, 0.16);
  animation: pulseStatus 1.8s infinite;
}

.footer-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 24px;
}

.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.b1 {
  width: 280px;
  height: 280px;
  background: rgba(32, 178, 119, 0.30);
  top: 8%;
  left: 5%;
}

.b2 {
  width: 320px;
  height: 320px;
  background: rgba(12, 106, 73, 0.22);
  bottom: 8%;
  right: 7%;
}

.b3 {
  width: 220px;
  height: 220px;
  background: rgba(53, 201, 143, 0.22);
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
}

@keyframes pulseStatus {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.18);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-left,
  .hero-right {
    padding: 32px 24px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .landing-wrapper {
    padding: 18px 12px;
  }

  .hero-left,
  .hero-right {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .btn-main {
    width: 100%;
    justify-content: center;
  }

  .logo-circle {
    width: 108px;
    height: 108px;
  }

  .logo-img {
    width: 68px;
    height: 68px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }
}