:root {
  --homepage-ink: #151618;
  --homepage-muted: #696e76;
  --homepage-soft: #f3f3f1;
  --homepage-amber: #ffb20f;
  --homepage-amber-strong: #f2a600;
  --homepage-max-width: 1200px;
  --homepage-control-surface: #f5f5f3;
  --homepage-control-hover: #e9e9e6;
  --homepage-control-border: #d8dadd;
  --homepage-control-border-hover: #bbbfc3;
  --homepage-control-radius: 12px;
}

#homepageExperience,
#homepageTopLinks {
  display: none;
}

body.homepage-active {
  background: #fbfbfa;
  color: var(--homepage-ink);
}

body.homepage-active #mainContainer {
  margin-top: 0;
}

body.homepage-active #title-container {
  display: none !important;
}

body.homepage-active #homepageExperience {
  display: block;
  overflow: hidden;
  user-select: text;
}

body.homepage-active #homepageTopLinks {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  box-sizing: border-box;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  height: 64px;
  padding: 0 clamp(22px, 4vw, 64px);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.homepage-active #homepageTopLinks::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 18px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .76), transparent);
  pointer-events: none;
}

body.homepage-active #homepageTopLinks [hidden] {
  display: none !important;
}

body:not(.homepage-active) #homepageTopLinks {
  display: none !important;
}

.homepageWordmark,
.homepageNavigation a,
.homepageFooter a,
.homepageButton {
  text-decoration: none;
}

.homepageWordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-self: start;
  color: var(--homepage-ink) !important;
  font-size: clamp(25px, 2vw, 32px) !important;
  font-weight: 760 !important;
  letter-spacing: -0.055em;
  line-height: 1;
  padding: 0 !important;
}

.homepageNavigation {
  position: absolute;
  left: 50vw;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  transform: translateX(-50%);
}

.homepagePodcastToolbar {
  position: absolute;
  right: calc(clamp(22px, 4vw, 64px) + 194px);
  left: clamp(220px, 18vw, 360px);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.homepagePodcastToolbarLabel {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: #25282c;
  font-size: 15px;
  font-weight: 720;
}

.homepagePodcastSearchMount {
  flex: 1 1 auto;
  min-width: 0;
}

.homepageNavigation a {
  position: relative;
  padding: 10px 0;
  color: #2d3034;
  font-size: 15px;
  font-weight: 600;
}

.homepageNavigation a:hover,
.homepageNavigation a:focus-visible {
  color: #000;
}

.homepageNavigation a:hover::after,
.homepageNavigation a:focus-visible::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #17181a;
  transform: translateX(-50%);
}

.homepageNavigation a[aria-current="page"] {
  position: relative;
  color: #111;
  font-weight: 600;
}

body.homepage-active #homepageTopLinks > .homepageWordmark:hover,
body.homepage-active #homepageTopLinks > .homepageWordmark:focus-visible {
  color: var(--homepage-ink) !important;
  background: transparent;
  transform: none;
}

body.homepage-active #signInButton {
  position: fixed;
  z-index: 1010;
  top: 12px;
  right: clamp(22px, 4vw, 64px);
  display: inline-flex;
  width: auto;
  height: 40px;
  box-sizing: border-box;
  padding: 0 12px;
  margin: 0;
  border: 1px solid var(--homepage-control-border);
  border-radius: var(--homepage-control-radius);
  background: var(--homepage-control-surface);
  box-shadow: none;
  color: #34373b;
  font-size: 14px;
  font-weight: 680;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.homepageProjectsLink {
  position: fixed;
  z-index: 1010;
  top: 12px;
  right: calc(clamp(22px, 4vw, 64px) + 94px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 40px;
  min-width: 88px;
  padding: 0 15px;
  border: 1px solid var(--homepage-control-border);
  border-radius: var(--homepage-control-radius);
  color: #25282c;
  background: var(--homepage-control-surface);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}

/* The legacy homepage link selector uses an ID, so keep the shared control
   surface explicit here without preventing responsive positioning below. */
body.homepage-active #homepageTopLinks > .homepageProjectsLink {
  min-width: 88px;
  height: 40px;
  padding: 0 15px;
  border: 1px solid var(--homepage-control-border);
  border-radius: var(--homepage-control-radius);
  background: var(--homepage-control-surface);
  font-size: 14px;
  font-weight: 680;
}

