/* =========================================================
   ESCAPE TECHNOLOGY – PRODUCT PAGES
   Unified Product Design System
   Full-width editorial layout
   ========================================================= */

.et-product{
  --et-bg: #26282c;
  --et-bg-soft: #2d3035;
  --et-panel: rgba(255,255,255,.05);
  --et-panel-strong: rgba(255,255,255,.08);
  --et-border: rgba(255,255,255,.12);

  --et-ink: #ffffff;
  --et-muted: rgba(255,255,255,.74);
  --et-muted-soft: rgba(255,255,255,.58);

  --et-accent: #3b6f8d;
  --et-accent-strong: #4f8fb5;
  --et-accent-soft: rgba(59,111,141,.18);

  --et-radius-lg: 24px;
  --et-radius-md: 18px;
  --et-radius-sm: 12px;

  --et-shadow: 0 18px 44px rgba(0,0,0,.22);

  --et-max: 1240px;
  --et-text-max: 920px;
  --et-pad: clamp(22px, 4vw, 68px);

  color: var(--et-ink);
  background:
    linear-gradient(90deg, #2a2d31 0%, #24272c 100%);
}

/* -------------------------
   Base / Containers
   ------------------------- */
.et-product__section{
  padding: var(--et-pad);
}

.et-product__container{
  width: min(100%, var(--et-max));
  margin: 0 auto;
}

.et-product__textWrap{
  width: min(100%, var(--et-text-max));
}

.et-product__eyebrow{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}

.et-product__title{
  margin: 0 0 14px;
  font-size: clamp(2rem, 1.2vw + 1.6rem, 3.2rem);
  line-height: 1.04;
  font-weight: 900;
}

.et-product__intro{
  margin: 0;
  color: var(--et-muted);
  font-size: 17px;
  line-height: 1.8;
  max-width: 78ch;
}

.et-product__sectionTitle{
  margin: 0 0 12px;
  font-size: clamp(1.5rem, .7vw + 1.2rem, 2.3rem);
  line-height: 1.08;
  font-weight: 900;
}

.et-product__sectionText{
  margin: 0;
  max-width: 78ch;
  color: var(--et-muted);
  font-size: 16px;
  line-height: 1.78;
}

/* =========================================================
   INTRO
   ========================================================= */

.et-product__introBox{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  border: 1px solid var(--et-border);
  border-radius: var(--et-radius-lg);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--et-shadow);
}

/* =========================================================
   BENEFITS
   ========================================================= */

.et-product__benefitGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.et-product__benefitCard{
  background: var(--et-panel);
  border: 1px solid var(--et-border);
  border-radius: var(--et-radius-md);
  padding: 22px;
  box-shadow: var(--et-shadow);
}

.et-product__benefitCard h3{
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.et-product__benefitCard p{
  margin: 0;
  color: var(--et-muted);
  line-height: 1.72;
  font-size: 15px;
}

/* =========================================================
   EDITORIAL CONTENT
   ========================================================= */

.et-product__article{
  width: min(100%, var(--et-text-max));
}

.et-product__article h2{
  margin: 0 0 14px;
  font-size: clamp(1.55rem, .8vw + 1.1rem, 2.3rem);
  line-height: 1.08;
  font-weight: 900;
}

.et-product__article h3{
  margin: 26px 0 10px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}

.et-product__article p{
  margin: 0 0 14px;
  color: var(--et-muted);
  line-height: 1.8;
  font-size: 16px;
}

.et-product__list{
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.et-product__list li{
  position: relative;
  padding-left: 20px;
  color: var(--et-muted);
  line-height: 1.7;
  font-size: 16px;
}

.et-product__list li::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--et-accent-strong);
  position: absolute;
  left: 0;
  top: .72em;
  transform: translateY(-50%);
}

/* =========================================================
   MEDIA BLOCKS
   ========================================================= */

.et-product__mediaBlock{
  margin: 28px 0 34px;
  border-radius: var(--et-radius-lg);
  overflow: hidden;
  border: 1px solid var(--et-border);
  background: #1f2327;
  box-shadow: var(--et-shadow);
}

.et-product__mediaBlock img,
.et-product__mediaBlock video,
.et-product__mediaBlock iframe{
  width: 100%;
  display: block;
  border: 0;
}

.et-product__mediaCaption{
  padding: 14px 18px;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--et-muted-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* optional: smaller inline media inside text flow */
.et-product__mediaInline{
  margin: 24px 0 30px;
  max-width: 760px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--et-border);
  background: #1f2327;
  box-shadow: var(--et-shadow);
}

.et-product__mediaInline img,
.et-product__mediaInline video,
.et-product__mediaInline iframe{
  width: 100%;
  display: block;
  border: 0;
}

/* =========================================================
   FEATURE GRID
   ========================================================= */

.et-product__featureGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.et-product__featureCard{
  background: var(--et-panel);
  border: 1px solid var(--et-border);
  border-radius: 18px;
  padding: 22px;
}

.et-product__featureCard h3{
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.et-product__featureCard p{
  margin: 0;
  color: var(--et-muted);
  line-height: 1.7;
  font-size: 15px;
}

/* =========================================================
   USE CASES
   ========================================================= */

.et-product__caseGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.et-product__caseCard{
  background: var(--et-panel);
  border: 1px solid var(--et-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--et-shadow);
}

.et-product__caseMedia{
  height: 220px;
  overflow: hidden;
  background: #1c2126;
}

.et-product__caseMedia img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.et-product__caseBody{
  padding: 18px;
}

.et-product__caseBody h3{
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.et-product__caseBody p{
  margin: 0;
  color: var(--et-muted);
  line-height: 1.68;
  font-size: 15px;
}

/* =========================================================
   CTA BAND
   ========================================================= */

.et-product__ctaBand{
  background:
    linear-gradient(180deg, rgba(59,111,141,.18), rgba(59,111,141,.08)),
    rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--et-shadow);
}

.et-product__ctaBandInner{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.et-product__ctaBand h2{
  margin: 0 0 8px;
  font-size: clamp(1.6rem, .8vw + 1.2rem, 2.4rem);
  line-height: 1.08;
  font-weight: 900;
}

.et-product__ctaBand p{
  margin: 0;
  color: var(--et-muted);
  line-height: 1.7;
  max-width: 62ch;
}

/* =========================================================
   BUTTON
   ========================================================= */

.et-product__button{
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: .02em;
  transition: 180ms ease;
  background: var(--et-accent);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  box-shadow: var(--et-shadow);
}

.et-product__button:hover{
  background: var(--et-accent-strong);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px){
  .et-product__benefitGrid,
  .et-product__caseGrid{
    grid-template-columns: 1fr 1fr;
  }

  .et-product__ctaBandInner{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px){
  .et-product__section{
    padding: 22px;
  }

  .et-product__benefitGrid,
  .et-product__featureGrid,
  .et-product__caseGrid{
    grid-template-columns: 1fr;
  }

  .et-product__title{
    font-size: clamp(1.9rem, 7vw, 2.8rem);
  }

  .et-product__intro,
  .et-product__article p,
  .et-product__sectionText{
    font-size: 15px;
  }

  .et-product__article h3{
    font-size: 22px;
  }
}