/* ============================================================
   content.css — marketing content pages (resellers, become-partner,
   terms…) in the 2026 design system. Scoped under .cl-app.
   ============================================================ */

.cl-app.cl-page { min-height: 100vh;
  background:
    radial-gradient(120% 60% at 0% -6%, rgba(255,151,53,.06), transparent 44%),
    radial-gradient(120% 70% at 100% -4%, rgba(1,67,96,.05), transparent 50%),
    var(--bg); }

/* header */
.cl-app .cl-site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line-soft); }
.cl-app .cl-site-header__inner { min-height: 70px; display: flex; align-items: center; gap: 20px; padding-block: 10px; }
.cl-app .cl-site-header__logo img { height: var(--cl-logo-h); width: auto; }
.cl-app .cl-site-header__actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }

/* layout */
.cl-app .cl-wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px,4vw,36px); }
.cl-app .cl-narrow { max-width: 920px; }
.cl-app .cl-section { padding-block: clamp(40px,6vw,84px); }
.cl-app .cl-hero { text-align: center; padding-block: clamp(40px,6vw,72px) clamp(20px,3vw,32px); }
.cl-app .cl-hero h1 { font-size: clamp(34px,5vw,60px); letter-spacing: -.022em; line-height: 1.02; }
.cl-app .cl-hero .cl-lead { margin: 16px auto 0; max-width: 620px; color: var(--ink-soft); font-size: var(--t-lead); line-height: 1.55; }
.cl-app .cl-hero .cl-ico { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-600)); color: var(--blue-900); box-shadow: var(--sh-cta); }
.cl-app .cl-section-title { font-size: clamp(26px,3.2vw,40px); letter-spacing: -.02em; text-align: center; margin-bottom: clamp(24px,3vw,40px); }

/* hero split (text + image) */
.cl-app .cl-hero-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,4vw,56px); align-items: center; }
.cl-app .cl-hero-split h1 { font-size: clamp(32px,4.4vw,54px); letter-spacing: -.022em; line-height: 1.04; }
.cl-app .cl-hero-split p { margin-top: 16px; color: var(--ink-soft); font-size: var(--t-lead); line-height: 1.55; max-width: 480px; }
.cl-app .cl-hero-split .cl-hero-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.cl-app .cl-hero-split .cl-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) { .cl-app .cl-hero-split { grid-template-columns: 1fr; } .cl-app .cl-hero-split .cl-hero-img { display: none; } }

/* cards / bento */
.cl-app .cl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.cl-app .cl-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cl-app .cl-card { border-radius: var(--r-lg); padding: clamp(22px,2.4vw,30px); border: 1px solid var(--line); background: var(--bg);
  transition: transform .3s var(--ease-out), box-shadow .3s; }
.cl-app .cl-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.cl-app .cl-card h3 { font-size: 20px; margin-bottom: 8px; }
.cl-app .cl-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.cl-app .cl-card--blue { background: linear-gradient(150deg, var(--blue-700), var(--blue-900)); border-color: transparent; color: #fff; }
.cl-app .cl-card--blue p { color: rgba(255,255,255,.78); }
.cl-app .cl-card--orange { background: linear-gradient(135deg, var(--orange), var(--orange-600)); border-color: transparent; color: var(--blue-900); }
.cl-app .cl-card--orange p { color: rgba(1,36,47,.72); }
.cl-app .cl-card--soft { background: var(--surface-2); border-color: transparent; }

/* faq accordion */
.cl-app .cl-faq { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.cl-app .cl-faq-item { border: 1px solid var(--line); border-radius: var(--r); background: var(--bg); overflow: hidden; }
.cl-app .cl-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 20px;
  font-weight: 700; font-size: 15.5px; color: var(--ink); cursor: pointer; list-style: none; }
.cl-app .cl-faq-q::-webkit-details-marker { display: none; }
.cl-app .cl-faq-q::after { content: "+"; font-size: 22px; color: var(--orange-700); font-weight: 400; transition: transform .2s; }
.cl-app .cl-faq-item[open] .cl-faq-q::after { content: "−"; }
.cl-app .cl-faq-a { padding: 0 20px 18px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }
.cl-app .cl-faq-a a { color: var(--blue); font-weight: 700; }

/* testimonial */
.cl-app .cl-testimonial { max-width: 760px; margin: 0 auto; text-align: center; }
.cl-app .cl-testimonial blockquote { font-family: var(--display); font-weight: 700; font-size: clamp(20px,2.4vw,28px);
  line-height: 1.3; letter-spacing: -.01em; color: var(--ink); margin: 0; }
.cl-app .cl-testimonial .cl-tauthor { margin-top: 16px; font-weight: 700; color: var(--blue); }
.cl-app .cl-testimonial .cl-tauthor span { display: block; font-weight: 600; font-size: 13.5px; color: var(--ink-faint); }

/* CTA banner */
.cl-app .cl-cta { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(30px,4vw,52px); text-align: center;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-600) 100%); color: var(--blue-900); }
.cl-app .cl-cta h2 { font-size: clamp(24px,3vw,36px); letter-spacing: -.02em; }
.cl-app .cl-cta .btn { margin-top: 20px; }