body.homepage-active #homepageTopLinks > .homepageProjectsLink:hover,
body.homepage-active #homepageTopLinks > .homepageProjectsLink:focus-visible {
  color: #111;
  border-color: var(--homepage-control-border-hover);
  background: var(--homepage-control-hover);
  transform: none;
}

body.homepage-active #signInButton:hover,
body.homepage-active #signInButton:focus-visible {
  transform: none;
  border-color: var(--homepage-control-border-hover);
  background: var(--homepage-control-hover);
}

body.homepage-active #signInButton:focus-visible,
body.homepage-active #homepageTopLinks > .homepageProjectsLink:focus-visible,
.homepageNavigation a:focus-visible,
.homepageFooter a:focus-visible,
.homepageButton:focus-visible,
.homepageExtensionCta:focus-visible,
.homepageTextButton:focus-visible {
  outline: 3px solid rgba(245, 173, 18, .28);
  outline-offset: 3px;
}

body.homepage-active #profileLogo {
  display: none !important;
}

body.homepage-active #profileList {
  position: fixed;
  right: auto;
  top: 60px;
}

.homepageHero {
  position: relative;
  box-sizing: border-box;
  min-height: 0;
  padding: clamp(98px, 8vw, 118px) 22px 28px;
  background-color: #fbfbfa;
  background-image: none;
  isolation: isolate;
}

.homepageHero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 48px 0 -112px;
  background: url("/assets/enterprise-signal-background-v5.png") center top / max(1460px, 100vw) auto no-repeat;
  opacity: .4;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 150px), transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 150px), transparent 100%);
  pointer-events: none;
}

.homepageHeroCopy {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.homepageHero h1 {
  max-width: 740px;
  margin: 0 auto;
  color: var(--homepage-ink);
  font-family: var(--system-ui);
  font-size: clamp(42px, 4.35vw, 62px);
  font-weight: 760;
  letter-spacing: -0.058em;
  line-height: 0.99;
  text-wrap: balance;
}

.homepageHeroCopy > p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--homepage-muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.5;
  text-wrap: balance;
}

.homepageHeroCopy > p strong {
  color: #34383e;
  font-weight: 700;
}

.homepageHeroActions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(850px, 100%);
  margin: 24px auto 0;
}

.homepageButton,
body.homepage-active button.homepageButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 164px;
  height: var(--marketing-action-height, 46px);
  padding: 0 26px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: var(--marketing-control-radius, var(--homepage-control-radius));
  cursor: pointer;
  font-family: var(--system-ui);
  font-size: var(--marketing-action-font-size, 15px);
  font-weight: var(--marketing-action-font-weight, 700);
  line-height: 1;
  white-space: nowrap;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.homepageButtonPrimary,
body.homepage-active button.homepageButtonPrimary {
  background: var(--homepage-amber);
  color: #111;
  box-shadow: none;
}

.homepageButtonSecondary {
  border-color: var(--homepage-control-border);
  background: var(--homepage-control-surface);
  color: #1f2124;
}

.homepageButton:hover,
body.homepage-active button.homepageButton:hover {
  transform: none;
}

.homepageButtonSecondary:hover,
.homepageButtonSecondary:focus-visible {
  border-color: var(--homepage-control-border-hover);
  background: var(--homepage-control-hover);
}

.homepageButtonPrimary:hover,
body.homepage-active button.homepageButtonPrimary:hover {
  background: var(--homepage-amber-strong);
}

.homepageProductProof {
  position: relative;
  z-index: 2;
  width: min(850px, calc(100vw - 48px));
  margin: 28px auto 0;
}

