/* Cust.co - Background runs feature page */

.br-eyebrow,
.br-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.35px;
  line-height: 1.2;
  text-transform: uppercase;
}

.br-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  margin-bottom: 24px;
}

.br-eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(253, 126, 20, 0.12);
}

.br-section-label {
  color: var(--orange);
  margin-bottom: 16px;
}

.br-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 112px;
  background:
    radial-gradient(circle at 50% 105%, rgba(253, 126, 20, 0.1), transparent 36%),
    #fff;
}

.br-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -390px;
  left: calc(50% - 260px);
  border: 1px solid rgba(253, 126, 20, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(253, 126, 20, 0.025), 0 0 0 160px rgba(253, 126, 20, 0.018);
  pointer-events: none;
}

.br-hero__inner {
  position: relative;
  max-width: 930px;
  text-align: center;
}

.br-hero h1 {
  font-family: var(--font-heading);
  max-width: 900px;
  margin: 0 auto 28px;
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 600;
  letter-spacing: -4.4px;
  line-height: 0.99;
}

.br-hero__sub {
  max-width: 720px;
  margin: 0 auto 34px;
  color: var(--gray-text);
  font-size: 20px;
  line-height: 1.6;
}

.br-hero__cta {
  gap: 12px;
  min-height: 52px;
  padding-inline: 28px;
}

.br-hero__cta span {
  font-size: 17px;
}

.br-hero__note {
  margin-top: 14px;
  color: var(--light-gray);
  font-size: 13px;
}

.br-demo {
  position: relative;
  padding: 100px 0 108px;
  background: #f7f7f8;
}

.br-demo::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 24, 39, 0.11), transparent);
}

.br-demo__intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(380px, 1.18fr);
  gap: 80px;
  align-items: end;
  max-width: 1088px;
  margin: 0 auto 44px;
}

.br-demo__intro h2,
.br-story__intro h2,
.br-shortcut__heading h2,
.br-problem h2,
.br-cta h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -2.2px;
}

.br-demo__intro h2 {
  font-size: clamp(36px, 4.3vw, 54px);
}

.br-demo__intro blockquote {
  position: relative;
  padding: 2px 0 2px 28px;
  border-left: 3px solid var(--orange);
  color: #4b5563;
  font-size: 18px;
  line-height: 1.65;
}

.br-player {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.br-player::before {
  content: "";
  position: absolute;
  inset: 12% 10% -5%;
  background: radial-gradient(closest-side, rgba(253, 126, 20, 0.22), rgba(253, 126, 20, 0) 70%);
  filter: blur(48px);
  pointer-events: none;
}

.br-player__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: #0b0b0c;
  box-shadow:
    0 2px 4px rgba(17, 24, 39, 0.08),
    0 20px 50px rgba(17, 24, 39, 0.13),
    0 50px 100px rgba(17, 24, 39, 0.17);
}

.br-player__frame video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0b0b0c;
}

.br-player__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.03);
  cursor: pointer;
  transition: background 0.25s ease, opacity 0.25s ease;
}

.br-player__overlay:hover {
  background: rgba(0, 0, 0, 0.14);
}

.br-player__overlay:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: -3px;
}

.br-player__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.97);
  color: #151515;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38), 0 0 0 10px rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.br-player__overlay:hover .br-player__play {
  transform: scale(1.06);
  background: var(--orange);
  color: #fff;
}

.br-player__play svg {
  width: 34px;
  height: 34px;
  margin-left: 5px;
}

.br-player__duration {
  position: absolute;
  right: 20px;
  bottom: 18px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  color: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.4px;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.br-player.is-playing .br-player__overlay,
.br-player.is-playing .br-player__duration {
  opacity: 0;
  pointer-events: none;
}

.br-demo__caption {
  margin-top: 22px;
  color: var(--light-gray);
  font-size: 13px;
  text-align: center;
}

.br-story {
  padding: 112px 0 120px;
  background: #fff;
}

.br-story__intro {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}

.br-story__intro h2 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
}

.br-story__intro > div > p {
  max-width: 650px;
  color: var(--gray-text);
  font-size: 18px;
}

.br-steps {
  border-top: 1px solid #d9dde3;
}

.br-step {
  display: grid;
  grid-template-columns: 100px minmax(230px, 0.75fr) minmax(340px, 1.25fr);
  gap: 40px;
  align-items: baseline;
  padding: 34px 0 38px;
  border-bottom: 1px solid #d9dde3;
}

.br-step__number {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.br-step h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.6px;
}

.br-step p {
  max-width: 620px;
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.75;
}