/* prose (terms) */
.cl-app .cl-prose { display: grid; gap: 16px; }
.cl-app .cl-prose .cl-card { padding: clamp(20px,2.2vw,28px); }
.cl-app .cl-prose h1, .cl-app .cl-prose h2, .cl-app .cl-prose h3, .cl-app .cl-prose h4 { color: var(--ink); margin: 0 0 10px; line-height: 1.2; }
.cl-app .cl-prose h2 { font-size: 22px; } .cl-app .cl-prose h3 { font-size: 18px; }
.cl-app .cl-prose p, .cl-app .cl-prose li { color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; }
.cl-app .cl-prose p { margin: 0 0 10px; } .cl-app .cl-prose ul, .cl-app .cl-prose ol { margin: 0 0 10px; padding-left: 20px; }
.cl-app .cl-prose a { color: var(--blue); font-weight: 700; }
.cl-app .cl-prose strong, .cl-app .cl-prose b { color: var(--ink); }
.cl-app .cl-tac-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.cl-app .cl-tac-bar select { padding: 10px 16px; border-radius: var(--r); border: 1px solid var(--line); background: #fff; font-family: var(--sans); font-size: 14px; color: var(--ink); cursor: pointer; }

/* reseller logos */
.cl-app .cl-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cl-app .cl-logo { display: flex; align-items: center; justify-content: center; padding: 22px; border: 1px solid var(--line);
  border-radius: var(--r); background: #fff; transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s; min-height: 96px; }
.cl-app .cl-logo:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.cl-app .cl-logo img { max-height: 56px; max-width: 100%; width: auto; object-fit: contain; }

@media (max-width: 860px) {
  .cl-app .cl-grid, .cl-app .cl-grid-3, .cl-app .cl-logos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cl-app .cl-grid, .cl-app .cl-grid-3, .cl-app .cl-logos { grid-template-columns: 1fr; }
}

/* ============================================================
   Content-page extras — product pages, careers, map
   ============================================================ */

/* card picto + numbered step */
.cl-app .cl-card__ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px;
  background: var(--surface-2); }
.cl-app .cl-card__ico img { width: 24px; height: 24px; object-fit: contain; }
.cl-app .cl-card--blue .cl-card__ico, .cl-app .cl-card--orange .cl-card__ico { background: rgba(255,255,255,.16); }
.cl-app .cl-num { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; margin-bottom: 14px;
  background: var(--blue); color: #fff; font-family: var(--display); font-weight: 800; font-size: 16px; }
.cl-app .cl-card--orange .cl-num { background: var(--blue-900); color: #fff; }

/* media (video / animation slot) */
.cl-app .cl-media-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
.cl-app .cl-media-split p { color: var(--ink-soft); font-size: var(--t-lead); line-height: 1.6; margin: 0 0 14px; }
.cl-app .cl-video { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); background: #000; }
.cl-app .cl-video video, .cl-app .cl-video img { display: block; width: 100%; height: auto; }
.cl-app .cl-video__play { position: absolute; inset: 0; margin: auto; height: max-content; width: max-content;
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border: none; border-radius: var(--r-pill);
  background: var(--orange); color: var(--blue-900); font-family: var(--sans); font-weight: 700; font-size: 15px; cursor: pointer;
  box-shadow: var(--sh-cta); transition: transform .2s var(--ease-out), box-shadow .25s, background .2s; }
.cl-app .cl-video__play:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: var(--sh-cta-hover); }
.cl-app .cl-video__play img { width: 16px; height: 16px; }
@media (max-width: 860px) { .cl-app .cl-media-split { grid-template-columns: 1fr; } }

/* careers job list */
.cl-app .cl-joblist { display: grid; gap: 12px; }
.cl-app .cl-jobrow { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg);
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s; }
.cl-app .cl-jobrow:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: transparent; }
.cl-app .cl-jobrow__title { font-family: var(--display); font-weight: 800; font-size: 19px; color: var(--ink); }
.cl-app .cl-jobrow__more { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--blue); white-space: nowrap; }

/* map frame */
.cl-app .cl-mapframe { position: relative; overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--line);
  box-shadow: var(--sh-lg); background: #fff; }
.cl-app .cl-mapframe::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 2;
  background: linear-gradient(90deg, var(--blue), var(--orange)); }
.cl-app .cl-mapframe iframe { display: block; width: 100%; height: clamp(560px, 76vh, 900px); border: 0; }