.homepageProductFrame {
  max-height: none;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(29, 31, 35, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 28px 70px rgba(25, 28, 33, 0.13);
}

.homepageProductFrame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.homepageBrowserDots {
  display: none;
}

.homepageSection {
  box-sizing: border-box;
  width: min(var(--homepage-max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0;
}

.homepageSectionHeading {
  max-width: 760px;
  margin-bottom: 26px;
}

.homepageSectionHeading h2 {
  margin: 0;
  color: var(--homepage-ink);
  font-family: var(--system-ui);
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 750;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.homepageSectionHeading p {
  margin: 10px 0 0;
  color: var(--homepage-muted);
  font-size: 16px;
  line-height: 1.55;
}

.homepageStartGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.homepageStartSection {
  padding: 32px 0 46px;
}

.homepageUploadDropzone {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  box-sizing: border-box;
  gap: 14px;
  min-width: 0;
  padding: 14px 16px;
  border: 1px dashed #c3c6ca;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(255, 178, 15, 0);
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.homepageUploadDropzone:hover,
.homepageUploadDropzone.is-dragging {
  border-color: var(--homepage-amber-strong);
  background: #fffaf0;
  box-shadow: inset 0 0 30px rgba(242, 166, 0, 0.12);
}

.homepageStartIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: #fff5dc;
}

.homepageStartIcon svg {
  fill: #a86c00;
}

.homepageStartCopy h3,
.homepageVideoCardCopy h3,
.homepageFeaturedVideoCopy h3 {
  margin: 0;
  color: var(--homepage-ink);
  font-family: var(--system-ui);
}

.homepageStartCopy h3 {
  font-size: 18px;
  letter-spacing: -0.025em;
}

.homepageStartCopy p {
  margin: 4px 0 0;
  color: var(--homepage-muted);
  font-size: 14px;
  line-height: 1.4;
}

.homepageStartCopy span {
  display: block;
  margin-top: 5px;
  color: #8a8f96;
  font-size: 12px;
}

.homepageChooseFile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 38px;
  padding: 0 15px;
  border-radius: 12px;
  background: var(--homepage-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 690;
}

.homepagePodcastMount {
  min-width: 0;
}

body.homepage-active #podcastSection {
  position: static;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-height: 170px;
  padding: 22px;
  margin: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 44px rgba(26, 30, 35, 0.075);
}

.homepagePodcastIntro {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

body.homepage-active #searchPodcastContainer {
  position: relative;
  display: flex;
  width: 100%;
  gap: 8px;
}

body.homepage-active #searchPodcasts {
  display: block;
  box-sizing: border-box;
  width: 100% !important;
  height: 44px;
  padding: 0 46px 0 16px;
  border: 1px solid #d8dadd;
  border-radius: 12px;
  background: #fafafa;
  color: var(--homepage-ink);
  font-family: var(--system-ui);
  font-size: 15px;
  font-weight: 520;
  outline: none;
}

body.homepage-active #searchPodcasts:focus {
  border-color: var(--homepage-amber-strong);
  box-shadow: 0 0 0 3px rgba(255, 178, 15, 0.17);
}

body.homepage-active #backSearch {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 8px;
  margin: 2px 0;
  border-radius: 12px;
}

body.homepage-active #podcastsFoundContainer {
  width: 100%;
  max-width: none;
}

body.homepage-active #podcastsFound,
body.homepage-active #episodesFound {
  max-height: calc(100vh - 250px);
  border-radius: 16px;
  background: #fff;
}

body.homepage-active .podcastDirectoryMessage {
  box-sizing: border-box;
  width: min(100%, 720px);
  margin: 36px auto;
  padding: 22px 24px;
  border: 1px solid #e4e5e7;
  border-radius: 14px;
  background: #fafafa;
  color: var(--homepage-muted);
  font: 550 15px/1.5 var(--system-ui);
  text-align: center;
}

body.homepage-active #fadeTop,
body.homepage-active #fadeBottom {
  width: 100%;
  max-width: none;
}

