

.poster {
  width: 100%;
  max-width: none;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* subtle dot grid bg */
.poster::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(46,125,50,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* â”€â”€ TOP ACCENT â”€â”€ */
.top-bar {
  height: 3px;
  background: #2e7d32;
}

.poster .header {
    background: #004d44; /* Dark Green from Lexsong top bar */
    border-bottom: 3px solid #2e7d32; /* Bright Green from Lexsong button */
    padding: 28px 48px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
  }
.poster .header-left { display: flex; flex-direction: column; gap: 4px; }
.poster .brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .2em;
    color: #a5d6a7;
    text-transform: uppercase;
  }
.poster .model-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    letter-spacing: .02em;
  }
 .poster .model-sub {
    font-size: 13px;
    font-weight: 400;
    color: #cfd8dc;
    letter-spacing: .06em;
    margin-top: 15px;
  }
.poster .header-badge {
    background: #2e7d32; /* Lexsong Button Green */
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 10px 24px;
    text-transform: uppercase;
    border-radius: 2px;
  }


/* â”€â”€ HERO BAND â”€â”€ */
.hero img{
  width:100%;
  height:auto;
}

/* â”€â”€ SECTION HEADER â”€â”€ */
.section-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  color: #2e7d32;
  text-transform: uppercase;
  padding: 30px 48px 30px;
}
.section-hd::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #d8e8dc;
}

/* â”€â”€ FEATURES GRID â”€â”€ */
.features-wrap {padding: 0 48px 48px;}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #d8e8dc;
  border: 1px solid #d8e8dc;
}
.feat {
  background: #ffffff;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: background .2s;
}
.feat:hover { background: #eef6f0; }
.feat-icon-wrap {
  width: 36px; height: 36px;
  border: 1px solid #b8d5bd;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.feat-icon-wrap svg { width: 18px; height: 18px; stroke: #2e7d32; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #6b9d73;
  letter-spacing: .12em;
}
.feat-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #295f58;
  line-height: 1.2;
}
.feat-body {
  font-size: 11.5px;
  font-weight: 300;
  color: #688278;
  line-height: 1.6;
}

/* â”€â”€ TWO-COLUMN BLOCK â”€â”€ */
.two-col-wrap { padding: 0 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 2px; background: #d8e8dc; border: 1px solid #d8e8dc; }

.col-block {
  background: #ffffff;
  padding: 22px 20px;
}
.col-block-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #2e7d32;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.col-block-title svg { width: 16px; height: 16px; stroke: #2e7d32; fill: none; stroke-width: 1.6; }

.cmd-list { display: flex; flex-direction: column; gap: 6px; }
.cmd-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #557568;
  padding: 6px 10px;
  background: #eef6f0;
  border-left: 2px solid #6b9d73;
}
.cmd-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2e7d32;
  flex-shrink: 0;
}

.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.access-card {
  background: #eef6f0;
  border: 1px solid #d4e6d7;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.access-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #3c7469;
}
.access-card-body { font-size: 11px; color: #688278; line-height: 1.5; }

/* â”€â”€ FOOTER â”€â”€ */
.footer {
  margin-top: 2px;
  border-top: 1px solid #d8e8dc;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9fbf9;
}
.footer-brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #2e7d32;
  letter-spacing: .08em;
}
.footer-tagline {
  font-size: 12px;
  font-weight: 300;
  color: #668276;
  font-style: italic;
}
.footer-pills { display: flex; gap: 8px; }
.pill {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #2e7d32;
  border: 1px solid #b8d5bd;
  padding: 4px 10px;
}


/* Site integration and responsive layout */

.poster {
  width: 100%;
  max-width: none;
  margin: clamp(30px, calc((80 / 1920) * 100vw), 80px) 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
        
                   
.commands-wrap {
  padding: 0px 48px 48px;
}

.commands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #d8e8dc;
  border: 1px solid #d8e8dc;
}

.commands-column {
  padding: 22px 20px;
  background: #ffffff;
}

@media (max-width: 991px) {
  .header,
  .hero-text,
  .section-hd,
  .features-wrap,
  .footer {
    padding-right: 15px;
    padding-left: 15px;
  }

  .features-wrap {
    padding: 0 10px;
  }

  .commands-wrap {
    padding: 0 10px 20px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .commands-column {
    padding: 15px;
  }

  .hero-visual {
    min-height: 250px;
    border-top: 1px solid #d8e8dc;
    border-left: 0;
  }

  .features-grid,
  .commands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    background: #fff;
    border: none;
  }

  .feat{border: 1px solid #d8e8dc;}

  .header {
    flex-direction: column;
    gap: 18px;
  }

  .header-right {
    align-items: flex-start;
  }

  .kpi-row {
    flex-wrap: wrap;
  }

  .kpi {
    min-width: 0;
    flex: 1 1 85px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .header {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .product-name {
    font-size: 34px;
  }

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

  .headline {
    font-size: 28px;
  }

  .features-grid,
  .commands-grid {
    grid-template-columns: 1fr;
  }

  .section-hd {
    padding-top: 22px;
  }

  .footer-pills {
    flex-wrap: wrap;
  }
}