:root{
  --bg: #fbfbfc;
  --panel: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #b3282d;          /* Ping-ish red */
  --accent-soft: rgba(179,40,45,.10);
  --max: 980px;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* Header */
.top{ margin-bottom: 26px; }

.header-wrap{
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  margin-bottom: 18px;
}

.logo-area{
  display: flex;
  align-items: center;
  gap: 16px;
}

.ping-logo{
  width: 65px;
  height: 65px;
  border-radius: 14px;
  display: block;

  /* makes the image behave like a tile */
  object-fit: cover;        /* fills the square */
  object-position: center;  /* keeps it centered */

  /* optional: keep your soft shadow */
  box-shadow: 0 8px 18px rgba(179,40,45,.18);
}


.kicker{
  margin: 0;
  font-weight: 800;
  color: var(--accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .3px;
}

h1{
  margin: 6px 0 6px;
  font-size: 28px;
  letter-spacing: .2px;
}

.version{
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.sub{
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 95ch;
  line-height: 1.55;
}

/* Jump row */
.jump{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}

.jump a{
  display:inline-block;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
}

.jump a:hover{
  color: var(--accent);
  border-color: rgba(179,40,45,.25);
  background: rgba(179,40,45,.06);
}

/* Sections */
.section{ margin-top: 34px; }

.section h2{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  border-bottom: 2px solid rgba(179,40,45,.10);
  padding-bottom: 6px;
}

/* Link list container */
.links{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Default links: obvious but not huge */
.links a{
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
}

.links a:hover{
  text-decoration: underline;
  opacity: 0.86;
}

/* Subsection headings (level 1 under a section) */
.subheading{
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .4px;
}

/* If you DO want the leading bullet on subheadings, keep this.
   If you want headings to feel cleaner (Databricks-ish), delete this block. */
/*
.subheading::before{
  content: "• ";
  margin-right: 4px;
  color: var(--muted);
}
*/

/* Subtle download hint (single line, not per-link) */
.download-hint{
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-top: -6px;
  margin-bottom: 12px;
}

/* Text blocks inside link lists */
.links span,
.bodytext{
  color: var(--muted);
  line-height: 1.55;
}

/* Product headings (level 2 under a subheading) */
.product-heading{
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

/* Deep-dive nested styling (for link-based lists only) */
.deepdives{
  padding-left: 14px;
  border-left: 2px solid var(--accent-soft);
  margin-left: 2px;
}

.deepdives a{
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  padding-left: 12px;
  position: relative;
}

.deepdives a::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--muted);
}

.deepdives .product-heading{
  margin-top: 16px;
}

.deepdives .product-heading:first-child{
  margin-top: 6px;
}

/* List block (for bulleted black text like Databricks) */
.listblock{
  padding-left: 14px;
  border-left: 2px solid var(--accent-soft);
  margin-left: 2px;
  margin-bottom: 12px;
}

/* =========================
   BULLETED LIST SYSTEM
   Consistent indentation:
   - margin controls spacing between blocks
   - padding-left controls bullet indent
   ========================= */
/* Plain bulleted lists (fixed alignment) */
.plain-list{
  margin: 6px 0 10px;       /* no left margin */
  padding-left: 22px;       /* indent comes from padding */
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
  list-style: disc;
}

.plain-list > li{
  margin: 6px 0;
}

.plain-list li::marker{
  color: var(--muted);
}

/* Nested lists stay consistent */
.plain-list ul{
  margin: 6px 0 10px;
  padding-left: 22px;
}


/* Red doc links even inside lists (override browser purple) */
a.doclink:link,
a.doclink:visited{
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
}

a.doclink:hover{
  opacity: 0.86;
}

/* Mini-subheading */
.mini-subheading{
  margin: 10px 0 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--muted);
}

/* Product label inside bullets */
.product-label{
  font-weight: 700;
  color: var(--text);
}
.listblock--landing{
  border-left: 0;
  margin-left: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}
.kits-landing .sub{
  margin-top: 10px;
  max-width: 90ch;
}

/* compact grid */
.kits-landing .kit-grid{
  display: grid;
  gap: 18px;
  margin-top: 14px;
}

/* group header */
.kits-landing .kit-group h3{
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

/* cards container */
.kits-landing .kit-cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

/* card */
.kits-landing .kit-card{
  display: block;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px 12px;
  text-decoration: none;
}

/* title + desc */
.kits-landing .kit-title{
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 6px;
}

.kits-landing .kit-desc{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.kits-landing .kit-card:hover{
  border-color: rgba(179,40,45,.25);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

/* responsive: 1 column on narrow screens */
@media (max-width: 720px){
  .kits-landing .kit-cards{
    grid-template-columns: 1fr;
  }
}
/* Remove left line ONLY on landing page */
.kits-landing .listblock{
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}
.back-link {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 18px;
  text-decoration: none;
  color: #b3282d;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}
.doclink.disabled {
  color: #9e9e9e;
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.7;
}
.section-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:16px;
}
.download-kit{
  margin-top: 10px;
}
.section-download {
  text-align: right;
  margin-top: -34px;   /* pulls link up beside the H2 */
  margin-bottom: 20px; /* spacing before list content */
}

.section-download .doclink {
  font-weight: 500;
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.section-zip {
  font-size: 0.9rem;       /* consistent size everywhere */
  font-weight: 500;
  color: #b32025;
  text-decoration: none;
}

.section-zip:hover {
  text-decoration: underline;
}
.kit-guide {
  margin: 1.4rem 0 1rem;
  padding: 1.2rem 1.4rem;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.kit-guide-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cc2b24;
  margin-bottom: 0.8rem;
}

.kit-guide-row {
  display: grid;
  grid-template-columns: 270px 1fr;  gap: 14px;
  padding: 4px 0;
}

.kit-guide-left {
  font-weight: 600;
  color: #1f2937;
}

.kit-guide-right {
  color: #4b5563;
}

.kit-guide-right a strong {
  color: inherit;
}
.kit-guide .doclink {
  color: #b3282d;
}

.kit-guide .doclink.pdf-link {
  text-decoration: underline !important;
}

.kit-guide .doclink.section-link {
  text-decoration: none !important;
}