.homepageExtensionCard {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  box-sizing: border-box;
  min-width: 0;
  min-height: 170px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  color: var(--homepage-ink);
  box-shadow: 0 14px 44px rgba(26, 30, 35, 0.075);
}

.homepageExtensionIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.homepageChromeMark {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: conic-gradient(from -30deg, #ea4335 0 33.333%, #fbbc05 0 66.666%, #34a853 0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.homepageChromeMark::before,
.homepageChromeMark::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.homepageChromeMark::before {
  width: 23px;
  height: 23px;
  background: #fff;
}

.homepageChromeMark::after {
  width: 17px;
  height: 17px;
  background: #4285f4;
  box-shadow: inset 0 0 0 1px rgba(17, 74, 161, 0.22);
}

.homepageExtensionCopy > span {
  color: var(--homepage-amber);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.homepageExtensionCopy h3 {
  margin: 7px 0 0;
  color: var(--homepage-ink);
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.homepageExtensionCopy p {
  margin: 7px 0 0;
  color: var(--homepage-muted);
  font-size: 13px;
  line-height: 1.45;
}

.homepageExtensionCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 42px;
  box-sizing: border-box;
  padding: 0 14px;
  border-radius: var(--marketing-control-radius, var(--homepage-control-radius));
  border: 1px solid var(--homepage-control-border);
  background: var(--homepage-control-surface);
  color: #191a1d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.homepageExtensionCta:hover,
.homepageExtensionCta:focus-visible {
  border-color: var(--homepage-control-border-hover);
  background: var(--homepage-control-hover);
  transform: none;
}

.homepageCapabilityStrip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  box-sizing: border-box;
  width: min(var(--homepage-max-width), calc(100% - 48px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  background: #e2e2df;
}

.homepageCapabilityStrip > div {
  min-width: 0;
  padding: 18px 20px;
  background: var(--homepage-soft);
}

.homepageCapabilityStrip strong,
.homepageCapabilityStrip span {
  display: block;
}

.homepageCapabilityStrip strong {
  color: #25282c;
  font-size: 15px;
}

.homepageCapabilityStrip span {
  margin-top: 7px;
  color: #747980;
  font-size: 13px;
  line-height: 1.45;
}

.homepageFeaturedVideo {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.65fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  margin-bottom: 22px;
}

.homepageFeaturedVideoMedia {
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #ededeb;
  box-shadow: 0 18px 52px rgba(25, 29, 34, 0.1);
}

body.homepage-active #instructionVideo {
  display: block;
  width: 100%;
  max-width: none;
  height: auto !important;
  min-height: 0;
  padding: 0 !important;
  border-radius: 11px;
  box-shadow: none;
  transform: none !important;
  transition: none;
}

body.homepage-active #instructionVideo:hover {
  box-shadow: none;
  transform: none !important;
}

.homepageHeroVideoMount,
.homepageHeroVideoMount #instructionVideoContainer {
  width: 100%;
  line-height: 0;
}

.hoverPreviewMedia {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #f3f3f1;
}

.homepageHeroVideoMedia {
  aspect-ratio: 16 / 9;
  border-radius: 11px;
}

.homepageVideoMedia {
  aspect-ratio: 16 / 10;
  flex: 0 0 auto;
}

.hoverPreviewMedia > :is(video, .hoverPreviewPoster) {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.hoverPreviewMedia > video {
  z-index: 1;
  opacity: 0;
  transition: opacity 120ms ease;
}

.hoverPreviewPoster {
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  transition: opacity 120ms ease;
}

.hoverPreviewPlay,
body.homepage-active button.hoverPreviewPlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #17181a;
  box-shadow: none;
  cursor: pointer;
  transform: none;
}

.hoverPreviewPlay > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(29, 31, 35, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 24px rgba(28, 31, 35, .16);
}

.hoverPreviewPlay svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
  fill: currentColor;
}

.hoverPreviewMedia.is-preview-playing > video {
  opacity: 1;
}

.hoverPreviewMedia.is-preview-playing > .hoverPreviewPoster {
  opacity: 0;
}

body.homepage-active .homepageHeroVideoMedia > #instructionVideo,
body.homepage-active .homepageVideoMedia > .videoDemoPlayer {
  width: 100%;
  height: 100% !important;
}

.homepageFeaturedVideoCopy > span,
.homepageVideoCardCopy > span {
  color: #ad7000;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.homepageFeaturedVideoCopy h3 {
  margin-top: 16px;
  font-size: clamp(30px, 2.9vw, 42px);
  letter-spacing: -0.048em;
  line-height: 1.03;
}

.homepageFeaturedVideoCopy p {
  margin: 14px 0 0;
  color: var(--homepage-muted);
  font-size: 16px;
  line-height: 1.58;
}

.homepageTextButton,
body.homepage-active button.homepageTextButton {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 44px;
  padding: 0 17px;
  margin: 20px 0 0;
  border-radius: 12px;
  background: var(--homepage-amber);
  color: #151515;
  font-family: var(--system-ui);
  font-size: 14px;
  font-weight: 720;
}

.homepageTextButton:hover,
body.homepage-active button.homepageTextButton:hover {
  transform: none;
  background: var(--homepage-amber-strong);
}

body.homepage-active #videoDemos {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: clamp(338px, 30vw, 390px);
  gap: 14px;
  overflow-x: auto;
  padding: 3px 2px 2px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

body.homepage-active #videoDemos::-webkit-scrollbar {
  display: none;
}

