/* =========================================================
   Overview — dense single-sheet one-pager (mirrors the PDF)
   Tuned for readability: comfortable type sizes, high-contrast
   text, clear spacing. Reuses global theme from ../css/styles.css.
   Everything here is prefixed .ov-*
   ========================================================= */

.ov-sheet {
  max-width: 1180px;
  margin: 0 auto;
  padding: 94px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Small orange section label (matches the PDF's uppercase headers) */
.ov-label {
  display: block;
  color: #ff7a1f;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 18px;
}

/* ---------- Header ---------- */
.ov-head-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(240, 100, 0, 0.3);
}

.ov-eyebrow-lg {
  color: #ff7a1f;
  font-size: 0.92em;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.ov-head-aud {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82em;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ov-title {
  color: #ffffff;
  font-size: clamp(2em, 3.7vw, 2.8em);
  line-height: 1.12;
  font-weight: 700;
  margin: 24px 0 16px;
}

.ov-title span {
  color: transparent;
  background: linear-gradient(135deg, #f06400, #ff8c3a);
  -webkit-background-clip: text;
  background-clip: text;
}

.ov-sub {
  color: #dcdcdc;
  font-size: 1.12em;
  line-height: 1.7;
  max-width: 920px;
  margin: 0;
}

.ov-head-actions {
  margin-top: 24px;
}

.ov-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.98em;
  font-weight: 700;
  color: #ff7a1f;
  border: 1.5px solid rgba(240, 100, 0, 0.5);
  background: rgba(240, 100, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
              background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.ov-download:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #f06400 0%, #d35400 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(240, 100, 0, 0.35);
}

.ov-download i {
  font-size: 1.05em;
}

/* ---------- Shared card / panel look ---------- */
.ov-pill,
.ov-panel,
.ov-feat {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.025) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.ov-pill:hover,
.ov-feat:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.035) 100%);
  border-color: rgba(240, 100, 0, 0.4);
  box-shadow: 0 14px 40px rgba(240, 100, 0, 0.16), 0 0 0 1px rgba(240, 100, 0, 0.1);
}

/* Compact icon badge */
.ov-ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ff7e28;
  font-size: 1.1em;
  background: linear-gradient(135deg, rgba(240, 100, 0, 0.2), rgba(240, 100, 0, 0.05));
  border: 1px solid rgba(240, 100, 0, 0.3);
}

.ov-kick {
  color: #ff7a1f;
  font-size: 0.82em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---------- Value pillars ---------- */
.ov-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ov-pill {
  padding: 26px 24px;
}

.ov-pill-top {
  display: flex;
  align-items: center;
  gap: 13px;
}

.ov-pill h3 {
  color: #ffffff;
  font-size: 1.22em;
  margin: 15px 0 8px;
}

.ov-pill p {
  color: #cfcfcf;
  font-size: 0.98em;
  line-height: 1.6;
  margin: 0;
}

.ov-pill .ov-kick + p {
  margin-top: 13px;
}

/* ---------- Middle band: automated optimization + how it works ---------- */
.ov-band {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 18px;
}

.ov-panel {
  padding: 30px;
}

.ov-band-main > p {
  color: #d6d6d6;
  font-size: 1.02em;
  line-height: 1.72;
  margin: 0 0 22px;
}

.ov-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.ov-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  padding: 18px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.ov-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 100, 0, 0.4);
  background: rgba(240, 100, 0, 0.06);
}

.ov-tile i {
  color: #ff7e28;
  font-size: 1.3em;
  margin-bottom: 7px;
}

.ov-tile b {
  color: #ffffff;
  font-size: 0.98em;
}

.ov-tile span {
  color: #aeaeae;
  font-size: 0.82em;
  line-height: 1.35;
}

/* How it works (tinted panel like the PDF's peach box) */
.ov-how {
  background: linear-gradient(160deg, rgba(240, 100, 0, 0.12) 0%, rgba(240, 100, 0, 0.03) 100%);
  border-color: rgba(240, 100, 0, 0.26);
}

.ov-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ov-stp {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ov-stp .n {
  font-size: 1.7em;
  font-weight: 700;
  line-height: 1;
  min-width: 44px;
  color: transparent;
  background: linear-gradient(135deg, #f06400, #ff8c3a);
  -webkit-background-clip: text;
  background-clip: text;
}

.ov-stp h3 {
  color: #ffffff;
  font-size: 1.1em;
  margin: 2px 0 6px;
}

.ov-stp p {
  color: #cfcfcf;
  font-size: 0.94em;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Why ByteShape (2x2, icon-left) ---------- */
.ov-why {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ov-feat {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 24px;
}

.ov-feat-body .ov-kick {
  display: block;
  margin-bottom: 7px;
}

.ov-feat h3 {
  color: #ffffff;
  font-size: 1.12em;
  line-height: 1.3;
  margin: 0 0 9px;
}

.ov-feat p {
  color: #cbcbcb;
  font-size: 0.96em;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Audience ---------- */
.ov-audience {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* ---------- CTA band ---------- */
.ov-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 36px 38px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(240, 100, 0, 0.15) 0%, rgba(240, 100, 0, 0.035) 100%);
  border: 1px solid rgba(240, 100, 0, 0.3);
  box-shadow: 0 16px 48px rgba(240, 100, 0, 0.08);
}

.ov-cta p {
  color: #dedede;
  font-size: 1.02em;
  line-height: 1.65;
  margin: 0;
}

.ov-cta-action {
  border-left: 1px solid rgba(240, 100, 0, 0.22);
  padding-left: 30px;
}

.ov-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.02em;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #f06400 0%, #d35400 100%);
  box-shadow: 0 8px 24px rgba(240, 100, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ov-btn:hover {
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(240, 100, 0, 0.45);
}

/* ---------- Bottom links ---------- */
.ov-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 6px;
}

.ov-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #b2b2b2;
  font-size: 0.9em;
  letter-spacing: 0.3px;
}

.ov-links a b {
  color: #ececec;
  font-weight: 700;
}

.ov-links a i {
  color: #ff7e28;
}

.ov-links a:hover,
.ov-links a:hover b {
  color: #ff7a1f;
}

/* Trim the footer so the sheet stays compact */
footer {
  padding-top: 26px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .ov-band {
    grid-template-columns: 1fr;
  }

  .ov-cta {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ov-cta-action {
    border-left: none;
    border-top: 1px solid rgba(240, 100, 0, 0.22);
    padding-left: 0;
    padding-top: 22px;
  }
}

@media (max-width: 680px) {
  .ov-sheet {
    padding: 86px 16px 36px;
    gap: 24px;
  }

  .ov-pillars,
  .ov-audience,
  .ov-why {
    grid-template-columns: 1fr;
  }

  .ov-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ov-title {
    font-size: clamp(1.75em, 7vw, 2.2em);
  }

  .ov-head-aud {
    font-size: 0.74em;
  }

  .ov-links {
    gap: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