.br-shortcut {
  position: relative;
  overflow: hidden;
  padding: 112px 0 118px;
  background: #101113;
  color: #fff;
}

.br-shortcut::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: -470px;
  right: -160px;
  border-radius: 50%;
  background: rgba(253, 126, 20, 0.17);
  filter: blur(100px);
  pointer-events: none;
}

.br-shortcut .container {
  position: relative;
}

.br-shortcut__heading {
  max-width: 800px;
  margin-bottom: 70px;
}

.br-shortcut__heading h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.05;
}

.br-shortcut__heading > p:last-child {
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
}

.br-shortcuts {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.br-shortcut-row {
  display: grid;
  grid-template-columns: 140px minmax(330px, 0.8fr) 1.2fr;
  gap: 40px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.br-shortcut-row__platform {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.br-shortcut-row__keys {
  display: flex;
  align-items: center;
  gap: 12px;
}

.br-shortcut-row__keys kbd {
  min-width: 64px;
  padding: 11px 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom-width: 3px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.br-shortcut-row__keys kbd:last-child {
  min-width: 104px;
}

.br-shortcut-row__keys span {
  color: rgba(255, 255, 255, 0.36);
}

.br-shortcut-row p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

.br-problem {
  padding: 110px 0 118px;
  background: var(--bg-cream);
}

.br-problem__inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 110px;
  align-items: start;
}

.br-problem h2 {
  max-width: 680px;
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.03;
}

.br-problem__copy {
  padding-top: 34px;
}

.br-problem__copy p {
  color: #5f5a55;
  font-size: 18px;
  line-height: 1.72;
}

.br-problem__copy p + p {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(102, 76, 52, 0.16);
}

.br-cta {
  padding: 112px 0 120px;
  background: #fff;
  text-align: center;
}

.br-cta__founders {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.br-cta__founders img {
  width: 48px;
  height: 48px;
  border: 3px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(17, 24, 39, 0.12);
}

.br-cta__founders img + img {
  margin-left: -12px;
}

.br-cta h2 {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
}

.br-cta p {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--gray-text);
  font-size: 18px;
  line-height: 1.65;
}

.br-cta .btn {
  gap: 10px;
  min-height: 52px;
}

@media (max-width: 900px) {
  .br-demo__intro,
  .br-story__intro,
  .br-problem__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .br-demo__intro {
    align-items: start;
  }

  .br-story__intro {
    margin-bottom: 54px;
  }

  .br-step {
    grid-template-columns: 66px minmax(200px, 0.7fr) minmax(280px, 1.3fr);
    gap: 24px;
  }

  .br-shortcut-row {
    grid-template-columns: 100px minmax(280px, 1fr) 1fr;
    gap: 24px;
  }

  .br-problem__copy {
    max-width: 680px;
    padding-top: 0;
  }
}

@media (max-width: 700px) {
  .br-hero {
    padding: 68px 0 82px;
  }

  .br-hero h1 {
    font-size: clamp(43px, 13.5vw, 64px);
    letter-spacing: -2.8px;
  }

  .br-hero__sub {
    font-size: 17px;
    line-height: 1.6;
  }

  .br-demo,
  .br-story,
  .br-shortcut,
  .br-problem,
  .br-cta {
    padding-top: 76px;
    padding-bottom: 80px;
  }

  .br-demo__intro {
    margin-bottom: 30px;
  }

  .br-demo__intro blockquote {
    padding-left: 20px;
    font-size: 16px;
  }

  .br-player__frame {
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.18);
  }

  .br-player__play {
    width: 68px;
    height: 68px;
  }

  .br-player__play svg {
    width: 26px;
    height: 26px;
  }

  .br-player__duration {
    right: 10px;
    bottom: 10px;
  }

  .br-story__intro h2,
  .br-shortcut__heading h2,
  .br-problem h2,
  .br-cta h2 {
    letter-spacing: -1.7px;
  }

  .br-step,
  .br-shortcut-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .br-step {
    padding: 28px 0 32px;
  }

  .br-step h3 {
    margin-top: 6px;
  }

  .br-shortcut__heading {
    margin-bottom: 48px;
  }

  .br-shortcut-row {
    padding: 28px 0 32px;
  }

  .br-shortcut-row__keys {
    margin: 8px 0;
  }

  .br-shortcut-row__keys kbd {
    min-width: 56px;
    padding: 10px 14px 11px;
    font-size: 19px;
  }

  .br-shortcut-row__keys kbd:last-child {
    min-width: 90px;
  }

  .br-problem__inner {
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .br-player__overlay,
  .br-player__play {
    transition: none;
  }
}