.homepageWalkthroughRail {
  position: relative;
  background: transparent;
}

.homepageWalkthroughRail::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(48px, 7vw, 96px);
  background: linear-gradient(90deg, rgba(251, 251, 250, 0), #fbfbfa 88%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.homepageWalkthroughRail.has-more-right::after {
  opacity: 1;
}

.homepageWalkthroughNext,
body.homepage-active button.homepageWalkthroughNext {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: auto;
  min-width: 0;
  height: 44px;
  padding: 0 15px;
  margin: 0;
  border: 1px solid rgba(29, 31, 35, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 24px rgba(28, 31, 35, .14);
  color: #25282d;
  font-family: var(--system-ui);
  font-size: 13px;
  font-weight: 720;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.homepageWalkthroughNext > span:last-child {
  font-size: 19px;
  line-height: 1;
}

.homepageWalkthroughNext:hover,
.homepageWalkthroughNext:focus-visible,
body.homepage-active button.homepageWalkthroughNext:hover,
body.homepage-active button.homepageWalkthroughNext:focus-visible {
  background: #fff;
  border-color: rgba(173, 112, 0, .42);
  color: #805600;
  transform: translateY(-50%);
}

.homepageWalkthroughNext:focus-visible,
body.homepage-active button.homepageWalkthroughNext:focus-visible {
  outline: 3px solid rgba(214, 153, 31, .28);
  outline-offset: 3px;
}

.homepageWalkthroughNext[hidden] {
  display: none !important;
}

body.homepage-active .videoDemoContainer,
body.homepage-active .videoDemoContainer:nth-child(even) {
  display: flex;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(29, 31, 35, .09);
  box-shadow: none;
  scroll-snap-align: start;
}

body.homepage-active .videoDemoContainer[hidden] {
  display: none !important;
}

body.homepage-active .videoDemoPlayer {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  background: #ececea;
  object-fit: cover;
}

@media (hover: none), (pointer: coarse) {
  .hoverPreviewMedia > video {
    position: relative;
    opacity: 1;
  }

  .hoverPreviewPoster {
    display: none;
  }

  .hoverPreviewMedia:not(.is-preview-playing) > .hoverPreviewPlay,
  body.homepage-active .hoverPreviewMedia:not(.is-preview-playing) > button.hoverPreviewPlay {
    display: inline-flex;
  }
}

.homepageVideoCardCopy {
  min-height: 132px;
  box-sizing: border-box;
  padding: 20px;
}

body.homepage-active .homepageVideoCardCopy {
  padding: 18px 20px;
  border-radius: 0;
  background: #fff;
}

.homepageVideoCardCopy h3 {
  margin-top: 9px;
  font-size: 19px;
  letter-spacing: -0.028em;
  line-height: 1.2;
}

.homepageVideoCardCopy p {
  margin: 9px 0 0;
  color: var(--homepage-muted);
  font-size: 13px;
  line-height: 1.45;
}

.homepageFooter {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
  box-sizing: border-box;
  width: min(1360px, calc(100% - 64px));
  min-height: 112px;
  margin: 0 auto 22px;
  padding: 0;
  border-top: 1px solid var(--marketing-line);
  color: var(--homepage-ink);
  background: transparent;
}

.homepageFooterWordmark {
  color: var(--homepage-ink);
  font-size: 26px;
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 1;
}

.homepageFooter > p {
  margin: 0;
  color: var(--homepage-muted);
  font-size: 14px;
}

.homepageFooterLinks {
  display: flex;
  gap: 26px;
}

.homepageFooterLinks a {
  color: #3f4348;
  font-size: 14px;
}

.homepageFooterLinks a:hover,
.homepageFooterLinks a:focus-visible {
  color: #805600;
}

body.homepagePodcastActive .homepageHero,
body.homepagePodcastActive .homepageCapabilityStrip,
body.homepagePodcastActive #homepageVideos,
body.homepagePodcastActive .homepageFooter,
body.homepagePodcastActive .homepageExtensionCard {
  display: none;
}

body.homepagePodcastActive {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

body.homepagePodcastActive #homepageExperience {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

body.homepagePodcastActive #homepageStart {
  box-sizing: border-box;
  height: 100%;
  min-height: 0;
  padding-top: 78px;
  padding-bottom: 20px;
  overflow: hidden;
}

body.homepagePodcastActive .homepageStartGrid {
  display: block;
  height: 100%;
  min-height: 0;
}

body.homepagePodcastActive .homepagePodcastMount {
  height: 100%;
  min-height: 0;
}

body.homepagePodcastActive #podcastSection {
  box-sizing: border-box;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding-top: 12px;
  box-shadow: none;
}

body.homepagePodcastActive .homepagePodcastIntro {
  display: none;
}

body.homepagePodcastActive .homepageNavigation {
  display: none;
}

body.homepagePodcastActive #homepageTopLinks #searchPodcastContainer {
  width: 100%;
}

