.s10p-section,
.s10p-section * {
  box-sizing:border-box;
}
.s10p-section {
  --s10p-green:#8df036;
  --s10p-green-2:#55cf27;
  --s10p-bg:#020402;
  --s10p-line:rgba(141,240,54,.42);
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding:clamp(18px,2.7vw,38px) 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(141,240,54,.055), transparent 44%),
    linear-gradient(180deg,#000 0%,#020402 42%,#000 100%);
  color:#fff;
  font-family:inherit;
}
.s10p-card {
  width:min(1320px, calc(100% - 44px));
  min-height:clamp(190px,14vw,245px);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(300px,410px) minmax(330px,405px) 210px;
  align-items:center;
  justify-content:space-between;
  gap:clamp(18px,2.5vw,38px);
  padding:clamp(18px,2.2vw,30px) clamp(26px,3.7vw,46px);
  border:1px solid rgba(141,240,54,.5);
  border-radius:16px;
  background:
    radial-gradient(circle at 51% 49%, rgba(141,240,54,.12), transparent 36%),
    linear-gradient(105deg, rgba(255,255,255,.045), rgba(255,255,255,.014));
  box-shadow:0 0 42px rgba(88,216,34,.07), inset 0 1px 0 rgba(255,255,255,.055);
  overflow:hidden;
  position:relative;
}
.s10p-card:before {
  content:"";
  position:absolute;
  inset:1px;
  border-radius:17px;
  pointer-events:none;
  background:linear-gradient(90deg, transparent, rgba(141,240,54,.08), transparent);
  opacity:.7;
}
.s10p-copy {
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  gap:clamp(16px,1.7vw,24px);
  min-width:0;
}
.s10p-mark {
  width:56px;
  height:56px;
  flex:0 0 56px;
  display:grid;
  place-items:center;
  border:1px solid rgba(141,240,54,.55);
  border-radius:999px;
  background:rgba(141,240,54,.08);
  box-shadow:0 0 30px rgba(141,240,54,.14);
}
.s10p-mark svg {
  width:29px;
  height:29px;
  fill:none;
  stroke:var(--s10p-green);
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.s10p-copy h2 {
  margin:0;
  color:#fff;
  font-size:clamp(23px,1.55vw,29px);
  line-height:1.08;
  letter-spacing:0;
  font-weight:800;
  white-space:normal;
}
.s10p-copy h2 span {
  color:var(--s10p-green);
}
.s10p-copy p {
  margin:clamp(10px,1.1vw,15px) 0 0;
  max-width:340px;
  color:rgba(255,255,255,.7);
  font-size:clamp(13px,.92vw,16px);
  line-height:1.45;
}
.s10p-visual {
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  min-width:0;
  pointer-events:none;
}
.s10p-visual img {
  width:min(100%, 385px);
  height:auto;
  display:block;
  filter:drop-shadow(0 28px 38px rgba(0,0,0,.45));
}
.s10p-open {
  position:relative;
  z-index:1;
  appearance:none;
  width:205px;
  min-width:205px;
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  border:1px solid rgba(190,255,120,.7);
  border-radius:10px;
  padding:0 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.26), transparent 30%, rgba(255,255,255,.13) 64%, transparent 82%),
    linear-gradient(180deg,#aaff45,#65dc1d) !important;
  background-size:220% 100%, 100% 100%;
  color:#071006 !important;
  font-size:17px;
  font-weight:720;
  letter-spacing:0;
  cursor:pointer;
  white-space:nowrap;
  text-align:center;
  box-shadow:0 12px 26px rgba(119,231,43,.18), inset 0 1px 0 rgba(255,255,255,.36);
  transition:filter .18s ease, box-shadow .18s ease, background-position .32s ease;
}
.s10p-section .s10p-open:hover,
.s10p-section .s10p-open:focus,
.s10p-section .s10p-open:focus-visible,
.s10p-section .s10p-open:active {
  border-color:rgba(210,255,145,.82) !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.34), transparent 30%, rgba(255,255,255,.18) 64%, transparent 82%),
    linear-gradient(180deg,#b6ff5a,#72e52a) !important;
  color:#071006 !important;
  filter:brightness(1.045);
  background-position:100% 0, 0 0;
  box-shadow:0 0 26px rgba(141,240,54,.26), 0 12px 28px rgba(119,231,43,.16), inset 0 1px 0 rgba(255,255,255,.5) !important;
  outline:none !important;
}
.s10p-section .s10p-open span {
  display:inline-block;
  white-space:nowrap;
}
.s10p-arrow {
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform .18s ease;
}
.s10p-open:hover .s10p-arrow {
  transform:translateX(3px);
}
.s10p-modal[hidden] {
  display:none;
}
.s10p-modal {
  position:fixed;
  inset:0;
  z-index:999999;
  display:grid;
  place-items:center;
  padding:clamp(14px,2vw,34px);
}
.s10p-backdrop {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(5px);
}
.s10p-dialog {
  position:relative;
  z-index:1;
  width:min(1420px, 96vw);
  max-height:min(88vh, 980px);
  display:grid;
  grid-template-rows:auto 1fr;
  gap:20px;
  border:1px solid rgba(141,240,54,.42);
  border-radius:18px;
  background:
    radial-gradient(circle at 65% 0%, rgba(141,240,54,.16), transparent 35%),
    linear-gradient(180deg,#071009,#020302);
  box-shadow:0 26px 110px rgba(0,0,0,.75), 0 0 54px rgba(141,240,54,.13);
  padding:clamp(18px,2.4vw,34px);
  overflow:hidden;
}
.s10p-dialog-head {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:22px;
  padding-right:54px;
}
.s10p-dialog-head strong {
  display:block;
  color:#fff;
  font-size:clamp(28px,2.5vw,44px);
  line-height:1;
}
.s10p-dialog-head p {
  margin:12px 0 0;
  color:rgba(255,255,255,.65);
  font-size:15px;
}
.s10p-filters {
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:8px;
}
.s10p-filters button {
  min-height:38px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.045);
  color:rgba(255,255,255,.82);
  padding:0 16px;
  font-weight:720;
  cursor:pointer;
  transition:background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}
