@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pbt-red: #dd0909;
  --pbt-black: #0a0a0a;
  --pbt-white: #ffffff;
  --font-heading: "Chakra Petch", sans-serif;
  --font-body: "Inter", sans-serif;
}

html, body {
  font-family: var(--font-body);
  background: var(--pbt-white);
  color: var(--pbt-black);
  overflow-x: hidden;
}

/* ─── SHARED ────────────────────────────────────────────── */
.pbt-section {
  width: 100%;
  padding: 48px 24px;
}

.pbt-section--red {
  background: var(--pbt-red);
}

.pbt-section--black {
  background: var(--pbt-black);
}

.pbt-section--white {
  background: var(--pbt-white);
}

.pbt-section--decorated {
  position: relative;
  overflow: hidden;
}

.pbt-section--cards {
  padding-top: 24px;
  padding-bottom: 24px;
}

/* top-left dot grid — 6 columns × 2 rows, flush to corner */
.pbt-section--decorated::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 108px;
  /* 6 × 18px */
  height: 36px;
  /* 2 × 18px */
  opacity: 0.45;
  background-image: radial-gradient(circle, white 2px, transparent 2px);
  background-size: 18px 18px;
  pointer-events: none;
}

/* bottom-right × seamless pattern — matched from Canva element */
.pbt-section--decorated::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 199px;
  opacity: 0.4;
  overflow: hidden;
  background-image: url("/images/playbooktech-home/x-pattern.webp");
  background-repeat: repeat;
  /* source 795×800 rendered at 216.708×218.071 — tile at that display size */
  background-size: 217px 218px;
  /* shift up 19.44px to match Canva's translate(0, -19.44px) crop */
  background-position: 0 -19px;
  pointer-events: none;
}

.pbt-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.pbt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.pbt-btn--dark-pill {
  background: var(--pbt-black);
  color: var(--pbt-white);
  border-radius: 999px;
  padding: 13px 32px;
}

.pbt-btn--dark-pill:hover {
  background: #2a2a2a;
  color: var(--pbt-white);
  text-decoration: none;
  transform: translateY(-1px);
}

.pbt-btn--red-pill {
  background: var(--pbt-red);
  color: var(--pbt-white);
  border-radius: 999px;
  padding: 13px 32px;
}

.pbt-btn--red-pill:hover {
  background: #bf0707;
  color: var(--pbt-white);
  text-decoration: none;
  transform: translateY(-1px);
}

.pbt-btn--wide {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

/* ─── PRODUCT CARDS ─────────────────────────────────────── */
.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card__logo {
  height: 95px;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 4px;
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  display: block;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card__img-wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.product-card__img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 16px;
  line-height: 1.3;
  text-align: center;
}

/* ─── PRODUCT DESCRIPTIONS ──────────────────────────────── */
.product-descs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.product-desc {
  display: flex;
  flex-direction: column;
}

.product-desc p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 16px;
}

.product-desc a {
  color: var(--pbt-white);
}

.product-desc .pbt-btn {
  margin-top: auto;
  padding-top: 16px;
}

/* ─── COMMUNITY CARDS ───────────────────────────────────── */
.community-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.community-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.community-item__img {
  width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* when wrapped in a product-card__img-wrap link, reset conflicting styles */
.product-card__img-wrap .community-item__img {
  border-radius: 0;
  margin-bottom: 0;
}

.community-item__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 20px;
  margin-top: 5px;
  flex: 1;
}

/* ─── ABOUT ─────────────────────────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.about-section__heading {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--pbt-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-section__text p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 16px;
}

.about-section__text p:last-child {
  margin-bottom: 0;
}

.about-section__text a {
  color: var(--pbt-white);
  text-decoration: underline;
}

.about-section__text a:hover {
  color: var(--pbt-red);
}

.about-section__img {
  width: 100%;
  display: block;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.pbt-footer {
  background: var(--pbt-black);
  padding: 40px 24px 32px;
}

.pbt-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pbt-footer__cols {
  display: flex;
  gap: 56px;
  margin-bottom: 28px;
}

.pbt-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pbt-footer__col-heading {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.03em;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 2px;
}

.pbt-footer__link {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.15s;
}

.pbt-footer__link:hover {
  color: var(--pbt-white);
}

.pbt-footer__copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.pbt-footer__legal-link {
  color: #5ab4d6;
  text-decoration: none;
}

.pbt-footer__legal-link:hover {
  color: #7ecae4;
  text-decoration: underline;
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1280px) {
  .pbt-section--decorated::before,
.pbt-section--decorated::after {
    display: none;
  }
}
@media (max-width: 900px) {
  .product-cards,
.product-descs,
.community-cards {
    grid-template-columns: 1fr;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-section__img {
    max-width: 280px;
  }

  .product-descs {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .pbt-section {
    padding: 36px 16px;
  }

  .pbt-section--cards {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .product-card__overlay {
    font-size: 13px;
    padding: 10px 12px;
  }

  .pbt-footer__cols {
    gap: 32px;
  }
}
/*# sourceMappingURL=playbooktech-home.css.map*/