/* Examples page. */

.lp-examples-page {
  padding: 40px 0 88px;
}

.lp-examples-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 40px;
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 181, 71, 0.28), transparent 34%),
    radial-gradient(circle at bottom right, rgba(78, 163, 255, 0.24), transparent 32%),
    linear-gradient(145deg, rgba(12, 20, 34, 0.94), rgba(19, 31, 52, 0.9));
  box-shadow: 0 28px 90px rgba(8, 15, 32, 0.26);
}

.lp-examples-hero__glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
}

.lp-examples-hero__glow--left {
  top: -120px;
  left: -120px;
  background: rgba(255, 190, 92, 0.18);
}

.lp-examples-hero__glow--right {
  right: -120px;
  bottom: -140px;
  background: rgba(69, 152, 255, 0.18);
}

.lp-examples-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.lp-examples-hero__content,
.lp-examples-hero__aside {
  display: grid;
  gap: 22px;
}

.lp-examples-hero__eyebrow,
.lp-examples-routes__eyebrow,
.lp-examples-preview__eyebrow,
.lp-examples-footer__eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 245, 224, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lp-examples-hero__title {
  margin: 0;
  max-width: 12ch;
  color: #fff8e9;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.lp-examples-hero__text {
  max-width: 680px;
  color: rgba(232, 238, 251, 0.88);
  font-size: 17px;
  line-height: 1.75;
}

.lp-examples-hero__text > *:first-child {
  margin-top: 0;
}

.lp-examples-hero__text > *:last-child {
  margin-bottom: 0;
}

.lp-examples-hero__actions,
.lp-examples-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-examples-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-examples-hero__chips a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff8e9;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.lp-examples-hero__chips a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.lp-examples-hero__panel,
.lp-examples-footer {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.lp-examples-hero__panel {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.lp-examples-hero__metric {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-examples-hero__metric:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.lp-examples-hero__metric span,
.lp-examples-hero__contact span {
  color: rgba(225, 233, 246, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lp-examples-hero__metric strong {
  color: #fffaf0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.lp-examples-hero__contact {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.lp-examples-hero__contact a,
.lp-examples-hero__contact strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.lp-examples-hero__mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lp-examples-hero__mosaic-card {
  position: relative;
  min-height: 112px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(140deg, rgba(255, 184, 92, 0.22), rgba(69, 152, 255, 0.08));
}

.lp-examples-hero__mosaic-card.is-large {
  min-height: 170px;
  grid-column: span 2;
}

.lp-examples-hero__mosaic-card.is-accent {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    linear-gradient(140deg, rgba(64, 145, 255, 0.24), rgba(86, 219, 190, 0.12));
}

.lp-examples-hero__mosaic-kicker {
  color: rgba(235, 241, 252, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lp-examples-hero__mosaic-bars {
  display: grid;
  gap: 8px;
}

.lp-examples-hero__mosaic-bars span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.lp-examples-hero__mosaic-bars span:first-child {
  width: 68%;
}

.lp-examples-hero__mosaic-bars span:last-child {
  width: 44%;
}

.lp-examples-hero__mosaic-copy {
  display: grid;
  gap: 6px;
}

.lp-examples-hero__mosaic-copy strong {
  color: #fff8e9;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
}

.lp-examples-hero__mosaic-copy em {
  color: rgba(233, 239, 251, 0.74);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.main-site > .container .all-example-product > .product > .data > a > button:hover {
  background: rgb(214 200 192);
  cursor: pointer;
}

.main-site > .container .all-example-product > .product:hover {
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.3);
}

.site-title {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}


.lp-examples-routes,
.lp-examples-preview {
  margin-top: 26px;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(var(--lp-site-bg-rgb), 0.9));
  border: 1px solid rgba(var(--lp-heading-rgb), 0.08);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.08);
}

.lp-examples-routes__header,
.lp-examples-preview__lead {
  max-width: 760px;
  margin-bottom: 24px;
}

.lp-examples-routes__title,
.lp-examples-preview__title,
.lp-examples-footer__title {
  margin: 10px 0 0;
  color: rgb(var(--lp-heading-rgb));
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
}

.lp-examples-routes__grid,
.lp-examples-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lp-examples-route-card,
.lp-examples-preview-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(var(--lp-heading-rgb), 0.08);
  color: rgba(var(--lp-text-rgb), 0.84);
  text-decoration: none;
}

.lp-examples-route-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lp-examples-route-card__index,
.lp-examples-preview-card__label {
  color: rgb(var(--lp-accent-rgb));
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-examples-route-card__title,
.lp-examples-preview-card__title {
  margin: 0;
  color: rgb(var(--lp-heading-rgb));
  font-size: 24px;
  line-height: 1.12;
}

.lp-examples-route-card__text,
.lp-examples-preview-card__text,
.lp-examples-footer__text {
  margin: 0;
  line-height: 1.7;
  color: rgba(var(--lp-text-rgb), 0.74);
}

.lp-examples-route-card__cta {
  color: rgb(var(--lp-link-rgb));
  font-weight: 800;
}

.lp-examples-preview-card__bars {
  display: grid;
  gap: 8px;
}

.lp-examples-preview-card__bars span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(var(--lp-accent-rgb), 0.16);
}

.lp-examples-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-top: 26px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(var(--lp-heading-rgb), 0.96), rgba(var(--lp-heading-rgb), 0.76));
  color: rgb(var(--lp-glass-text-rgb));
}

.lp-examples-footer__title,
.lp-examples-footer__text {
  color: inherit;
}

@media (max-width: 980px) {
  .lp-examples-hero__grid,
  .lp-examples-routes__grid,
  .lp-examples-preview__grid,
  .lp-examples-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .lp-examples-page {
    padding: 24px 0 56px;
  }
  .lp-examples-hero,
  .lp-examples-routes,
  .lp-examples-preview,
  .lp-examples-footer {
    border-radius: 24px;
    padding: 22px;
  }
}