.s10p-section .s10p-filters button:hover,
.s10p-section .s10p-filters button:focus,
.s10p-section .s10p-filters button:focus-visible,
.s10p-section .s10p-filters button:active,
.s10p-section .s10p-filters button.is-active {
  border-color:rgba(141,240,54,.72);
  background:rgba(141,240,54,.14) !important;
  color:#fff !important;
  box-shadow:0 0 22px rgba(141,240,54,.12);
  outline:none !important;
}
.s10p-close {
  position:absolute;
  top:18px;
  right:18px;
  width:38px;
  height:38px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:rgba(0,0,0,.34) !important;
  color:#fff !important;
  cursor:pointer;
}
.s10p-section .s10p-close:hover,
.s10p-section .s10p-close:focus,
.s10p-section .s10p-close:focus-visible,
.s10p-section .s10p-close:active {
  border-color:rgba(141,240,54,.58) !important;
  background:rgba(141,240,54,.1) !important;
  box-shadow:0 0 22px rgba(141,240,54,.16) !important;
  outline:none !important;
}
.s10p-close:before,
.s10p-close:after {
  content:"";
  position:absolute;
  left:11px;
  right:11px;
  top:18px;
  height:2px;
  border-radius:999px;
  background:#fff;
}
.s10p-close:before { transform:rotate(45deg); }
.s10p-close:after { transform:rotate(-45deg); }
.s10p-grid {
  min-height:250px;
  overflow:auto;
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(230px, 1fr));
  gap:16px;
  padding:4px 4px 10px;
  scrollbar-width:thin;
  scrollbar-color:var(--s10p-green) rgba(255,255,255,.06);
}
.s10p-grid::-webkit-scrollbar { width:10px; }
.s10p-grid::-webkit-scrollbar-track { background:rgba(255,255,255,.06); border-radius:999px; }
.s10p-grid::-webkit-scrollbar-thumb { background:linear-gradient(180deg,#aaff45,#65dc1d); border-radius:999px; }
.s10p-work {
  margin:0;
  min-height:260px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:12px;
  background:rgba(255,255,255,.035);
  overflow:hidden;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.s10p-work:hover {
  transform:translateY(-2px);
  border-color:rgba(141,240,54,.44);
  box-shadow:0 18px 44px rgba(0,0,0,.35), 0 0 28px rgba(141,240,54,.1);
}
.s10p-work[hidden] {
  display:none;
}
.s10p-work a {
  color:inherit;
  text-decoration:none;
}
.s10p-work img {
  width:100%;
  height:310px;
  object-fit:cover;
  object-position:top center;
  display:block;
  background:
    radial-gradient(circle at 50% 35%, rgba(141,240,54,.12), transparent 42%),
    #080b08;
  cursor:zoom-in;
}
.s10p-work figcaption {
  display:grid;
  gap:6px;
  padding:13px 14px 15px;
}
.s10p-work strong {
  color:#fff;
  font-size:15px;
}
.s10p-work span {
  color:var(--s10p-green);
  font-size:12px;
  font-weight:760;
}
.s10p-empty {
  grid-column:1 / -1;
  min-height:220px;
  display:grid;
  place-items:center;
  border:1px dashed rgba(141,240,54,.28);
  border-radius:12px;
  color:rgba(255,255,255,.72);
}
body.s10p-modal-open {
  overflow:hidden;
}
.s10p-preview[hidden] {
  display:none;
}
.s10p-preview {
  position:absolute;
  inset:0;
  z-index:5;
  display:grid;
  place-items:center;
  padding:clamp(18px,2.8vw,42px);
  background:rgba(0,0,0,.66);
  backdrop-filter:blur(7px);
}
.s10p-preview img {
  max-width:min(96vw, 1180px);
  max-height:82vh;
  width:auto;
  height:auto;
  object-fit:contain;
  border:1px solid rgba(141,240,54,.42);
  border-radius:14px;
  background:#050805;
  box-shadow:0 28px 95px rgba(0,0,0,.78), 0 0 42px rgba(141,240,54,.14);
}
.s10p-preview-close {
  position:absolute;
  top:18px;
  right:18px;
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  background:rgba(0,0,0,.44) !important;
  color:#fff !important;
  cursor:pointer;
  box-shadow:0 0 22px rgba(0,0,0,.28);
}
.s10p-section .s10p-preview-close:hover,
.s10p-section .s10p-preview-close:focus,
.s10p-section .s10p-preview-close:focus-visible,
.s10p-section .s10p-preview-close:active {
  border-color:rgba(141,240,54,.62) !important;
  background:rgba(141,240,54,.12) !important;
  box-shadow:0 0 24px rgba(141,240,54,.18) !important;
  outline:none !important;
}
.s10p-preview-close:before,
.s10p-preview-close:after {
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  top:20px;
  height:2px;
  border-radius:999px;
  background:#fff;
}
.s10p-preview-close:before { transform:rotate(45deg); }
.s10p-preview-close:after { transform:rotate(-45deg); }
@media (max-width: 1180px) {
  .s10p-card {
    grid-template-columns:minmax(270px,1fr) minmax(300px,390px) 196px;
  }
  .s10p-open {
    width:196px;
    min-width:196px;
    font-size:16px;
  }
}
@media (max-width: 820px) {
  .s10p-section {
    padding-inline:14px;
  }
  .s10p-card {
    width:100%;
    grid-template-columns:1fr;
    text-align:left;
    min-height:0;
  }
  .s10p-copy h2 {
    white-space:normal;
  }
  .s10p-open {
    width:100%;
    min-width:0;
    justify-self:stretch;
  }
  .s10p-dialog-head {
    display:grid;
  }
  .s10p-filters {
    justify-content:flex-start;
  }
}
@media (max-width: 640px) {
  .s10p-section {
    padding-inline:10px;
  }
  .s10p-card {
    padding:22px 18px;
    border-radius:14px;
  }
  .s10p-copy {
    align-items:flex-start;
  }
  .s10p-mark {
    width:56px;
    height:56px;
    flex-basis:56px;
  }
  .s10p-mark svg {
    width:30px;
    height:30px;
  }
  .s10p-visual img {
    width:100%;
  }
  .s10p-open {
    min-height:54px;
    font-size:17px;
  }
  .s10p-dialog {
    width:96vw;
    max-height:90vh;
    border-radius:14px;
  }
  .s10p-grid {
    grid-template-columns:1fr;
  }
}