body.homepagePodcastActive #homepageTopLinks #searchPodcasts {
  height: 40px;
  background: var(--homepage-control-surface);
}

body.homepagePodcastActive #homepageTopLinks #backSearch {
  flex-basis: 40px;
  width: 40px;
  height: 40px;
  margin: 0;
}

body.homepagePodcastActive #podcastsFoundContainer {
  flex: 1 1 auto;
  min-height: 0;
}

body.homepagePodcastActive #podcastsFound,
body.homepagePodcastActive #episodesFound {
  box-sizing: border-box;
  height: 100%;
  max-height: none;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1120px) {
  body.homepage-active #homepageTopLinks {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .homepageNavigation {
    gap: 24px;
  }

  .homepagePodcastToolbar {
    left: 210px;
  }

  .homepagePodcastToolbarLabel {
    display: none;
  }

  body.homepage-active #signInButton {
    right: 20px;
  }

  .homepageProjectsLink {
    right: 110px;
  }

  .homepageCapabilityStrip {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 840px) {
  body.homepage-active #homepageTopLinks {
    grid-template-columns: minmax(0, 1fr) auto;
    height: 64px;
    padding: 0 18px;
  }

  .homepageNavigation {
    display: none;
  }

  .homepagePodcastToolbar {
    right: 206px;
    left: 190px;
  }

  body.homepage-active #signInButton {
    top: 12px;
    right: 18px;
    height: 40px;
    padding: 0 9px;
  }

  .homepageProjectsLink {
    right: 108px;
  }

  .homepageHero {
    min-height: 0;
    padding: 96px 18px 24px;
  }

  .homepageHero::before {
    inset: 64px 0 -96px;
    background-size: 1120px auto;
  }

  .homepageHero h1 br {
    display: none;
  }

  .homepageProductProof {
    width: min(100%, 760px);
    margin-top: 26px;
  }

  .homepageSection,
  .homepageCapabilityStrip,
  .homepageFooter {
    width: min(100% - 32px, 720px);
  }

  .homepageSection {
    padding: 56px 0;
  }

  .homepageStartSection {
    padding-top: 32px;
  }

  .homepageStartGrid,
  .homepageFeaturedVideo {
    grid-template-columns: 1fr;
  }

  .homepageFeaturedVideo {
    gap: 28px;
  }

  .homepageHeroActions {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .homepageButton,
  body.homepage-active button.homepageButton {
    width: 100%;
  }

  .homepageFooter {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 28px 0;
  }

  .homepageFooterLinks {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}

@media (max-width: 560px) {
  .homepageWordmark {
    font-size: 25px !important;
  }

  body.homepage-active #signInButton {
    right: 14px;
  }

  body.homepage-active #homepageTopLinks > .homepageProjectsLink {
    right: 102px;
    padding: 0 12px;
  }

  body.homepagePodcastActive .homepageProjectsLink {
    display: none !important;
  }

  body.homepagePodcastActive .homepagePodcastToolbar {
    right: 96px;
    left: 150px;
  }

  .homepageHero {
    padding: 88px 16px 22px;
  }

  .homepageHero::before {
    inset: 92px 0 -84px;
    background-size: 900px auto;
  }

  .homepageHero h1 {
    font-size: clamp(36px, 11vw, 46px);
    line-height: 0.98;
  }

  .homepageHeroCopy > p {
    margin-top: 15px;
    font-size: 15px;
  }

  .homepageHeroActions {
    gap: 10px;
    margin-top: 20px;
  }

  .homepageButton,
  body.homepage-active button.homepageButton {
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 46px;
  }

  .homepageProductFrame {
    padding: 6px;
    border-radius: 14px;
  }

  .homepageProductFrame img {
    min-width: 470px;
    transform: translateX(-12%);
  }

  .homepageSection,
  .homepageCapabilityStrip,
  .homepageFooter {
    width: calc(100% - 28px);
  }

  .homepageSection {
    padding: 48px 0;
  }

  .homepageStartSection {
    padding-top: 28px;
  }

  .homepageSectionHeading {
    margin-bottom: 24px;
  }

  .homepageSectionHeading h2 {
    font-size: 36px;
  }

  .homepageSectionHeading p {
    font-size: 16px;
  }

  .homepageWalkthroughNext,
  body.homepage-active button.homepageWalkthroughNext {
    right: 6px;
    width: 44px;
    padding: 0;
  }

  .homepageWalkthroughNext > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .homepageUploadDropzone {
    grid-template-columns: auto 1fr;
    gap: 10px 12px;
    padding: 13px;
  }

  .homepageChooseFile {
    grid-column: 1 / -1;
    width: 100%;
    box-sizing: border-box;
  }

  body.homepage-active #podcastSection {
    padding: 18px;
  }

  .homepagePodcastIntro {
    gap: 14px;
  }

  .homepageExtensionCard {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 18px;
  }

  .homepageExtensionCta {
    grid-column: 1 / -1;
    width: 100%;
    box-sizing: border-box;
  }

  .homepageCapabilityStrip {
    grid-template-columns: 1fr;
  }

  body.homepage-active #videoDemos {
    grid-auto-columns: min(82vw, 300px);
  }

  .homepageFeaturedVideoCopy h3 {
    font-size: 34px;
  }

  .homepageFooter {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0;
  }
}

@media (max-width: 430px) {
  .homepageWordmark {
    gap: 0;
    font-size: 0 !important;
  }

  body.homepagePodcastActive .homepagePodcastToolbar {
    left: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homepageButton,
  .homepageUploadDropzone,
  .homepageTextButton {
    transition: none !important;
  }
}
